This release is a pre-release and may not be stable for production use.
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.
# source_queue: sqs.Queue
# target_queue: sqs.Queue
# enrichment_function: lambda.Function
enrichment = enrichments.LambdaEnrichment(enrichment_function)
pipe = pipes.Pipe(self, "Pipe",
source=SomeSource(source_queue),
enrichment=enrichment,
target=SomeTarget(target_queue)
)
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.
# source_queue: sqs.Queue
# target_queue: sqs.Queue
# enrichment_state_machine: stepfunctions.StateMachine
enrichment = enrichments.StepFunctionsEnrichment(enrichment_state_machine)
pipe = pipes.Pipe(self, "Pipe",
source=SomeSource(source_queue),
enrichment=enrichment,
target=SomeTarget(target_queue)
)
API destination
API destination can be used to enrich events of a pipe.
# source_queue: sqs.Queue
# target_queue: sqs.Queue
# api_destination: events.ApiDestination
enrichment = enrichments.ApiDestinationEnrichment(api_destination)
pipe = pipes.Pipe(self, "Pipe",
source=SomeSource(source_queue),
enrichment=enrichment,
target=SomeTarget(target_queue)
)
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.
# source_queue: sqs.Queue
# target_queue: sqs.Queue
# rest_api: apigateway.RestApi
enrichment = enrichments.ApiGatewayEnrichment(rest_api)
pipe = pipes.Pipe(self, "Pipe",
source=SomeSource(source_queue),
enrichment=enrichment,
target=SomeTarget(target_queue)
)
Release files for aws-cdk.aws-pipes-enrichments-alpha 2.267.0a0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| aws_cdk_aws_pipes_enrichments_alpha-2.267.0a0.tar.gz | 56.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| aws_cdk_aws_pipes_enrichments_alpha-2.267.0a0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 111.5 kB
Release files / aws_cdk_aws_pipes_enrichments_alpha-2.267.0a0.tar.gz
| Download URL | aws_cdk_aws_pipes_enrichments_alpha-2.267.0a0.tar.gz |
|---|---|
| Size | 56.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
da3f48debd04d523b3ee255e0138b9b03ae8aebf1180bfb09c30e53549c1973e
|
|
BLAKE2b-256 checksum How to use checksums |
d58e43ce50885ad1d032752d561b71385e26167f3a90b024d8a405a2f5433e3a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.11.15
|
Release files / aws_cdk_aws_pipes_enrichments_alpha-2.267.0a0-py3-none-any.whl
| Download URL | aws_cdk_aws_pipes_enrichments_alpha-2.267.0a0-py3-none-any.whl |
|---|---|
| Size | 55.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
136d20953a3b11d4b767a6f32ebf99f6550ad3740074b585ae08fa3db2993ded
|
|
BLAKE2b-256 checksum How to use checksums |
534a208cb223faae8e92ab33d2942d739cc66f1d2bb2e19be8639bbc5fdb1cc5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.11.15
|