This pattern helps you deploy a CDK stack with SNS, SQS, Lambda and DynamoDB.
using Amazon.CDK;
using Amazon.CDK.AWS.SNS;
using Amazon.CDK.AWS.DynamoDB;
using System;
using System.Collections.Generic;
using System.Text;
namespace Datapipeline
{
internal class CrossStackProp : StackProps
{
public Topic CrossStackTopic { get; set; }
public Table CrossStackTable { get; set; }
}
}
git clone https://github.com/aws-samples/serverless-patterns
cd serverless-patterns/cdk-sns-sqs-lambda-dynamodb-dotnet