Skip to content

Instantly share code, notes, and snippets.

View omototo's full-sized avatar

Alexander Pinsker omototo

View GitHub Profile

Terraforming API Gateway to SQS queue

This is an example of a bare-minimum Terraform script to setup an API Gateway endpoint that takes records and puts them into an SQS queue.

SQS

Start by creating the SQS queue.

resource "aws_sqs_queue" "queue" {
@omototo
omototo / Program.cs
Last active March 22, 2023 12:21 — forked from normj/Program.cs
Fields extraction from EU driver license using Amazon Textract
using System;
using System.IO;
using System.Threading.Tasks;
using System.Threading;
using Amazon;
// From the AWSSDK.Textract NuGet package
using Amazon.Textract;
using Amazon.Textract.Model;
@omototo
omototo / Program.cs
Last active March 22, 2023 11:59
Fields extraction from EU driver license using Amazon Textract
using System;
using System.IO;
using System.Threading.Tasks;
using System.Threading;
using Amazon;
// From the AWSSDK.Textract NuGet package
using Amazon.Textract;
using Amazon.Textract.Model;