aws-solutions-constructs.aws-sqs-pipes-stepfunctions 2.73.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,639 @@
1
+ r'''
2
+ # aws-sqs-pipes-stepfunctions module
3
+
4
+ <!--BEGIN STABILITY BANNER-->---
5
+
6
+
7
+ ![Stability: Experimental](https://img.shields.io/badge/stability-Experimental-important.svg?style=for-the-badge)
8
+
9
+ ---
10
+ <!--END STABILITY BANNER-->
11
+
12
+ | **Reference Documentation**:| <span style="font-weight: normal">https://docs.aws.amazon.com/solutions/latest/constructs/</span>|
13
+ |:-------------|:-------------|
14
+
15
+ <div style="height:8px"></div>
16
+
17
+ | **Language** | **Package** |
18
+ |:-------------|-----------------|
19
+ |![Python Logo](https://docs.aws.amazon.com/cdk/api/latest/img/python32.png) Python|`aws_solutions_constructs.aws_sqs_pipes_stepfunctions`|
20
+ |![Typescript Logo](https://docs.aws.amazon.com/cdk/api/latest/img/typescript32.png) Typescript|`@aws-solutions-constructs/aws-sqs-pipes-stepfunctions`|
21
+ |![Java Logo](https://docs.aws.amazon.com/cdk/api/latest/img/java32.png) Java|`software.amazon.awsconstructs.services.sqspipesstepfunctions`|
22
+
23
+ ## Overview
24
+
25
+ This AWS Solutions Construct implements an AWS SQS queue whose messages are passed to an AWS Step Functions state machine by an Amazon Eventbridge pipe.
26
+
27
+ Here is a minimal deployable pattern definition:
28
+
29
+ Typescript
30
+
31
+ ```python
32
+ import { Construct } from 'constructs';
33
+ import { Stack, StackProps } from 'aws-cdk-lib';
34
+ import * as stepfunctions from 'aws-cdk-lib/aws-stepfunctions';
35
+ import { SqsToPipesToStepfunctions, SqsToPipesToStepfunctionsProps } from "@aws-solutions-constructs/aws-sqs-pipes-stepfunctions";
36
+
37
+ const startState = new stepfunctions.Pass(this, 'StartState');
38
+
39
+ new SqsToPipesToStepfunctions(this, 'SqsToLambdaToStepfunctionsPattern', {
40
+ stateMachineProps: {
41
+ definition: startState
42
+ }
43
+ });
44
+ ```
45
+
46
+ ## Pattern Construct Props
47
+
48
+ | **Name** | **Type** | **Description** |
49
+ |:-------------|:----------------|-----------------|
50
+ |existingQueueObj?|[`sqs.Queue`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_sqs.Queue.html)|An optional, existing SQS queue to be used instead of the default queue. Providing both this and `queueProps` will cause an error.|
51
+ |queueProps?|[`sqs.QueueProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_sqs.QueueProps.html)|Optional user provided properties to override the default properties for the SQS queue.|
52
+ |encryptQueueWithCmk|`boolean`|Whether to encrypt the Queue with a customer managed KMS key (CMK). This is the default behavior, and this property defaults to true - if it is explicitly set to false then the Queue is encrypted with an Amazon managed KMS key. For a completely unencrypted Queue (not recommended), create the Queue separately from the construct and pass it in using the existingQueueObject. Since SNS subscriptions do not currently support SQS queues with AWS managed encryption keys, setting this to false will always result in an error from the underlying CDK - we have still included this property for consistency with topics and to be ready if the services one day support this functionality.|
53
+ |queueEncryptionKeyProps?|[`kms.KeyProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kms.Key.html#construct-props)|An optional subset of key properties to override the default properties used by constructs (`enableKeyRotation: true`). These properties will be used in constructing the CMK used to encrypt the SQS queue.|
54
+ |existingQueueEncryptionKey?|[`kms.Key`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kms.Key.html)|An optional CMK that will be used by the construct to encrypt the new SQS queue.|
55
+ |deployDeadLetterQueue?|`boolean`|Whether to create a secondary queue to be used as a dead letter queue. Defaults to true.|
56
+ |deadLetterQueueProps?|[`sqs.QueueProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_sqs.QueueProps.html)|Optional user-provided props to override the default props for the dead letter SQS queue.|
57
+ |maxReceiveCount?|`number`|The number of times a message can be unsuccessfully dequeued before being moved to the dead letter queue. Defaults to 15.|
58
+ |stateMachineProps|[`sfn.StateMachineProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachineProps.html)|User provided props for the sfn.StateMachine.|
59
+ |createCloudWatchAlarms?|`boolean`|Whether to create recommended CloudWatch alarms|
60
+ | logGroupProps? | [logs.logGroupProps ](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.LogGroupProps.html)| Optional user provided props to override the default props for for the CloudWatchLogs LogGroup for the state machine. |
61
+ |pipeProps?|[ pipes.CfnPipeProps ](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_pipes.CfnPipeProps.html)|Optional customer provided settings for the EventBridge pipe. source, target, roleArn and enrichment settings are set by the construct and cannot be overriden here. The construct will generate default sourceParameters, targetParameters and logConfiguration (found [here](link)) that can be overriden by populating those values in these props. If the client wants to implement enrichment or a filter, this is where that information can be provided. Any other props can be freely overridden. If a client wants to set values such as batchSize, that can be done here in the sourceParameters property.|
62
+ | enrichmentFunction? | [lambda.Function ](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda.Function.html) | Optional - Lambda function that the construct will configure to be called to enrich the message between source and target. The construct will configure the pipe IAM role to allow invoking the function (but will not affect the IArole assigned to the function). Specifying both this and enrichmentStateMachine is an error. Default - undefined |
63
+ | enrichmentStateMachine? | [sfn.StateMachine ](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachine.html) | Optional - Step Functions state machine that the construct will configure to be called to enrich the message between source and target. The construct will configure the pipe IAM role to allow executing the state machine (but will not affect the IAM role assigned to the state machine). Specifying both this and enrichmentStateMachine is an error. Default - undefined |
64
+ |logLevel?|PipesLogLevel|Threshold for what messages the new pipe sends to the log, PipesLogLevel.OFF, PipesLogLevel.ERROR, PipesLogLevel.INFO, PipesLogLevel.TRACE. The default is INFO. Setting the level to OFF will prevent any log group from being created. Providing pipeProps.logConfiguration will controls all aspects of logging and any construct provided log configuration is disabled. If pipeProps.logConfiguration is provided then specifying this or pipeLogProps is an error. |
65
+ |pipeLogProps?|[logs.LogGroupProps]()| Default behavior is for the this construct to create a new CloudWatch Logs log group for the pipe. These props are used to override defaults set by AWS or this construct. If there are concerns about the cost of log storage, this is where a client can specify a shorter retention duration (in days) |
66
+
67
+ ## Pattern Properties
68
+
69
+ | **Name** | **Type** | **Description** |
70
+ |:-------------|:----------------|-----------------|
71
+ |stateMachine|[`sfn.StateMachine`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachine.html)|Returns an instance of StateMachine created by the construct.|
72
+ |stateMachineLogGroup|[`logs.ILogGroup`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.ILogGroup.html)|Returns an instance of the ILogGroup created by the construct for StateMachine|
73
+ |cloudwatchAlarms?|[`cloudwatch.Alarm[]`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_cloudwatch.Alarm.html)|Returns a list of alarms created by the construct.|
74
+ |sqsQueue|[`sqs.Queue`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_sqs.Queue.html)|Returns an instance of the SQS queue created by the pattern. |
75
+ |deadLetterQueue?|[`sqs.Queue`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_sqs.Queue.html)|Returns an instance of the dead letter queue created by the pattern, if one is deployed.|
76
+ |encryptionKey?|[kms.IKey](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kms.IKey.html)|Returns an instance of kms.Key used for the SQS queue if key is customer managed.|
77
+ |pipe|[ pipes.CfnPipe](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_pipes.CfnPipe.html)| The L1 pipe construct created by this Solutions Construct. |
78
+ | pipeRole | [iam.Role ](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_iam.Role.html) | The role created that allows the pipe to access both the source and the target. |
79
+
80
+ ## Default settings
81
+
82
+ Out of the box implementation of the Construct without any override will set the following defaults:
83
+
84
+ ### Amazon SQS Queue
85
+
86
+ * Deploy SQS dead-letter queue for the source SQS Queue.
87
+ * Enable server-side encryption for source SQS Queue using AWS Managed KMS Key.
88
+ * Enforce encryption of data in transit
89
+
90
+ ### AWS Step Functions State Machine
91
+
92
+ * Deploy Step Functions standard state machine
93
+ * Create CloudWatch log group with /vendedlogs/ prefix in name
94
+ * Deploy best practices CloudWatch Alarms for the Step Functions
95
+
96
+ ### AWS EventBridge Pipe
97
+
98
+ * Pipe configured with an SQS queue source and state machine target
99
+ * A least privilege IAM role assigned to the pipe to access the queue and state machine
100
+ * CloudWatch logs set up at the 'INFO' level
101
+ * Encrypted with an AWS managed KMS key
102
+
103
+ ## Architecture
104
+
105
+ ![Architecture Diagram](architecture.png)
106
+
107
+ ---
108
+
109
+
110
+ © Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
111
+ '''
112
+ from pkgutil import extend_path
113
+ __path__ = extend_path(__path__, __name__)
114
+
115
+ import abc
116
+ import builtins
117
+ import datetime
118
+ import enum
119
+ import typing
120
+
121
+ import jsii
122
+ import publication
123
+ import typing_extensions
124
+
125
+ import typeguard
126
+ from importlib.metadata import version as _metadata_package_version
127
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
128
+
129
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
130
+ if TYPEGUARD_MAJOR_VERSION <= 2:
131
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
132
+ else:
133
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
134
+ pass
135
+ else:
136
+ if TYPEGUARD_MAJOR_VERSION == 3:
137
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
138
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
139
+ else:
140
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
141
+
142
+ from ._jsii import *
143
+
144
+ import aws_cdk.aws_cloudwatch as _aws_cdk_aws_cloudwatch_ceddda9d
145
+ import aws_cdk.aws_iam as _aws_cdk_aws_iam_ceddda9d
146
+ import aws_cdk.aws_kms as _aws_cdk_aws_kms_ceddda9d
147
+ import aws_cdk.aws_lambda as _aws_cdk_aws_lambda_ceddda9d
148
+ import aws_cdk.aws_logs as _aws_cdk_aws_logs_ceddda9d
149
+ import aws_cdk.aws_pipes as _aws_cdk_aws_pipes_ceddda9d
150
+ import aws_cdk.aws_sqs as _aws_cdk_aws_sqs_ceddda9d
151
+ import aws_cdk.aws_stepfunctions as _aws_cdk_aws_stepfunctions_ceddda9d
152
+ import aws_solutions_constructs.core as _aws_solutions_constructs_core_ac4f6ab9
153
+ import constructs as _constructs_77d1e7e8
154
+
155
+
156
+ @jsii.enum(
157
+ jsii_type="@aws-solutions-constructs/aws-sqs-pipes-stepfunctions.PipesLogLevel"
158
+ )
159
+ class PipesLogLevel(enum.Enum):
160
+ OFF = "OFF"
161
+ TRACE = "TRACE"
162
+ INFO = "INFO"
163
+ ERROR = "ERROR"
164
+
165
+
166
+ class SqsToPipesToStepfunctions(
167
+ _constructs_77d1e7e8.Construct,
168
+ metaclass=jsii.JSIIMeta,
169
+ jsii_type="@aws-solutions-constructs/aws-sqs-pipes-stepfunctions.SqsToPipesToStepfunctions",
170
+ ):
171
+ def __init__(
172
+ self,
173
+ scope: _constructs_77d1e7e8.Construct,
174
+ id: builtins.str,
175
+ *,
176
+ state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
177
+ create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
178
+ dead_letter_queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
179
+ deploy_dead_letter_queue: typing.Optional[builtins.bool] = None,
180
+ encrypt_queue_with_cmk: typing.Optional[builtins.bool] = None,
181
+ enrichment_function: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Function] = None,
182
+ enrichment_state_machine: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
183
+ existing_queue_encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.Key] = None,
184
+ existing_queue_obj: typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue] = None,
185
+ log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
186
+ log_level: typing.Optional[_aws_solutions_constructs_core_ac4f6ab9.PipesLogLevel] = None,
187
+ max_receive_count: typing.Optional[jsii.Number] = None,
188
+ pipe_log_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
189
+ pipe_props: typing.Any = None,
190
+ queue_encryption_key_props: typing.Optional[typing.Union[_aws_cdk_aws_kms_ceddda9d.KeyProps, typing.Dict[builtins.str, typing.Any]]] = None,
191
+ queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
192
+ ) -> None:
193
+ '''
194
+ :param scope: - represents the scope for all the resources.
195
+ :param id: - this is a a scope-unique id.
196
+ :param state_machine_props: User provided props for the sfn.StateMachine.
197
+ :param create_cloud_watch_alarms: Whether to create recommended CloudWatch alarms. default = true
198
+ :param dead_letter_queue_props: Optional user-provided props to override the default props for the dead letter SQS queue.
199
+ :param deploy_dead_letter_queue: Whether to create a secondary queue to be used as a dead letter queue. default = true.
200
+ :param encrypt_queue_with_cmk: Whether to encrypt the Queue with a customer managed KMS key (CMK). This is the default behavior, and this property defaults to true - if it is explicitly set to false then the Queue is encrypted with an Amazon managed KMS key. For a completely unencrypted Queue (not recommended), create the Queue separately from the construct and pass it in using the existingQueueObject. Since SNS subscriptions do not currently support SQS queues with AWS managed encryption keys, setting this to false will always result in an error from the underlying CDK - we have still included this property for consistency with topics and to be ready if the services one day support this functionality.
201
+ :param enrichment_function: Optional - Lambda function that the construct will configure to be called to enrich the message between source and target. The construct will configure the pipe IAM role to allow invoking the function (but will not affect the IArole assigned to the function). Specifying both this and enrichmentStateMachine is an error. Default - undefined
202
+ :param enrichment_state_machine: Optional - Step Functions state machine that the construct will configure to be called to enrich the message between source and target. The construct will configure the pipe IAM role to allow executing the state machine (but will not affect the IAM role assigned to the state machine). Specifying both this and enrichmentStateMachine is an error. Enrichment is invoked synchronously, so this must be an EXPRESS state machin. Default - undefined
203
+ :param existing_queue_encryption_key: An optional CMK that will be used by the construct to encrypt the new SQS queue.
204
+ :param existing_queue_obj: An optional, existing SQS queue to be used instead of the default queue. Providing both this and queueProps will cause an error.
205
+ :param log_group_props: Optional user provided props to override the default props for for the CloudWatchLogs LogGroup.
206
+ :param log_level: Threshold for what messages the new pipe sends to the log, PipesLogLevel.OFF, PipesLogLevel.ERROR, PipesLogLevel.INFO, PipesLogLevel.TRACE. The default is INFO. Setting the level to OFF will prevent any log group from being created. Providing pipeProps.logConfiguration will controls all aspects of logging and any construct provided log configuration is disabled. If pipeProps.logConfiguration is provided then specifying this or pipeLogProps is an error.
207
+ :param max_receive_count: The number of times a message can be unsuccessfully dequeued before being moved to the dead letter queue. Defaults to 15.
208
+ :param pipe_log_props: Default behavior is for the this construct to create a new CloudWatch Logs log group for the pipe. These props are used to override defaults set by AWS or this construct. If there are concerns about the cost of log storage, this is where a client can specify a shorter retention duration (in days)
209
+ :param pipe_props: Optional customer provided settings for the EventBridge pipe. source, target and roleArn are set by the construct and cannot be overriden. The construct will generate default sourceParameters, targetParameters and logConfiguration that can be overriden by populating those values in these props. If the client wants to implement enrichment or a filter, this is where that information can be provided. Any other props can be freely overridden.
210
+ :param queue_encryption_key_props: An optional subset of key properties to override the default properties used by constructs (enableKeyRotation: true). These properties will be used in constructing the CMK used to encrypt the SQS queue.
211
+ :param queue_props: Optional user provided properties to override the default properties for the SQS queue.
212
+
213
+ :access: public
214
+ :summary: Constructs a new instance of the SqsToPipesToStepfunctions class.
215
+ '''
216
+ if __debug__:
217
+ type_hints = typing.get_type_hints(_typecheckingstub__ceb1c3c4d051238d574ab5b99dbf3c5e745042f472b80f152d0f11b3d56c0c1b)
218
+ check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
219
+ check_type(argname="argument id", value=id, expected_type=type_hints["id"])
220
+ props = SqsToPipesToStepfunctionsProps(
221
+ state_machine_props=state_machine_props,
222
+ create_cloud_watch_alarms=create_cloud_watch_alarms,
223
+ dead_letter_queue_props=dead_letter_queue_props,
224
+ deploy_dead_letter_queue=deploy_dead_letter_queue,
225
+ encrypt_queue_with_cmk=encrypt_queue_with_cmk,
226
+ enrichment_function=enrichment_function,
227
+ enrichment_state_machine=enrichment_state_machine,
228
+ existing_queue_encryption_key=existing_queue_encryption_key,
229
+ existing_queue_obj=existing_queue_obj,
230
+ log_group_props=log_group_props,
231
+ log_level=log_level,
232
+ max_receive_count=max_receive_count,
233
+ pipe_log_props=pipe_log_props,
234
+ pipe_props=pipe_props,
235
+ queue_encryption_key_props=queue_encryption_key_props,
236
+ queue_props=queue_props,
237
+ )
238
+
239
+ jsii.create(self.__class__, self, [scope, id, props])
240
+
241
+ @builtins.property
242
+ @jsii.member(jsii_name="pipe")
243
+ def pipe(self) -> _aws_cdk_aws_pipes_ceddda9d.CfnPipe:
244
+ return typing.cast(_aws_cdk_aws_pipes_ceddda9d.CfnPipe, jsii.get(self, "pipe"))
245
+
246
+ @builtins.property
247
+ @jsii.member(jsii_name="pipeRole")
248
+ def pipe_role(self) -> _aws_cdk_aws_iam_ceddda9d.Role:
249
+ return typing.cast(_aws_cdk_aws_iam_ceddda9d.Role, jsii.get(self, "pipeRole"))
250
+
251
+ @builtins.property
252
+ @jsii.member(jsii_name="sqsQueue")
253
+ def sqs_queue(self) -> _aws_cdk_aws_sqs_ceddda9d.Queue:
254
+ return typing.cast(_aws_cdk_aws_sqs_ceddda9d.Queue, jsii.get(self, "sqsQueue"))
255
+
256
+ @builtins.property
257
+ @jsii.member(jsii_name="stateMachine")
258
+ def state_machine(self) -> _aws_cdk_aws_stepfunctions_ceddda9d.StateMachine:
259
+ return typing.cast(_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine, jsii.get(self, "stateMachine"))
260
+
261
+ @builtins.property
262
+ @jsii.member(jsii_name="stateMachineLogGroup")
263
+ def state_machine_log_group(self) -> _aws_cdk_aws_logs_ceddda9d.ILogGroup:
264
+ return typing.cast(_aws_cdk_aws_logs_ceddda9d.ILogGroup, jsii.get(self, "stateMachineLogGroup"))
265
+
266
+ @builtins.property
267
+ @jsii.member(jsii_name="cloudwatchAlarms")
268
+ def cloudwatch_alarms(
269
+ self,
270
+ ) -> typing.Optional[typing.List[_aws_cdk_aws_cloudwatch_ceddda9d.Alarm]]:
271
+ return typing.cast(typing.Optional[typing.List[_aws_cdk_aws_cloudwatch_ceddda9d.Alarm]], jsii.get(self, "cloudwatchAlarms"))
272
+
273
+ @builtins.property
274
+ @jsii.member(jsii_name="deadLetterQueue")
275
+ def dead_letter_queue(
276
+ self,
277
+ ) -> typing.Optional[_aws_cdk_aws_sqs_ceddda9d.DeadLetterQueue]:
278
+ return typing.cast(typing.Optional[_aws_cdk_aws_sqs_ceddda9d.DeadLetterQueue], jsii.get(self, "deadLetterQueue"))
279
+
280
+ @builtins.property
281
+ @jsii.member(jsii_name="encryptionKey")
282
+ def encryption_key(self) -> typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKey]:
283
+ return typing.cast(typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKey], jsii.get(self, "encryptionKey"))
284
+
285
+
286
+ @jsii.data_type(
287
+ jsii_type="@aws-solutions-constructs/aws-sqs-pipes-stepfunctions.SqsToPipesToStepfunctionsProps",
288
+ jsii_struct_bases=[],
289
+ name_mapping={
290
+ "state_machine_props": "stateMachineProps",
291
+ "create_cloud_watch_alarms": "createCloudWatchAlarms",
292
+ "dead_letter_queue_props": "deadLetterQueueProps",
293
+ "deploy_dead_letter_queue": "deployDeadLetterQueue",
294
+ "encrypt_queue_with_cmk": "encryptQueueWithCmk",
295
+ "enrichment_function": "enrichmentFunction",
296
+ "enrichment_state_machine": "enrichmentStateMachine",
297
+ "existing_queue_encryption_key": "existingQueueEncryptionKey",
298
+ "existing_queue_obj": "existingQueueObj",
299
+ "log_group_props": "logGroupProps",
300
+ "log_level": "logLevel",
301
+ "max_receive_count": "maxReceiveCount",
302
+ "pipe_log_props": "pipeLogProps",
303
+ "pipe_props": "pipeProps",
304
+ "queue_encryption_key_props": "queueEncryptionKeyProps",
305
+ "queue_props": "queueProps",
306
+ },
307
+ )
308
+ class SqsToPipesToStepfunctionsProps:
309
+ def __init__(
310
+ self,
311
+ *,
312
+ state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
313
+ create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
314
+ dead_letter_queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
315
+ deploy_dead_letter_queue: typing.Optional[builtins.bool] = None,
316
+ encrypt_queue_with_cmk: typing.Optional[builtins.bool] = None,
317
+ enrichment_function: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Function] = None,
318
+ enrichment_state_machine: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
319
+ existing_queue_encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.Key] = None,
320
+ existing_queue_obj: typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue] = None,
321
+ log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
322
+ log_level: typing.Optional[_aws_solutions_constructs_core_ac4f6ab9.PipesLogLevel] = None,
323
+ max_receive_count: typing.Optional[jsii.Number] = None,
324
+ pipe_log_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
325
+ pipe_props: typing.Any = None,
326
+ queue_encryption_key_props: typing.Optional[typing.Union[_aws_cdk_aws_kms_ceddda9d.KeyProps, typing.Dict[builtins.str, typing.Any]]] = None,
327
+ queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
328
+ ) -> None:
329
+ '''
330
+ :param state_machine_props: User provided props for the sfn.StateMachine.
331
+ :param create_cloud_watch_alarms: Whether to create recommended CloudWatch alarms. default = true
332
+ :param dead_letter_queue_props: Optional user-provided props to override the default props for the dead letter SQS queue.
333
+ :param deploy_dead_letter_queue: Whether to create a secondary queue to be used as a dead letter queue. default = true.
334
+ :param encrypt_queue_with_cmk: Whether to encrypt the Queue with a customer managed KMS key (CMK). This is the default behavior, and this property defaults to true - if it is explicitly set to false then the Queue is encrypted with an Amazon managed KMS key. For a completely unencrypted Queue (not recommended), create the Queue separately from the construct and pass it in using the existingQueueObject. Since SNS subscriptions do not currently support SQS queues with AWS managed encryption keys, setting this to false will always result in an error from the underlying CDK - we have still included this property for consistency with topics and to be ready if the services one day support this functionality.
335
+ :param enrichment_function: Optional - Lambda function that the construct will configure to be called to enrich the message between source and target. The construct will configure the pipe IAM role to allow invoking the function (but will not affect the IArole assigned to the function). Specifying both this and enrichmentStateMachine is an error. Default - undefined
336
+ :param enrichment_state_machine: Optional - Step Functions state machine that the construct will configure to be called to enrich the message between source and target. The construct will configure the pipe IAM role to allow executing the state machine (but will not affect the IAM role assigned to the state machine). Specifying both this and enrichmentStateMachine is an error. Enrichment is invoked synchronously, so this must be an EXPRESS state machin. Default - undefined
337
+ :param existing_queue_encryption_key: An optional CMK that will be used by the construct to encrypt the new SQS queue.
338
+ :param existing_queue_obj: An optional, existing SQS queue to be used instead of the default queue. Providing both this and queueProps will cause an error.
339
+ :param log_group_props: Optional user provided props to override the default props for for the CloudWatchLogs LogGroup.
340
+ :param log_level: Threshold for what messages the new pipe sends to the log, PipesLogLevel.OFF, PipesLogLevel.ERROR, PipesLogLevel.INFO, PipesLogLevel.TRACE. The default is INFO. Setting the level to OFF will prevent any log group from being created. Providing pipeProps.logConfiguration will controls all aspects of logging and any construct provided log configuration is disabled. If pipeProps.logConfiguration is provided then specifying this or pipeLogProps is an error.
341
+ :param max_receive_count: The number of times a message can be unsuccessfully dequeued before being moved to the dead letter queue. Defaults to 15.
342
+ :param pipe_log_props: Default behavior is for the this construct to create a new CloudWatch Logs log group for the pipe. These props are used to override defaults set by AWS or this construct. If there are concerns about the cost of log storage, this is where a client can specify a shorter retention duration (in days)
343
+ :param pipe_props: Optional customer provided settings for the EventBridge pipe. source, target and roleArn are set by the construct and cannot be overriden. The construct will generate default sourceParameters, targetParameters and logConfiguration that can be overriden by populating those values in these props. If the client wants to implement enrichment or a filter, this is where that information can be provided. Any other props can be freely overridden.
344
+ :param queue_encryption_key_props: An optional subset of key properties to override the default properties used by constructs (enableKeyRotation: true). These properties will be used in constructing the CMK used to encrypt the SQS queue.
345
+ :param queue_props: Optional user provided properties to override the default properties for the SQS queue.
346
+
347
+ :summary: The properties for the SnsToSqs class.
348
+ '''
349
+ if isinstance(state_machine_props, dict):
350
+ state_machine_props = _aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps(**state_machine_props)
351
+ if isinstance(dead_letter_queue_props, dict):
352
+ dead_letter_queue_props = _aws_cdk_aws_sqs_ceddda9d.QueueProps(**dead_letter_queue_props)
353
+ if isinstance(log_group_props, dict):
354
+ log_group_props = _aws_cdk_aws_logs_ceddda9d.LogGroupProps(**log_group_props)
355
+ if isinstance(pipe_log_props, dict):
356
+ pipe_log_props = _aws_cdk_aws_logs_ceddda9d.LogGroupProps(**pipe_log_props)
357
+ if isinstance(queue_encryption_key_props, dict):
358
+ queue_encryption_key_props = _aws_cdk_aws_kms_ceddda9d.KeyProps(**queue_encryption_key_props)
359
+ if isinstance(queue_props, dict):
360
+ queue_props = _aws_cdk_aws_sqs_ceddda9d.QueueProps(**queue_props)
361
+ if __debug__:
362
+ type_hints = typing.get_type_hints(_typecheckingstub__194e6c5b4126faff541334ee4c6e09b0eb05d31358b8eba12e563e86b30c14c1)
363
+ check_type(argname="argument state_machine_props", value=state_machine_props, expected_type=type_hints["state_machine_props"])
364
+ check_type(argname="argument create_cloud_watch_alarms", value=create_cloud_watch_alarms, expected_type=type_hints["create_cloud_watch_alarms"])
365
+ check_type(argname="argument dead_letter_queue_props", value=dead_letter_queue_props, expected_type=type_hints["dead_letter_queue_props"])
366
+ check_type(argname="argument deploy_dead_letter_queue", value=deploy_dead_letter_queue, expected_type=type_hints["deploy_dead_letter_queue"])
367
+ check_type(argname="argument encrypt_queue_with_cmk", value=encrypt_queue_with_cmk, expected_type=type_hints["encrypt_queue_with_cmk"])
368
+ check_type(argname="argument enrichment_function", value=enrichment_function, expected_type=type_hints["enrichment_function"])
369
+ check_type(argname="argument enrichment_state_machine", value=enrichment_state_machine, expected_type=type_hints["enrichment_state_machine"])
370
+ check_type(argname="argument existing_queue_encryption_key", value=existing_queue_encryption_key, expected_type=type_hints["existing_queue_encryption_key"])
371
+ check_type(argname="argument existing_queue_obj", value=existing_queue_obj, expected_type=type_hints["existing_queue_obj"])
372
+ check_type(argname="argument log_group_props", value=log_group_props, expected_type=type_hints["log_group_props"])
373
+ check_type(argname="argument log_level", value=log_level, expected_type=type_hints["log_level"])
374
+ check_type(argname="argument max_receive_count", value=max_receive_count, expected_type=type_hints["max_receive_count"])
375
+ check_type(argname="argument pipe_log_props", value=pipe_log_props, expected_type=type_hints["pipe_log_props"])
376
+ check_type(argname="argument pipe_props", value=pipe_props, expected_type=type_hints["pipe_props"])
377
+ check_type(argname="argument queue_encryption_key_props", value=queue_encryption_key_props, expected_type=type_hints["queue_encryption_key_props"])
378
+ check_type(argname="argument queue_props", value=queue_props, expected_type=type_hints["queue_props"])
379
+ self._values: typing.Dict[builtins.str, typing.Any] = {
380
+ "state_machine_props": state_machine_props,
381
+ }
382
+ if create_cloud_watch_alarms is not None:
383
+ self._values["create_cloud_watch_alarms"] = create_cloud_watch_alarms
384
+ if dead_letter_queue_props is not None:
385
+ self._values["dead_letter_queue_props"] = dead_letter_queue_props
386
+ if deploy_dead_letter_queue is not None:
387
+ self._values["deploy_dead_letter_queue"] = deploy_dead_letter_queue
388
+ if encrypt_queue_with_cmk is not None:
389
+ self._values["encrypt_queue_with_cmk"] = encrypt_queue_with_cmk
390
+ if enrichment_function is not None:
391
+ self._values["enrichment_function"] = enrichment_function
392
+ if enrichment_state_machine is not None:
393
+ self._values["enrichment_state_machine"] = enrichment_state_machine
394
+ if existing_queue_encryption_key is not None:
395
+ self._values["existing_queue_encryption_key"] = existing_queue_encryption_key
396
+ if existing_queue_obj is not None:
397
+ self._values["existing_queue_obj"] = existing_queue_obj
398
+ if log_group_props is not None:
399
+ self._values["log_group_props"] = log_group_props
400
+ if log_level is not None:
401
+ self._values["log_level"] = log_level
402
+ if max_receive_count is not None:
403
+ self._values["max_receive_count"] = max_receive_count
404
+ if pipe_log_props is not None:
405
+ self._values["pipe_log_props"] = pipe_log_props
406
+ if pipe_props is not None:
407
+ self._values["pipe_props"] = pipe_props
408
+ if queue_encryption_key_props is not None:
409
+ self._values["queue_encryption_key_props"] = queue_encryption_key_props
410
+ if queue_props is not None:
411
+ self._values["queue_props"] = queue_props
412
+
413
+ @builtins.property
414
+ def state_machine_props(
415
+ self,
416
+ ) -> _aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps:
417
+ '''User provided props for the sfn.StateMachine.'''
418
+ result = self._values.get("state_machine_props")
419
+ assert result is not None, "Required property 'state_machine_props' is missing"
420
+ return typing.cast(_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, result)
421
+
422
+ @builtins.property
423
+ def create_cloud_watch_alarms(self) -> typing.Optional[builtins.bool]:
424
+ '''Whether to create recommended CloudWatch alarms.
425
+
426
+ default = true
427
+ '''
428
+ result = self._values.get("create_cloud_watch_alarms")
429
+ return typing.cast(typing.Optional[builtins.bool], result)
430
+
431
+ @builtins.property
432
+ def dead_letter_queue_props(
433
+ self,
434
+ ) -> typing.Optional[_aws_cdk_aws_sqs_ceddda9d.QueueProps]:
435
+ '''Optional user-provided props to override the default props for the dead letter SQS queue.'''
436
+ result = self._values.get("dead_letter_queue_props")
437
+ return typing.cast(typing.Optional[_aws_cdk_aws_sqs_ceddda9d.QueueProps], result)
438
+
439
+ @builtins.property
440
+ def deploy_dead_letter_queue(self) -> typing.Optional[builtins.bool]:
441
+ '''Whether to create a secondary queue to be used as a dead letter queue.
442
+
443
+ default = true.
444
+ '''
445
+ result = self._values.get("deploy_dead_letter_queue")
446
+ return typing.cast(typing.Optional[builtins.bool], result)
447
+
448
+ @builtins.property
449
+ def encrypt_queue_with_cmk(self) -> typing.Optional[builtins.bool]:
450
+ '''Whether to encrypt the Queue with a customer managed KMS key (CMK).
451
+
452
+ This is the default
453
+ behavior, and this property defaults to true - if it is explicitly set to false then the Queue
454
+ is encrypted with an Amazon managed KMS key. For a completely unencrypted Queue (not recommended),
455
+ create the Queue separately from the construct and pass it in using the existingQueueObject. Since
456
+ SNS subscriptions do not currently support SQS queues with AWS managed encryption keys, setting this
457
+ to false will always result in an error from the underlying CDK - we have still included this property
458
+ for consistency with topics and to be ready if the services one day support this functionality.
459
+ '''
460
+ result = self._values.get("encrypt_queue_with_cmk")
461
+ return typing.cast(typing.Optional[builtins.bool], result)
462
+
463
+ @builtins.property
464
+ def enrichment_function(
465
+ self,
466
+ ) -> typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Function]:
467
+ '''Optional - Lambda function that the construct will configure to be called to enrich the message between source and target.
468
+
469
+ The construct will configure the pipe IAM role to allow invoking the
470
+ function (but will not affect the IArole assigned to the function). Specifying both this and
471
+ enrichmentStateMachine is an error. Default - undefined
472
+ '''
473
+ result = self._values.get("enrichment_function")
474
+ return typing.cast(typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Function], result)
475
+
476
+ @builtins.property
477
+ def enrichment_state_machine(
478
+ self,
479
+ ) -> typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine]:
480
+ '''Optional - Step Functions state machine that the construct will configure to be called to enrich the message between source and target.
481
+
482
+ The construct will configure the pipe IAM role to allow executing the state
483
+ machine (but will not affect the IAM role assigned to the state machine). Specifying both this and
484
+ enrichmentStateMachine is an error. Enrichment is invoked synchronously, so this must be an EXPRESS
485
+ state machin. Default - undefined
486
+ '''
487
+ result = self._values.get("enrichment_state_machine")
488
+ return typing.cast(typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine], result)
489
+
490
+ @builtins.property
491
+ def existing_queue_encryption_key(
492
+ self,
493
+ ) -> typing.Optional[_aws_cdk_aws_kms_ceddda9d.Key]:
494
+ '''An optional CMK that will be used by the construct to encrypt the new SQS queue.'''
495
+ result = self._values.get("existing_queue_encryption_key")
496
+ return typing.cast(typing.Optional[_aws_cdk_aws_kms_ceddda9d.Key], result)
497
+
498
+ @builtins.property
499
+ def existing_queue_obj(self) -> typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue]:
500
+ '''An optional, existing SQS queue to be used instead of the default queue.
501
+
502
+ Providing both this and queueProps will cause an error.
503
+ '''
504
+ result = self._values.get("existing_queue_obj")
505
+ return typing.cast(typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue], result)
506
+
507
+ @builtins.property
508
+ def log_group_props(
509
+ self,
510
+ ) -> typing.Optional[_aws_cdk_aws_logs_ceddda9d.LogGroupProps]:
511
+ '''Optional user provided props to override the default props for for the CloudWatchLogs LogGroup.'''
512
+ result = self._values.get("log_group_props")
513
+ return typing.cast(typing.Optional[_aws_cdk_aws_logs_ceddda9d.LogGroupProps], result)
514
+
515
+ @builtins.property
516
+ def log_level(
517
+ self,
518
+ ) -> typing.Optional[_aws_solutions_constructs_core_ac4f6ab9.PipesLogLevel]:
519
+ '''Threshold for what messages the new pipe sends to the log, PipesLogLevel.OFF, PipesLogLevel.ERROR, PipesLogLevel.INFO, PipesLogLevel.TRACE. The default is INFO. Setting the level to OFF will prevent any log group from being created. Providing pipeProps.logConfiguration will controls all aspects of logging and any construct provided log configuration is disabled. If pipeProps.logConfiguration is provided then specifying this or pipeLogProps is an error.'''
520
+ result = self._values.get("log_level")
521
+ return typing.cast(typing.Optional[_aws_solutions_constructs_core_ac4f6ab9.PipesLogLevel], result)
522
+
523
+ @builtins.property
524
+ def max_receive_count(self) -> typing.Optional[jsii.Number]:
525
+ '''The number of times a message can be unsuccessfully dequeued before being moved to the dead letter queue.
526
+
527
+ Defaults to 15.
528
+ '''
529
+ result = self._values.get("max_receive_count")
530
+ return typing.cast(typing.Optional[jsii.Number], result)
531
+
532
+ @builtins.property
533
+ def pipe_log_props(
534
+ self,
535
+ ) -> typing.Optional[_aws_cdk_aws_logs_ceddda9d.LogGroupProps]:
536
+ '''Default behavior is for the this construct to create a new CloudWatch Logs log group for the pipe.
537
+
538
+ These props are used to override defaults set by AWS or this construct. If there are concerns about
539
+ the cost of log storage, this is where a client can specify a shorter retention duration (in days)
540
+ '''
541
+ result = self._values.get("pipe_log_props")
542
+ return typing.cast(typing.Optional[_aws_cdk_aws_logs_ceddda9d.LogGroupProps], result)
543
+
544
+ @builtins.property
545
+ def pipe_props(self) -> typing.Any:
546
+ '''Optional customer provided settings for the EventBridge pipe.
547
+
548
+ source, target and
549
+ roleArn are set by the construct and cannot be overriden. The construct will generate
550
+ default sourceParameters, targetParameters and logConfiguration that can be
551
+ overriden by populating those values in these props. If the client wants to implement
552
+ enrichment or a filter, this is where that information can be provided. Any other props
553
+ can be freely overridden.
554
+ '''
555
+ result = self._values.get("pipe_props")
556
+ return typing.cast(typing.Any, result)
557
+
558
+ @builtins.property
559
+ def queue_encryption_key_props(
560
+ self,
561
+ ) -> typing.Optional[_aws_cdk_aws_kms_ceddda9d.KeyProps]:
562
+ '''An optional subset of key properties to override the default properties used by constructs (enableKeyRotation: true).
563
+
564
+ These properties will be used in constructing the CMK used to encrypt the SQS queue.
565
+ '''
566
+ result = self._values.get("queue_encryption_key_props")
567
+ return typing.cast(typing.Optional[_aws_cdk_aws_kms_ceddda9d.KeyProps], result)
568
+
569
+ @builtins.property
570
+ def queue_props(self) -> typing.Optional[_aws_cdk_aws_sqs_ceddda9d.QueueProps]:
571
+ '''Optional user provided properties to override the default properties for the SQS queue.'''
572
+ result = self._values.get("queue_props")
573
+ return typing.cast(typing.Optional[_aws_cdk_aws_sqs_ceddda9d.QueueProps], result)
574
+
575
+ def __eq__(self, rhs: typing.Any) -> builtins.bool:
576
+ return isinstance(rhs, self.__class__) and rhs._values == self._values
577
+
578
+ def __ne__(self, rhs: typing.Any) -> builtins.bool:
579
+ return not (rhs == self)
580
+
581
+ def __repr__(self) -> str:
582
+ return "SqsToPipesToStepfunctionsProps(%s)" % ", ".join(
583
+ k + "=" + repr(v) for k, v in self._values.items()
584
+ )
585
+
586
+
587
+ __all__ = [
588
+ "PipesLogLevel",
589
+ "SqsToPipesToStepfunctions",
590
+ "SqsToPipesToStepfunctionsProps",
591
+ ]
592
+
593
+ publication.publish()
594
+
595
+ def _typecheckingstub__ceb1c3c4d051238d574ab5b99dbf3c5e745042f472b80f152d0f11b3d56c0c1b(
596
+ scope: _constructs_77d1e7e8.Construct,
597
+ id: builtins.str,
598
+ *,
599
+ state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
600
+ create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
601
+ dead_letter_queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
602
+ deploy_dead_letter_queue: typing.Optional[builtins.bool] = None,
603
+ encrypt_queue_with_cmk: typing.Optional[builtins.bool] = None,
604
+ enrichment_function: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Function] = None,
605
+ enrichment_state_machine: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
606
+ existing_queue_encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.Key] = None,
607
+ existing_queue_obj: typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue] = None,
608
+ log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
609
+ log_level: typing.Optional[_aws_solutions_constructs_core_ac4f6ab9.PipesLogLevel] = None,
610
+ max_receive_count: typing.Optional[jsii.Number] = None,
611
+ pipe_log_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
612
+ pipe_props: typing.Any = None,
613
+ queue_encryption_key_props: typing.Optional[typing.Union[_aws_cdk_aws_kms_ceddda9d.KeyProps, typing.Dict[builtins.str, typing.Any]]] = None,
614
+ queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
615
+ ) -> None:
616
+ """Type checking stubs"""
617
+ pass
618
+
619
+ def _typecheckingstub__194e6c5b4126faff541334ee4c6e09b0eb05d31358b8eba12e563e86b30c14c1(
620
+ *,
621
+ state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
622
+ create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
623
+ dead_letter_queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
624
+ deploy_dead_letter_queue: typing.Optional[builtins.bool] = None,
625
+ encrypt_queue_with_cmk: typing.Optional[builtins.bool] = None,
626
+ enrichment_function: typing.Optional[_aws_cdk_aws_lambda_ceddda9d.Function] = None,
627
+ enrichment_state_machine: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
628
+ existing_queue_encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.Key] = None,
629
+ existing_queue_obj: typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue] = None,
630
+ log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
631
+ log_level: typing.Optional[_aws_solutions_constructs_core_ac4f6ab9.PipesLogLevel] = None,
632
+ max_receive_count: typing.Optional[jsii.Number] = None,
633
+ pipe_log_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
634
+ pipe_props: typing.Any = None,
635
+ queue_encryption_key_props: typing.Optional[typing.Union[_aws_cdk_aws_kms_ceddda9d.KeyProps, typing.Dict[builtins.str, typing.Any]]] = None,
636
+ queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
637
+ ) -> None:
638
+ """Type checking stubs"""
639
+ pass
@@ -0,0 +1,48 @@
1
+ from pkgutil import extend_path
2
+ __path__ = extend_path(__path__, __name__)
3
+
4
+ import abc
5
+ import builtins
6
+ import datetime
7
+ import enum
8
+ import typing
9
+
10
+ import jsii
11
+ import publication
12
+ import typing_extensions
13
+
14
+ import typeguard
15
+ from importlib.metadata import version as _metadata_package_version
16
+ TYPEGUARD_MAJOR_VERSION = int(_metadata_package_version('typeguard').split('.')[0])
17
+
18
+ def check_type(argname: str, value: object, expected_type: typing.Any) -> typing.Any:
19
+ if TYPEGUARD_MAJOR_VERSION <= 2:
20
+ return typeguard.check_type(argname=argname, value=value, expected_type=expected_type) # type:ignore
21
+ else:
22
+ if isinstance(value, jsii._reference_map.InterfaceDynamicProxy): # pyright: ignore [reportAttributeAccessIssue]
23
+ pass
24
+ else:
25
+ if TYPEGUARD_MAJOR_VERSION == 3:
26
+ typeguard.config.collection_check_strategy = typeguard.CollectionCheckStrategy.ALL_ITEMS # type:ignore
27
+ typeguard.check_type(value=value, expected_type=expected_type) # type:ignore
28
+ else:
29
+ typeguard.check_type(value=value, expected_type=expected_type, collection_check_strategy=typeguard.CollectionCheckStrategy.ALL_ITEMS) # type:ignore
30
+
31
+ import aws_cdk._jsii
32
+ import aws_cdk.integ_tests_alpha._jsii
33
+ import aws_solutions_constructs.core._jsii
34
+ import aws_solutions_constructs.resources._jsii
35
+ import constructs._jsii
36
+
37
+ __jsii_assembly__ = jsii.JSIIAssembly.load(
38
+ "@aws-solutions-constructs/aws-sqs-pipes-stepfunctions",
39
+ "2.73.0",
40
+ __name__[0:-6],
41
+ "aws-sqs-pipes-stepfunctions@2.73.0.jsii.tgz",
42
+ )
43
+
44
+ __all__ = [
45
+ "__jsii_assembly__",
46
+ ]
47
+
48
+ publication.publish()
@@ -0,0 +1,73 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
10
+
11
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
12
+
13
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
14
+
15
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
16
+
17
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
18
+
19
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
20
+
21
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
22
+
23
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
24
+
25
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
26
+
27
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
28
+
29
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
30
+
31
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
32
+
33
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
34
+
35
+ (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
36
+
37
+ (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
38
+
39
+ (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
40
+
41
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
42
+
43
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
44
+
45
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
46
+
47
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
48
+
49
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
50
+
51
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
52
+
53
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
54
+
55
+ END OF TERMS AND CONDITIONS
56
+
57
+ APPENDIX: How to apply the Apache License to your work.
58
+
59
+ To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
60
+
61
+ Copyright [yyyy] [name of copyright owner]
62
+
63
+ Licensed under the Apache License, Version 2.0 (the "License");
64
+ you may not use this file except in compliance with the License.
65
+ You may obtain a copy of the License at
66
+
67
+ http://www.apache.org/licenses/LICENSE-2.0
68
+
69
+ Unless required by applicable law or agreed to in writing, software
70
+ distributed under the License is distributed on an "AS IS" BASIS,
71
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
72
+ See the License for the specific language governing permissions and
73
+ limitations under the License.
@@ -0,0 +1,139 @@
1
+ Metadata-Version: 2.1
2
+ Name: aws-solutions-constructs.aws-sqs-pipes-stepfunctions
3
+ Version: 2.73.0
4
+ Summary: CDK Constructs for Amazon SQS to AWS Step Functions via Amazon EventBridge Pipes integration.
5
+ Home-page: https://github.com/awslabs/aws-solutions-constructs.git
6
+ Author: Amazon Web Services
7
+ License: Apache-2.0
8
+ Project-URL: Source, https://github.com/awslabs/aws-solutions-constructs.git
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: JavaScript
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Typing :: Typed
18
+ Classifier: License :: OSI Approved
19
+ Requires-Python: ~=3.8
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: aws-cdk-lib<3.0.0,>=2.161.0
23
+ Requires-Dist: aws-cdk.integ-tests-alpha==2.161.0.a0
24
+ Requires-Dist: aws-solutions-constructs.core==2.73.0
25
+ Requires-Dist: aws-solutions-constructs.resources==2.73.0
26
+ Requires-Dist: constructs<11.0.0,>=10.0.0
27
+ Requires-Dist: jsii<2.0.0,>=1.104.0
28
+ Requires-Dist: publication>=0.0.3
29
+ Requires-Dist: typeguard<4.3.0,>=2.13.3
30
+
31
+ # aws-sqs-pipes-stepfunctions module
32
+
33
+ <!--BEGIN STABILITY BANNER-->---
34
+
35
+
36
+ ![Stability: Experimental](https://img.shields.io/badge/stability-Experimental-important.svg?style=for-the-badge)
37
+
38
+ ---
39
+ <!--END STABILITY BANNER-->
40
+
41
+ | **Reference Documentation**:| <span style="font-weight: normal">https://docs.aws.amazon.com/solutions/latest/constructs/</span>|
42
+ |:-------------|:-------------|
43
+
44
+ <div style="height:8px"></div>
45
+
46
+ | **Language** | **Package** |
47
+ |:-------------|-----------------|
48
+ |![Python Logo](https://docs.aws.amazon.com/cdk/api/latest/img/python32.png) Python|`aws_solutions_constructs.aws_sqs_pipes_stepfunctions`|
49
+ |![Typescript Logo](https://docs.aws.amazon.com/cdk/api/latest/img/typescript32.png) Typescript|`@aws-solutions-constructs/aws-sqs-pipes-stepfunctions`|
50
+ |![Java Logo](https://docs.aws.amazon.com/cdk/api/latest/img/java32.png) Java|`software.amazon.awsconstructs.services.sqspipesstepfunctions`|
51
+
52
+ ## Overview
53
+
54
+ This AWS Solutions Construct implements an AWS SQS queue whose messages are passed to an AWS Step Functions state machine by an Amazon Eventbridge pipe.
55
+
56
+ Here is a minimal deployable pattern definition:
57
+
58
+ Typescript
59
+
60
+ ```python
61
+ import { Construct } from 'constructs';
62
+ import { Stack, StackProps } from 'aws-cdk-lib';
63
+ import * as stepfunctions from 'aws-cdk-lib/aws-stepfunctions';
64
+ import { SqsToPipesToStepfunctions, SqsToPipesToStepfunctionsProps } from "@aws-solutions-constructs/aws-sqs-pipes-stepfunctions";
65
+
66
+ const startState = new stepfunctions.Pass(this, 'StartState');
67
+
68
+ new SqsToPipesToStepfunctions(this, 'SqsToLambdaToStepfunctionsPattern', {
69
+ stateMachineProps: {
70
+ definition: startState
71
+ }
72
+ });
73
+ ```
74
+
75
+ ## Pattern Construct Props
76
+
77
+ | **Name** | **Type** | **Description** |
78
+ |:-------------|:----------------|-----------------|
79
+ |existingQueueObj?|[`sqs.Queue`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_sqs.Queue.html)|An optional, existing SQS queue to be used instead of the default queue. Providing both this and `queueProps` will cause an error.|
80
+ |queueProps?|[`sqs.QueueProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_sqs.QueueProps.html)|Optional user provided properties to override the default properties for the SQS queue.|
81
+ |encryptQueueWithCmk|`boolean`|Whether to encrypt the Queue with a customer managed KMS key (CMK). This is the default behavior, and this property defaults to true - if it is explicitly set to false then the Queue is encrypted with an Amazon managed KMS key. For a completely unencrypted Queue (not recommended), create the Queue separately from the construct and pass it in using the existingQueueObject. Since SNS subscriptions do not currently support SQS queues with AWS managed encryption keys, setting this to false will always result in an error from the underlying CDK - we have still included this property for consistency with topics and to be ready if the services one day support this functionality.|
82
+ |queueEncryptionKeyProps?|[`kms.KeyProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kms.Key.html#construct-props)|An optional subset of key properties to override the default properties used by constructs (`enableKeyRotation: true`). These properties will be used in constructing the CMK used to encrypt the SQS queue.|
83
+ |existingQueueEncryptionKey?|[`kms.Key`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kms.Key.html)|An optional CMK that will be used by the construct to encrypt the new SQS queue.|
84
+ |deployDeadLetterQueue?|`boolean`|Whether to create a secondary queue to be used as a dead letter queue. Defaults to true.|
85
+ |deadLetterQueueProps?|[`sqs.QueueProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_sqs.QueueProps.html)|Optional user-provided props to override the default props for the dead letter SQS queue.|
86
+ |maxReceiveCount?|`number`|The number of times a message can be unsuccessfully dequeued before being moved to the dead letter queue. Defaults to 15.|
87
+ |stateMachineProps|[`sfn.StateMachineProps`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachineProps.html)|User provided props for the sfn.StateMachine.|
88
+ |createCloudWatchAlarms?|`boolean`|Whether to create recommended CloudWatch alarms|
89
+ | logGroupProps? | [logs.logGroupProps ](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.LogGroupProps.html)| Optional user provided props to override the default props for for the CloudWatchLogs LogGroup for the state machine. |
90
+ |pipeProps?|[ pipes.CfnPipeProps ](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_pipes.CfnPipeProps.html)|Optional customer provided settings for the EventBridge pipe. source, target, roleArn and enrichment settings are set by the construct and cannot be overriden here. The construct will generate default sourceParameters, targetParameters and logConfiguration (found [here](link)) that can be overriden by populating those values in these props. If the client wants to implement enrichment or a filter, this is where that information can be provided. Any other props can be freely overridden. If a client wants to set values such as batchSize, that can be done here in the sourceParameters property.|
91
+ | enrichmentFunction? | [lambda.Function ](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda.Function.html) | Optional - Lambda function that the construct will configure to be called to enrich the message between source and target. The construct will configure the pipe IAM role to allow invoking the function (but will not affect the IArole assigned to the function). Specifying both this and enrichmentStateMachine is an error. Default - undefined |
92
+ | enrichmentStateMachine? | [sfn.StateMachine ](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachine.html) | Optional - Step Functions state machine that the construct will configure to be called to enrich the message between source and target. The construct will configure the pipe IAM role to allow executing the state machine (but will not affect the IAM role assigned to the state machine). Specifying both this and enrichmentStateMachine is an error. Default - undefined |
93
+ |logLevel?|PipesLogLevel|Threshold for what messages the new pipe sends to the log, PipesLogLevel.OFF, PipesLogLevel.ERROR, PipesLogLevel.INFO, PipesLogLevel.TRACE. The default is INFO. Setting the level to OFF will prevent any log group from being created. Providing pipeProps.logConfiguration will controls all aspects of logging and any construct provided log configuration is disabled. If pipeProps.logConfiguration is provided then specifying this or pipeLogProps is an error. |
94
+ |pipeLogProps?|[logs.LogGroupProps]()| Default behavior is for the this construct to create a new CloudWatch Logs log group for the pipe. These props are used to override defaults set by AWS or this construct. If there are concerns about the cost of log storage, this is where a client can specify a shorter retention duration (in days) |
95
+
96
+ ## Pattern Properties
97
+
98
+ | **Name** | **Type** | **Description** |
99
+ |:-------------|:----------------|-----------------|
100
+ |stateMachine|[`sfn.StateMachine`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_stepfunctions.StateMachine.html)|Returns an instance of StateMachine created by the construct.|
101
+ |stateMachineLogGroup|[`logs.ILogGroup`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_logs.ILogGroup.html)|Returns an instance of the ILogGroup created by the construct for StateMachine|
102
+ |cloudwatchAlarms?|[`cloudwatch.Alarm[]`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_cloudwatch.Alarm.html)|Returns a list of alarms created by the construct.|
103
+ |sqsQueue|[`sqs.Queue`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_sqs.Queue.html)|Returns an instance of the SQS queue created by the pattern. |
104
+ |deadLetterQueue?|[`sqs.Queue`](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_sqs.Queue.html)|Returns an instance of the dead letter queue created by the pattern, if one is deployed.|
105
+ |encryptionKey?|[kms.IKey](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_kms.IKey.html)|Returns an instance of kms.Key used for the SQS queue if key is customer managed.|
106
+ |pipe|[ pipes.CfnPipe](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_pipes.CfnPipe.html)| The L1 pipe construct created by this Solutions Construct. |
107
+ | pipeRole | [iam.Role ](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_iam.Role.html) | The role created that allows the pipe to access both the source and the target. |
108
+
109
+ ## Default settings
110
+
111
+ Out of the box implementation of the Construct without any override will set the following defaults:
112
+
113
+ ### Amazon SQS Queue
114
+
115
+ * Deploy SQS dead-letter queue for the source SQS Queue.
116
+ * Enable server-side encryption for source SQS Queue using AWS Managed KMS Key.
117
+ * Enforce encryption of data in transit
118
+
119
+ ### AWS Step Functions State Machine
120
+
121
+ * Deploy Step Functions standard state machine
122
+ * Create CloudWatch log group with /vendedlogs/ prefix in name
123
+ * Deploy best practices CloudWatch Alarms for the Step Functions
124
+
125
+ ### AWS EventBridge Pipe
126
+
127
+ * Pipe configured with an SQS queue source and state machine target
128
+ * A least privilege IAM role assigned to the pipe to access the queue and state machine
129
+ * CloudWatch logs set up at the 'INFO' level
130
+ * Encrypted with an AWS managed KMS key
131
+
132
+ ## Architecture
133
+
134
+ ![Architecture Diagram](architecture.png)
135
+
136
+ ---
137
+
138
+
139
+ © Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
@@ -0,0 +1,9 @@
1
+ aws_solutions_constructs/aws_sqs_pipes_stepfunctions/__init__.py,sha256=g0dliUIVAr3087KNFTnhMWTsBLIj3cKuOxSVBw8NRvU,46065
2
+ aws_solutions_constructs/aws_sqs_pipes_stepfunctions/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
3
+ aws_solutions_constructs/aws_sqs_pipes_stepfunctions/_jsii/__init__.py,sha256=n9ylvYt-nwDQuNQBxBAh82chDxeQSSlQaTL92MOBO94,1636
4
+ aws_solutions_constructs/aws_sqs_pipes_stepfunctions/_jsii/aws-sqs-pipes-stepfunctions@2.73.0.jsii.tgz,sha256=TGhUPYK1TV-bf5Wxvwe1FCOrkBogn_7u5bMf9WE2C_s,128634
5
+ aws_solutions_constructs.aws_sqs_pipes_stepfunctions-2.73.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
6
+ aws_solutions_constructs.aws_sqs_pipes_stepfunctions-2.73.0.dist-info/METADATA,sha256=fdNqP5djM3QmV6Hho0y4-gilJG2q7gvhETidElFcJ-Q,10848
7
+ aws_solutions_constructs.aws_sqs_pipes_stepfunctions-2.73.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
8
+ aws_solutions_constructs.aws_sqs_pipes_stepfunctions-2.73.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
9
+ aws_solutions_constructs.aws_sqs_pipes_stepfunctions-2.73.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.44.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+