Skip to main content

CDK constructs for defining an interaction between an AWS Lambda function and an Amazon S3 bucket.

Project description

aws-apigatewayv2websocket-sqs module

---

Stability: Stable


Reference Documentation: https://docs.aws.amazon.com/solutions/latest/constructs/
Language Package
Python Logo Python aws_solutions_constructs.aws_apigatewayv2websocket_sqs
Typescript Logo Typescript @aws-solutions-constructs/aws-apigatewayv2websocket-sqs
Java Logo Java software.amazon.awsconstructs.services.apigatewayv2websocketsqs

Overview

This AWS Solutions Construct implements an Amazon API Gateway WebSocket connected to an Amazon SQS queue pattern.

Here is a minimal deployable pattern definition:

Typescript

import { Construct } from "constructs";
import { Stack, StackProps } from "aws-cdk-lib";
import {
	ApiGatewayV2WebSocketToSqs,
	ApiGatewayV2WebSocketToSqsProps,
} from "@aws-solutions-constructs/aws-apigatewayv2websocket-sqs";
import { WebSocketLambdaAuthorizer } from 'aws-cdk-lib/aws-apigatewayv2-authorizers';

const authorizer = new WebSocketLambdaAuthorizer('Authorizer', authHandler);

new ApiGateApiGatewayV2WebSocketToSqswayToSqs(this, "ApiGatewayV2WebSocketToSqsPattern", {
	webSocketApiProps: {
		connectRouteOptions: {
			integration: new WebSocketLambdaIntegration("ConnectIntegration", connectLambda),
			authorizer: authorizer,
		},
		disconnectRouteOptions: {
			integration: new WebSocketLambdaIntegration("DisconnectIntegration", disconnectLambda),
		},
	},
        createDefaultRoute: true
});

Python

from aws_solutions_constructs.aws_apigateway_sqs import ApiGatewayV2WebSocketToSqs
from aws_cdk.aws_apigatewayv2_authorizers import WebSocketLambdaAuthorizer
from aws_cdk import Stack
from constructs import Construct

authorizer = WebSocketLambdaAuthorizer("Authorizer", auth_handler)

ApiGatewayV2WebSocketToSqs(self, 'ApiGatewayV2WebSocketToSqsPattern',
    connect_route_options=apigwv2.WebSocketRouteOptions(
        integration=WebSocketLambdaIntegration("ConnectIntegration", connect_lambda),
        authorizer=authorizer
    ),
    disconnect_route_options=apigwv2.WebSocketRouteOptions(
        integration=WebSocketLambdaIntegration("DisConnectIntegration", disconnect_lambda),
    ),
    create_default_route=True
)

Java

import software.constructs.Construct;

import software.amazon.awscdk.Stack;
import software.amazon.awscdk.StackProps;
import software.amazon.awscdk.aws_apigatewayv2_authorizers.*;
import software.amazon.awscdk.aws_apigatewayv2_integrations.*;
import software.amazon.awsconstructs.services.apigatewaysqs.*;

