Skip to main content

The CDK Construct Library for Amazon EventBridge Pipes Sources

Project description

Amazon EventBridge Pipes Sources Construct Library

---

cdk-constructs: Experimental

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:

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=SqsTarget(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=SqsTarget(target_queue)
)

Amazon Kinesis

A Kinesis stream can be used as a source for a pipe. The stream will be polled for new messages and the messages will be sent to the pipe.

# source_stream: kinesis.Stream
# target_queue: sqs.Queue


pipe_source = sources.KinesisSource(source_stream,
    starting_position=sources.KinesisStartingPosition.LATEST
)

pipe = pipes.Pipe(self, "Pipe",
    source=pipe_source,
    target=SqsTarget(target_queue)
)

Amazon DynamoDB

A DynamoDB stream can be used as a source for a pipe. The stream will be polled for new messages and the messages will be sent to the pipe.

# target_queue: sqs.Queue
table = ddb.TableV2(self, "MyTable",
    partition_key=ddb.Attribute(
        name="id",
        type=ddb.AttributeType.STRING
    ),
    dynamo_stream=ddb.StreamViewType.NEW_IMAGE
)

pipe_source = sources.DynamoDBSource(table,
    starting_position=sources.DynamoDBStartingPosition.LATEST
)

pipe = pipes.Pipe(self, "Pipe",
    source=pipe_source,
    target=SqsTarget(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

File details

Details for the file aws_cdk_aws_pipes_sources_alpha-2.166.0a0.tar.gz.

File metadata

File hashes

Hashes for aws_cdk_aws_pipes_sources_alpha-2.166.0a0.tar.gz
Algorithm Hash digest
SHA256 9a0bcf2c61c92e55f29d46e029ebc766461f0fd37ed9280b572ee3778ed669f3
MD5 63faf5354022a128656da1b7bd58dabd
BLAKE2b-256 a29c41f607eff7029e117ba5b695c612e2fd2e8d4539a79bb449972de225463c

See more details on using hashes here.

File details

Details for the file aws_cdk.aws_pipes_sources_alpha-2.166.0a0-py3-none-any.whl.

File metadata

File hashes

Hashes for aws_cdk.aws_pipes_sources_alpha-2.166.0a0-py3-none-any.whl
Algorithm Hash digest
SHA256 ee4de6119caf9a0913eeaffa004d5e6dd6cd4a405c4fb5352f47ee390203aebc
MD5 1f37b3e8d429f8687ca2be5f8c25832b
BLAKE2b-256 01a099a5ced730c2d36a48d80b01ae653614096357b4f5d630aaeca6a8769f1f

See more details on using hashes here.

Supported by

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