CDK Constructs for deploying AWS Events Rule that invokes AWS SQS
Project description
aws-events-rule-sqs module
---All classes are under active development and subject to non-backward compatible changes or removal in any future version. These are not subject to the Semantic Versioning model. 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.
Reference Documentation: | https://docs.aws.amazon.com/solutions/latest/constructs/ |
---|
Language | Package |
---|---|
Python | aws_solutions_constructs.aws_events_rule_sqs |
Typescript | @aws-solutions-constructs/aws-events-rule-sqs |
Java | software.amazon.awsconstructs.services.eventsrulesqs |
This AWS Solutions Construct implements an AWS Events rule and an AWS SQS Queue.
Here is a minimal deployable pattern definition in Typescript:
# Example automatically generated without compilation. See https://github.com/aws/jsii/issues/826
from aws_cdk.core import Duration
import aws_cdk.aws_events as events
import aws_cdk.aws_iam as iam
from aws_solutions_constructs.aws_events_rule_sqs import EventsRuleToSqsProps, EventsRuleToSqs
props = EventsRuleToSqsProps(
event_rule_props=RuleProps(
schedule=events.Schedule.rate(Duration.minutes(5))
)
)
construct_stack = EventsRuleToSqs(self, "test-construct", props)
# Grant yourself permissions to use the Customer Managed KMS Key
policy_statement = iam.PolicyStatement(
actions=["kms:Encrypt", "kms:Decrypt"],
effect=iam.Effect.ALLOW,
principals=[iam.AccountRootPrincipal()],
resources=["*"]
)
construct_stack.encryption_key.add_to_resource_policy(policy_statement)
Initializer
new EventsRuleToSqs(scope: Construct, id: string, props: EventsRuleToSqsProps);
Parameters
- scope
Construct
- id
string
- props
EventsRuleToSqsProps
Pattern Construct Props
Name | Type | Description |
---|---|---|
eventRuleProps | events.RuleProps |
User provided eventRuleProps to override the defaults. |
existingQueueObj? | sqs.Queue |
An optional, existing SQS queue to be used instead of the default queue. If an existing queue is provided, the queueProps property will be ignored. |
queueProps? | sqs.QueueProps |
User provided props to override the default props for the SQS Queue. |
enableQueuePurging? | boolean |
Whether to grant additional permissions to the Lambda function enabling it to purge the SQS queue. Defaults to false . |
deployDeadLetterQueue? | boolean |
Whether to create a secondary queue to be used as a dead letter queue. Defaults to true . |
deadLetterQueueProps? | sqs.QueueProps |
Optional user-provided props to override the default props for the dead letter queue. Only used if the deployDeadLetterQueue property is set to true. |
maxReceiveCount? | number |
The number of times a message can be unsuccessfully dequeued before being moved to the dead letter queue. Defaults to 15 . |
enableEncryptionWithCustomerManagedKey? | boolean |
Use a KMS Key, either managed by this CDK app, or imported. If importing an encryption key, it must be specified in the encryptionKey property for this construct. |
encryptionKey? | kms.Key |
An optional, imported encryption key to encrypt the SQS queue. |
encryptionKeyProps? | kms.KeyProps |
An optional, user provided properties to override the default properties for the KMS encryption key. |
Pattern Properties
Name | Type | Description |
---|---|---|
eventsRule | events.Rule |
Returns an instance of events.Rule created by the construct |
sqsQueue | sqs.Queue |
Returns an instance of sqs.Queue created by the construct |
encryptionKey? | kms.Key |
Returns an instance of kms Key used for the SQS queue. |
deadLetterQueue? | sqs.Queue |
Returns an instance of the dead-letter SQS queue created by the pattern. |
Default settings
Out of the box implementation of the Construct without any override will set the following defaults:
Amazon CloudWatch Events Rule
- Grant least privilege permissions to CloudWatch Events to publish to the SQS Queue.
Amazon SQS Queue
- Deploy SQS dead-letter queue for the source SQS Queue.
- Enable server-side encryption for source SQS Queue using Customer managed KMS Key.
- Enforce encryption of data in transit.
Architecture
© Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
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-solutions-constructs.aws-events-rule-sqs-1.95.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd48101246bc97330f5f1a820448b6107fbe35a22f2cec1477405e2e56ece274 |
|
MD5 | df2382e4403a1a19dc8e281c9382af76 |
|
BLAKE2b-256 | 2cf17682057e3244ec44352af364cfd7767181a117c72891f7e477848b968953 |
Hashes for aws_solutions_constructs.aws_events_rule_sqs-1.95.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ad2c7d9b946f99aeae3a0d9b78f7da337041eeeceb1755158f1a62faccfac61 |
|
MD5 | 83982fddbe4f2e91c9c1811bc2513374 |
|
BLAKE2b-256 | cbfaa09d470a88668dc3b4a9a806f796815e297c600b52eee20f25054765dcb4 |