new ApiGatewayV2WebSocketToSqs(this, "ApiGatewayV2WebSocketToSqsPattern", new ApiGatewayV2WebSocketToSqsProps.Builder()
        .webSocketApiProps(new WebSocketApiProps.Builder()
                .connectRouteOptions(new WebSocketRouteOptions.builder()
                        .integration(new WebSocketLambdaIntegration("ConnectIntegration", connect_lambda)))
                .disconnectRouteOptions(new WebSocketRouteOptions.builder()
                        .integration(new WebSocketLambdaIntegration("DisConnectIntegration", disconnect_lambda)))
                .createDefaultRoute(true)
        .build());

Pattern Construct Props

Name Type Description
existingWebSocketApi? apigwv2.WebSocketApi Optional API Gateway WebSocket instance. Providing both existingWebSocketApi and webSocketApiProps will cause an error.
webSocketApiProps? apigwv2.WebSocketApiProps Optional user-provided props to override the default props for the API Gateway. Providing both existingWebSocketApi and webSocketApiProps will cause an error.
queueProps? sqs.QueueProps Optional user-provided props to override the default props for the queue. Providing both existingQueueObj and queueProps will cause an error.
existingQueueObj? sqs.Queue Optional existing instance of SQS Queue. Providing both existingQueueObj and queueProps will cause an error.
deployDeadLetterQueue? boolean Whether to deploy a secondary queue to be used as a dead letter queue. Defaults to true.
deadLetterQueueProps? sqs.QueueProps Optional properties to use for creating dead letter queue. Note that if you are creating a FIFO Queue, the dead letter queue should also be FIFO.
maxReceiveCount number The number of times a message can be unsuccessfully dequeued before being moved to the dead-letter queue.
createDefaultRoute? boolean Whether to create a default route. At least one of createDefaultRoute or customRouteName must be provided. If set to true, then it will use the value supplied with defaultRouteRequestTemplate.
defaultRouteRequestTemplate? { [contentType: string]: string } Optional user provided API Gateway Request Template for the default route and/ or customRoute (if customRouteName is provided). This property will only be used if createDefaultRoute is true. If createDefaultRoute is true and this property is not provided, the construct will create the default route with the following VTL mapping "Action=SendMessage&MessageGroupId=$input.path('$.MessageGroupId')&MessageDeduplicationId=$context.requestId&MessageAttribute.1.Name=connectionId&MessageAttribute.1.Value.StringValue=$context.connectionId&MessageAttribute.1.Value.DataType=String&MessageAttribute.2.Name=requestId&MessageAttribute.2.Value.StringValue=$context.requestId&MessageAttribute.2.Value.DataType=String&MessageBody=$util.urlEncode($input.json($util.escapeJavaScript('$').replaceAll(\"\\\\'\",\"'\")))".
defaultIamAuthorization? boolean Add IAM authorization to the $connect path by default. Only set this to false if: 1) If plan to provide an authorizer with the $connect route; or 2) The API should be open (no authorization) (AWS recommends against deploying unprotected APIs). If an authorizer is specified in connectRouteOptions, this parameter is ignored and no default IAM authorizer will be created.
customRouteName? string The name of the route that will be sent through WebSocketApiProps.routeSelectionExpression when invoking the WebSocket endpoint. At least one of createDefaultRoute or customRouteName must be provided.

Pattern Properties

Name Type Description
webSocketApi apigwv2.WebSocketApi Returns an instance of the API Gateway WebSocket API created by the pattern.
apiGatewayRole iam.Role Returns an instance of the iam.Role created by the construct for API Gateway.
webSocketStage apigwv2.WebSocketStage Returns an instance of the WebSocketStage created by the construct.
apiGatewayLogGroup logs.LogGroup Returns an instance of the LogGroup created by the construct for API Gateway access logging to CloudWatch.
sqsQueue sqs.Queue Returns an instance of the SQS queue created by the pattern.
deadLetterQueue? sqs.DeadLetterQueue Returns an instance of the DeadLetterQueue created by the pattern.

Default settings

Out of the box implementation of the Construct without any override will set the following defaults:

Amazon API Gateway

  • Deploy a WebSocket endpoint
  • Enable CloudWatch logging for API Gateway
  • Configure least privilege access IAM role for API Gateway
  • Enable X-Ray Tracing

Amazon SQS Queue

  • Deploy SQS dead-letter queue for the source SQS Queue
  • Enable server-side encryption for source SQS Queue using AWS Managed KMS Key
  • Enforce encryption of data in transit

Architecture

Architecture Diagram


© Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.

Project details


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

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file aws_solutions_constructs_aws_apigatewayv2websocket_sqs-2.85.2.tar.gz.

File metadata

File hashes

Hashes for aws_solutions_constructs_aws_apigatewayv2websocket_sqs-2.85.2.tar.gz
Algorithm Hash digest
SHA256 a53cf73621bd5ddeebe7cc1f1d600fe4ef8855f1a9e4a2cd333034e8f9cca917
MD5 149e2d2b36ad3e637302fdc707d3a4fc
BLAKE2b-256 78e2190a0baed83e079fc31e11a22b3d43d65e8f2cace5141783e5c17a0c5e86

See more details on using hashes here.

File details

Details for the file aws_solutions_constructs_aws_apigatewayv2websocket_sqs-2.85.2-py3-none-any.whl.

File metadata

File hashes

Hashes for aws_solutions_constructs_aws_apigatewayv2websocket_sqs-2.85.2-py3-none-any.whl
Algorithm Hash digest
SHA256 5f597d7a22207c3c92e3e66af8fa1911d5746c00c6bee49e32b370afca934629
MD5 ca25e717855e0c4e2c901df95b324140
BLAKE2b-256 ab1531b4221689d044ee27dba615f07809fe5824cdb9a2162cfa6353984f44e0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page