The CDK Construct Library for Amazon EventBridge Pipes Sources
Project description
Amazon EventBridge Pipes Sources 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 Sources let you create a source for a EventBridge Pipe.
For more details see the service documentation:
Pipe sources
Pipe sources are the starting point of a EventBridge Pipe. They are the source of the events that are sent to the pipe.
Amazon SQS
A SQS message queue can be used as a source for a pipe. The queue will be polled for new messages and the messages will be sent to the pipe.
# source_queue: sqs.Queue
# target_queue: sqs.Queue
pipe_source = sources.SqsSource(source_queue)
pipe = pipes.Pipe(self, "Pipe",
source=pipe_source,
target=SomeTarget(target_queue)
)
The polling configuration can be customized:
# source_queue: sqs.Queue
# target_queue: sqs.Queue
pipe_source = sources.SqsSource(source_queue,
batch_size=10,
maximum_batching_window=cdk.Duration.seconds(10)
)
pipe = pipes.Pipe(self, "Pipe",
source=pipe_source,
target=SomeTarget(target_queue)
)
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
Hashes for aws-cdk.aws-pipes-sources-alpha-2.151.0a0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a1f6abf910be90c0cdb286ec560712671aab584fd27c446ca752c5989cfe2b5 |
|
MD5 | 38abe01cb93cf41ebdbd4907f646ae85 |
|
BLAKE2b-256 | 9d9f77b1903023eb6369576b1bc7a21460125fab45983dc264872851354f4ea8 |
Hashes for aws_cdk.aws_pipes_sources_alpha-2.151.0a0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 988c8177593265b4f6a1f7615e27101c538be8199c94a7de469e29cf38ee3623 |
|
MD5 | d9380759220a18475d96ef97ec731820 |
|
BLAKE2b-256 | 2787a1b24a49742fbd2ed7dd72fd24d4590dfbfd93684a5c32ab89e31f773989 |