CDK constructs for defining an interaction between an AWS Lambda function and an Amazon S3 bucket.
Project description
aws-apigateway-sqs module
---This is a developer preview (public beta) module.
All classes are under active development and subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model. This means that while you may use them, you may need to update your source code when upgrading to a newer version of this package.
| API Reference: | http://docs.awssolutionsbuilder.com/aws-solutions-konstruk/latest/api/aws-apigateway-sqs/ |
|---|
| Language | Package |
|---|---|
aws_solutions_konstruk.aws_apigateway_sqs |
|
@aws-solutions-konstruk/aws-apigateway-sqs |
Overview
This AWS Solutions Konstruk implements an Amazon API Gateway connected to an Amazon SQS queue pattern.
Here is a minimal deployable pattern definition:
const { ApiGatewayToSqs } = require('@aws-solutions-konstruk/aws-apigateway-sqs');
new ApiGatewayToSqs(stack, 'ApiGatewayToSqsPattern', {
apiGatewayProps: {},
queueProps: {},
encryptionKeyProps: {},
deployDeadLetterQueue?: true,
maxReceiveCount?: 3
});
Initializer
new ApiGatewayToSqs(scope: Construct, id: string, props: ApiGatewayToSqsProps);
Parameters
- scope
Construct - id
string - props
ApiGatewayToSqsProps
Pattern Construct Props
| Name | Type | Description |
|---|---|---|
| apiGatewayProps? | api.RestApiProps |
Optional user-provided props to override the default props for the API Gateway. |
| queueProps? | sqs.QueueProps |
Optional user-provided props to override the default props for the queue. |
| encryptionKeyProps? | kms.KeyProps |
Optional user-provided props to override the default props for the encryption key. |
| deployDeadLetterQueue | boolean |
Whether to deploy a secondary queue to be used as a dead letter queue. |
| maxReceiveCount | number |
The number of times a message can be unsuccesfully dequeued before being moved to the dead-letter queue. |
Pattern Properties
| Name | Type | Description |
|---|---|---|
| api() | api.RestApi |
Returns an instance of the API Gateway REST API created by the pattern. |
| sqsQueue() | sqs.Queue |
Returns an instance of the SQS queue created by the pattern. |
Sample API Usage
| Method | Request Path | Request Body | Queue Action | Description |
|---|---|---|---|---|
| GET | / |
sqs::ReceiveMessage |
Retrieves a message from the queue. | |
| POST | / |
{ "data": "Hello World!" } |
sqs::SendMessage |
Delivers a message to the queue. |
| DELETE | /message?receiptHandle=[value] |
sqs::DeleteMessage |
Deletes a specified message from the queue |
Architecture
© Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aws-solutions-konstruk.aws-apigateway-sqs-0.8.1.tar.gz.
File metadata
- Download URL: aws-solutions-konstruk.aws-apigateway-sqs-0.8.1.tar.gz
- Upload date:
- Size: 127.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
463b9e66e51dd6cf7f9620f2cb67b9c244eba40dd10355a5d9687e75f80b3d2c
|
|
| MD5 |
5d69e7621f96035cf2ccc3692110347a
|
|
| BLAKE2b-256 |
8296cfaaa291802ba6617b5aa3a1ca54d0e57e631d920300d27d07cf2c8a34f9
|
File details
Details for the file aws_solutions_konstruk.aws_apigateway_sqs-0.8.1-py3-none-any.whl.
File metadata
- Download URL: aws_solutions_konstruk.aws_apigateway_sqs-0.8.1-py3-none-any.whl
- Upload date:
- Size: 126.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bfdd126aeb6fdf7f8ce008712cf3b267abb0db52b182f677875053ff627dbc85
|
|
| MD5 |
69f95cf1d9ed3129b9462d38574b353d
|
|
| BLAKE2b-256 |
ad78c832780074cf193a2e12a43d7b7fd72a93e1adb866ed33ff5f07ca764c01
|