@aws-cdk/aws-pipes-enrichments-alpha
v2.166.0-alpha.0
Published
The CDK Construct Library for Amazon EventBridge Pipes Enrichments
Downloads
1,044
Readme
Amazon EventBridge Pipes Enrichments Construct Library
The APIs of higher level constructs in this module are experimental and under active development. They are subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model and breaking changes will be announced in the release notes. 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.
EventBridge Pipes Enrichments let you create enrichments for an EventBridge Pipe.
For more details see the service documentation:
Pipe sources
Pipe enrichments are invoked prior to sending the events to a target of a EventBridge Pipe.
Lambda function
A Lambda function can be used to enrich events of a pipe.
declare const sourceQueue: sqs.Queue;
declare const targetQueue: sqs.Queue;
declare const enrichmentFunction: lambda.Function;
const enrichment = new enrichments.LambdaEnrichment(enrichmentFunction);
const pipe = new pipes.Pipe(this, 'Pipe', {
source: new SomeSource(sourceQueue),
enrichment,
target: new SomeTarget(targetQueue),
});
Step Functions state machine
Step Functions state machine can be used to enrich events of a pipe.
Note: EventBridge Pipes only supports Express workflows invoked synchronously.
Visit Amazon EventBridge Pipes event enrichment for more details.
declare const sourceQueue: sqs.Queue;
declare const targetQueue: sqs.Queue;
declare const enrichmentStateMachine: stepfunctions.StateMachine;
const enrichment = new enrichments.StepFunctionsEnrichment(enrichmentStateMachine);
const pipe = new pipes.Pipe(this, 'Pipe', {
source: new SomeSource(sourceQueue),
enrichment,
target: new SomeTarget(targetQueue),
});
API destination
API destination can be used to enrich events of a pipe.
declare const sourceQueue: sqs.Queue;
declare const targetQueue: sqs.Queue;
declare const apiDestination: events.ApiDestination;
const enrichment = new enrichments.ApiDestinationEnrichment(apiDestination);
const pipe = new pipes.Pipe(this, 'Pipe', {
source: new SomeSource(sourceQueue),
enrichment,
target: new SomeTarget(targetQueue),
});
API Gateway (REST API)
API Gateway can be used to enrich events of a pipe. Pipes only supports API Gateway REST APIs. HTTP APIs are not supported.
declare const sourceQueue: sqs.Queue;
declare const targetQueue: sqs.Queue;
declare const restApi: apigateway.RestApi;
const enrichment = new enrichments.ApiGatewayEnrichment(restApi);
const pipe = new pipes.Pipe(this, 'Pipe', {
source: new SomeSource(sourceQueue),
enrichment,
target: new SomeTarget(targetQueue),
});