aws-solutions-constructs.aws-sqs-pipes-stepfunctions 2.73.0__py3-none-any.whl → 2.74.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.
@@ -173,7 +173,6 @@ class SqsToPipesToStepfunctions(
173
173
  scope: _constructs_77d1e7e8.Construct,
174
174
  id: builtins.str,
175
175
  *,
176
- state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
177
176
  create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
178
177
  dead_letter_queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
179
178
  deploy_dead_letter_queue: typing.Optional[builtins.bool] = None,
@@ -182,6 +181,7 @@ class SqsToPipesToStepfunctions(
182
181
  enrichment_state_machine: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
183
182
  existing_queue_encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.Key] = None,
184
183
  existing_queue_obj: typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue] = None,
184
+ existing_state_machine_obj: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
185
185
  log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
186
186
  log_level: typing.Optional[_aws_solutions_constructs_core_ac4f6ab9.PipesLogLevel] = None,
187
187
  max_receive_count: typing.Optional[jsii.Number] = None,
@@ -189,11 +189,11 @@ class SqsToPipesToStepfunctions(
189
189
  pipe_props: typing.Any = None,
190
190
  queue_encryption_key_props: typing.Optional[typing.Union[_aws_cdk_aws_kms_ceddda9d.KeyProps, typing.Dict[builtins.str, typing.Any]]] = None,
191
191
  queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
192
+ state_machine_props: typing.Optional[typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]]] = None,
192
193
  ) -> None:
193
194
  '''
194
195
  :param scope: - represents the scope for all the resources.
195
196
  :param id: - this is a a scope-unique id.
196
- :param state_machine_props: User provided props for the sfn.StateMachine.
197
197
  :param create_cloud_watch_alarms: Whether to create recommended CloudWatch alarms. default = true
198
198
  :param dead_letter_queue_props: Optional user-provided props to override the default props for the dead letter SQS queue.
199
199
  :param deploy_dead_letter_queue: Whether to create a secondary queue to be used as a dead letter queue. default = true.
@@ -202,6 +202,7 @@ class SqsToPipesToStepfunctions(
202
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
203
  :param existing_queue_encryption_key: An optional CMK that will be used by the construct to encrypt the new SQS queue.
204
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 existing_state_machine_obj: Optional existing state machine to incorporate into the construct.
205
206
  :param log_group_props: Optional user provided props to override the default props for for the CloudWatchLogs LogGroup.
206
207
  :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
208
  :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.
@@ -209,6 +210,7 @@ class SqsToPipesToStepfunctions(
209
210
  :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
211
  :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
212
  :param queue_props: Optional user provided properties to override the default properties for the SQS queue.
213
+ :param state_machine_props: User provided props for the sfn.StateMachine. This or existingStateMachine is required.
212
214
 
213
215
  :access: public
214
216
  :summary: Constructs a new instance of the SqsToPipesToStepfunctions class.
@@ -218,7 +220,6 @@ class SqsToPipesToStepfunctions(
218
220
  check_type(argname="argument scope", value=scope, expected_type=type_hints["scope"])
219
221
  check_type(argname="argument id", value=id, expected_type=type_hints["id"])
220
222
  props = SqsToPipesToStepfunctionsProps(
221
- state_machine_props=state_machine_props,
222
223
  create_cloud_watch_alarms=create_cloud_watch_alarms,
223
224
  dead_letter_queue_props=dead_letter_queue_props,
224
225
  deploy_dead_letter_queue=deploy_dead_letter_queue,
@@ -227,6 +228,7 @@ class SqsToPipesToStepfunctions(
227
228
  enrichment_state_machine=enrichment_state_machine,
228
229
  existing_queue_encryption_key=existing_queue_encryption_key,
229
230
  existing_queue_obj=existing_queue_obj,
231
+ existing_state_machine_obj=existing_state_machine_obj,
230
232
  log_group_props=log_group_props,
231
233
  log_level=log_level,
232
234
  max_receive_count=max_receive_count,
@@ -234,6 +236,7 @@ class SqsToPipesToStepfunctions(
234
236
  pipe_props=pipe_props,
235
237
  queue_encryption_key_props=queue_encryption_key_props,
236
238
  queue_props=queue_props,
239
+ state_machine_props=state_machine_props,
237
240
  )
238
241
 
239
242
  jsii.create(self.__class__, self, [scope, id, props])
@@ -258,11 +261,6 @@ class SqsToPipesToStepfunctions(
258
261
  def state_machine(self) -> _aws_cdk_aws_stepfunctions_ceddda9d.StateMachine:
259
262
  return typing.cast(_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine, jsii.get(self, "stateMachine"))
260
263
 
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
264
  @builtins.property
267
265
  @jsii.member(jsii_name="cloudwatchAlarms")
268
266
  def cloudwatch_alarms(
@@ -282,12 +280,18 @@ class SqsToPipesToStepfunctions(
282
280
  def encryption_key(self) -> typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKey]:
283
281
  return typing.cast(typing.Optional[_aws_cdk_aws_kms_ceddda9d.IKey], jsii.get(self, "encryptionKey"))
284
282
 
283
+ @builtins.property
284
+ @jsii.member(jsii_name="stateMachineLogGroup")
285
+ def state_machine_log_group(
286
+ self,
287
+ ) -> typing.Optional[_aws_cdk_aws_logs_ceddda9d.ILogGroup]:
288
+ return typing.cast(typing.Optional[_aws_cdk_aws_logs_ceddda9d.ILogGroup], jsii.get(self, "stateMachineLogGroup"))
289
+
285
290
 
286
291
  @jsii.data_type(
287
292
  jsii_type="@aws-solutions-constructs/aws-sqs-pipes-stepfunctions.SqsToPipesToStepfunctionsProps",
288
293
  jsii_struct_bases=[],
289
294
  name_mapping={
290
- "state_machine_props": "stateMachineProps",
291
295
  "create_cloud_watch_alarms": "createCloudWatchAlarms",
292
296
  "dead_letter_queue_props": "deadLetterQueueProps",
293
297
  "deploy_dead_letter_queue": "deployDeadLetterQueue",
@@ -296,6 +300,7 @@ class SqsToPipesToStepfunctions(
296
300
  "enrichment_state_machine": "enrichmentStateMachine",
297
301
  "existing_queue_encryption_key": "existingQueueEncryptionKey",
298
302
  "existing_queue_obj": "existingQueueObj",
303
+ "existing_state_machine_obj": "existingStateMachineObj",
299
304
  "log_group_props": "logGroupProps",
300
305
  "log_level": "logLevel",
301
306
  "max_receive_count": "maxReceiveCount",
@@ -303,13 +308,13 @@ class SqsToPipesToStepfunctions(
303
308
  "pipe_props": "pipeProps",
304
309
  "queue_encryption_key_props": "queueEncryptionKeyProps",
305
310
  "queue_props": "queueProps",
311
+ "state_machine_props": "stateMachineProps",
306
312
  },
307
313
  )
308
314
  class SqsToPipesToStepfunctionsProps:
309
315
  def __init__(
310
316
  self,
311
317
  *,
312
- state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
313
318
  create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
314
319
  dead_letter_queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
315
320
  deploy_dead_letter_queue: typing.Optional[builtins.bool] = None,
@@ -318,6 +323,7 @@ class SqsToPipesToStepfunctionsProps:
318
323
  enrichment_state_machine: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
319
324
  existing_queue_encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.Key] = None,
320
325
  existing_queue_obj: typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue] = None,
326
+ existing_state_machine_obj: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
321
327
  log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
322
328
  log_level: typing.Optional[_aws_solutions_constructs_core_ac4f6ab9.PipesLogLevel] = None,
323
329
  max_receive_count: typing.Optional[jsii.Number] = None,
@@ -325,9 +331,9 @@ class SqsToPipesToStepfunctionsProps:
325
331
  pipe_props: typing.Any = None,
326
332
  queue_encryption_key_props: typing.Optional[typing.Union[_aws_cdk_aws_kms_ceddda9d.KeyProps, typing.Dict[builtins.str, typing.Any]]] = None,
327
333
  queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
334
+ state_machine_props: typing.Optional[typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]]] = None,
328
335
  ) -> None:
329
336
  '''
330
- :param state_machine_props: User provided props for the sfn.StateMachine.
331
337
  :param create_cloud_watch_alarms: Whether to create recommended CloudWatch alarms. default = true
332
338
  :param dead_letter_queue_props: Optional user-provided props to override the default props for the dead letter SQS queue.
333
339
  :param deploy_dead_letter_queue: Whether to create a secondary queue to be used as a dead letter queue. default = true.
@@ -336,6 +342,7 @@ class SqsToPipesToStepfunctionsProps:
336
342
  :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
343
  :param existing_queue_encryption_key: An optional CMK that will be used by the construct to encrypt the new SQS queue.
338
344
  :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.
345
+ :param existing_state_machine_obj: Optional existing state machine to incorporate into the construct.
339
346
  :param log_group_props: Optional user provided props to override the default props for for the CloudWatchLogs LogGroup.
340
347
  :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
348
  :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.
@@ -343,11 +350,10 @@ class SqsToPipesToStepfunctionsProps:
343
350
  :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
351
  :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
352
  :param queue_props: Optional user provided properties to override the default properties for the SQS queue.
353
+ :param state_machine_props: User provided props for the sfn.StateMachine. This or existingStateMachine is required.
346
354
 
347
355
  :summary: The properties for the SnsToSqs class.
348
356
  '''
349
- if isinstance(state_machine_props, dict):
350
- state_machine_props = _aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps(**state_machine_props)
351
357
  if isinstance(dead_letter_queue_props, dict):
352
358
  dead_letter_queue_props = _aws_cdk_aws_sqs_ceddda9d.QueueProps(**dead_letter_queue_props)
353
359
  if isinstance(log_group_props, dict):
@@ -358,9 +364,10 @@ class SqsToPipesToStepfunctionsProps:
358
364
  queue_encryption_key_props = _aws_cdk_aws_kms_ceddda9d.KeyProps(**queue_encryption_key_props)
359
365
  if isinstance(queue_props, dict):
360
366
  queue_props = _aws_cdk_aws_sqs_ceddda9d.QueueProps(**queue_props)
367
+ if isinstance(state_machine_props, dict):
368
+ state_machine_props = _aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps(**state_machine_props)
361
369
  if __debug__:
362
370
  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
371
  check_type(argname="argument create_cloud_watch_alarms", value=create_cloud_watch_alarms, expected_type=type_hints["create_cloud_watch_alarms"])
365
372
  check_type(argname="argument dead_letter_queue_props", value=dead_letter_queue_props, expected_type=type_hints["dead_letter_queue_props"])
366
373
  check_type(argname="argument deploy_dead_letter_queue", value=deploy_dead_letter_queue, expected_type=type_hints["deploy_dead_letter_queue"])
@@ -369,6 +376,7 @@ class SqsToPipesToStepfunctionsProps:
369
376
  check_type(argname="argument enrichment_state_machine", value=enrichment_state_machine, expected_type=type_hints["enrichment_state_machine"])
370
377
  check_type(argname="argument existing_queue_encryption_key", value=existing_queue_encryption_key, expected_type=type_hints["existing_queue_encryption_key"])
371
378
  check_type(argname="argument existing_queue_obj", value=existing_queue_obj, expected_type=type_hints["existing_queue_obj"])
379
+ check_type(argname="argument existing_state_machine_obj", value=existing_state_machine_obj, expected_type=type_hints["existing_state_machine_obj"])
372
380
  check_type(argname="argument log_group_props", value=log_group_props, expected_type=type_hints["log_group_props"])
373
381
  check_type(argname="argument log_level", value=log_level, expected_type=type_hints["log_level"])
374
382
  check_type(argname="argument max_receive_count", value=max_receive_count, expected_type=type_hints["max_receive_count"])
@@ -376,9 +384,8 @@ class SqsToPipesToStepfunctionsProps:
376
384
  check_type(argname="argument pipe_props", value=pipe_props, expected_type=type_hints["pipe_props"])
377
385
  check_type(argname="argument queue_encryption_key_props", value=queue_encryption_key_props, expected_type=type_hints["queue_encryption_key_props"])
378
386
  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
- }
387
+ check_type(argname="argument state_machine_props", value=state_machine_props, expected_type=type_hints["state_machine_props"])
388
+ self._values: typing.Dict[builtins.str, typing.Any] = {}
382
389
  if create_cloud_watch_alarms is not None:
383
390
  self._values["create_cloud_watch_alarms"] = create_cloud_watch_alarms
384
391
  if dead_letter_queue_props is not None:
@@ -395,6 +402,8 @@ class SqsToPipesToStepfunctionsProps:
395
402
  self._values["existing_queue_encryption_key"] = existing_queue_encryption_key
396
403
  if existing_queue_obj is not None:
397
404
  self._values["existing_queue_obj"] = existing_queue_obj
405
+ if existing_state_machine_obj is not None:
406
+ self._values["existing_state_machine_obj"] = existing_state_machine_obj
398
407
  if log_group_props is not None:
399
408
  self._values["log_group_props"] = log_group_props
400
409
  if log_level is not None:
@@ -409,15 +418,8 @@ class SqsToPipesToStepfunctionsProps:
409
418
  self._values["queue_encryption_key_props"] = queue_encryption_key_props
410
419
  if queue_props is not None:
411
420
  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
+ if state_machine_props is not None:
422
+ self._values["state_machine_props"] = state_machine_props
421
423
 
422
424
  @builtins.property
423
425
  def create_cloud_watch_alarms(self) -> typing.Optional[builtins.bool]:
@@ -504,6 +506,14 @@ class SqsToPipesToStepfunctionsProps:
504
506
  result = self._values.get("existing_queue_obj")
505
507
  return typing.cast(typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue], result)
506
508
 
509
+ @builtins.property
510
+ def existing_state_machine_obj(
511
+ self,
512
+ ) -> typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine]:
513
+ '''Optional existing state machine to incorporate into the construct.'''
514
+ result = self._values.get("existing_state_machine_obj")
515
+ return typing.cast(typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine], result)
516
+
507
517
  @builtins.property
508
518
  def log_group_props(
509
519
  self,
@@ -572,6 +582,14 @@ class SqsToPipesToStepfunctionsProps:
572
582
  result = self._values.get("queue_props")
573
583
  return typing.cast(typing.Optional[_aws_cdk_aws_sqs_ceddda9d.QueueProps], result)
574
584
 
585
+ @builtins.property
586
+ def state_machine_props(
587
+ self,
588
+ ) -> typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps]:
589
+ '''User provided props for the sfn.StateMachine. This or existingStateMachine is required.'''
590
+ result = self._values.get("state_machine_props")
591
+ return typing.cast(typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps], result)
592
+
575
593
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
576
594
  return isinstance(rhs, self.__class__) and rhs._values == self._values
577
595
 
@@ -596,7 +614,6 @@ def _typecheckingstub__ceb1c3c4d051238d574ab5b99dbf3c5e745042f472b80f152d0f11b3d
596
614
  scope: _constructs_77d1e7e8.Construct,
597
615
  id: builtins.str,
598
616
  *,
599
- state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
600
617
  create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
601
618
  dead_letter_queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
602
619
  deploy_dead_letter_queue: typing.Optional[builtins.bool] = None,
@@ -605,6 +622,7 @@ def _typecheckingstub__ceb1c3c4d051238d574ab5b99dbf3c5e745042f472b80f152d0f11b3d
605
622
  enrichment_state_machine: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
606
623
  existing_queue_encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.Key] = None,
607
624
  existing_queue_obj: typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue] = None,
625
+ existing_state_machine_obj: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
608
626
  log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
609
627
  log_level: typing.Optional[_aws_solutions_constructs_core_ac4f6ab9.PipesLogLevel] = None,
610
628
  max_receive_count: typing.Optional[jsii.Number] = None,
@@ -612,13 +630,13 @@ def _typecheckingstub__ceb1c3c4d051238d574ab5b99dbf3c5e745042f472b80f152d0f11b3d
612
630
  pipe_props: typing.Any = None,
613
631
  queue_encryption_key_props: typing.Optional[typing.Union[_aws_cdk_aws_kms_ceddda9d.KeyProps, typing.Dict[builtins.str, typing.Any]]] = None,
614
632
  queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
633
+ state_machine_props: typing.Optional[typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]]] = None,
615
634
  ) -> None:
616
635
  """Type checking stubs"""
617
636
  pass
618
637
 
619
638
  def _typecheckingstub__194e6c5b4126faff541334ee4c6e09b0eb05d31358b8eba12e563e86b30c14c1(
620
639
  *,
621
- state_machine_props: typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]],
622
640
  create_cloud_watch_alarms: typing.Optional[builtins.bool] = None,
623
641
  dead_letter_queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
624
642
  deploy_dead_letter_queue: typing.Optional[builtins.bool] = None,
@@ -627,6 +645,7 @@ def _typecheckingstub__194e6c5b4126faff541334ee4c6e09b0eb05d31358b8eba12e563e86b
627
645
  enrichment_state_machine: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
628
646
  existing_queue_encryption_key: typing.Optional[_aws_cdk_aws_kms_ceddda9d.Key] = None,
629
647
  existing_queue_obj: typing.Optional[_aws_cdk_aws_sqs_ceddda9d.Queue] = None,
648
+ existing_state_machine_obj: typing.Optional[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachine] = None,
630
649
  log_group_props: typing.Optional[typing.Union[_aws_cdk_aws_logs_ceddda9d.LogGroupProps, typing.Dict[builtins.str, typing.Any]]] = None,
631
650
  log_level: typing.Optional[_aws_solutions_constructs_core_ac4f6ab9.PipesLogLevel] = None,
632
651
  max_receive_count: typing.Optional[jsii.Number] = None,
@@ -634,6 +653,7 @@ def _typecheckingstub__194e6c5b4126faff541334ee4c6e09b0eb05d31358b8eba12e563e86b
634
653
  pipe_props: typing.Any = None,
635
654
  queue_encryption_key_props: typing.Optional[typing.Union[_aws_cdk_aws_kms_ceddda9d.KeyProps, typing.Dict[builtins.str, typing.Any]]] = None,
636
655
  queue_props: typing.Optional[typing.Union[_aws_cdk_aws_sqs_ceddda9d.QueueProps, typing.Dict[builtins.str, typing.Any]]] = None,
656
+ state_machine_props: typing.Optional[typing.Union[_aws_cdk_aws_stepfunctions_ceddda9d.StateMachineProps, typing.Dict[builtins.str, typing.Any]]] = None,
637
657
  ) -> None:
638
658
  """Type checking stubs"""
639
659
  pass
@@ -36,9 +36,9 @@ import constructs._jsii
36
36
 
37
37
  __jsii_assembly__ = jsii.JSIIAssembly.load(
38
38
  "@aws-solutions-constructs/aws-sqs-pipes-stepfunctions",
39
- "2.73.0",
39
+ "2.74.0",
40
40
  __name__[0:-6],
41
- "aws-sqs-pipes-stepfunctions@2.73.0.jsii.tgz",
41
+ "aws-sqs-pipes-stepfunctions@2.74.0.jsii.tgz",
42
42
  )
43
43
 
44
44
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: aws-solutions-constructs.aws-sqs-pipes-stepfunctions
3
- Version: 2.73.0
3
+ Version: 2.74.0
4
4
  Summary: CDK Constructs for Amazon SQS to AWS Step Functions via Amazon EventBridge Pipes integration.
5
5
  Home-page: https://github.com/awslabs/aws-solutions-constructs.git
6
6
  Author: Amazon Web Services
@@ -21,8 +21,8 @@ Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
22
  Requires-Dist: aws-cdk-lib<3.0.0,>=2.161.0
23
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
24
+ Requires-Dist: aws-solutions-constructs.core==2.74.0
25
+ Requires-Dist: aws-solutions-constructs.resources==2.74.0
26
26
  Requires-Dist: constructs<11.0.0,>=10.0.0
27
27
  Requires-Dist: jsii<2.0.0,>=1.104.0
28
28
  Requires-Dist: publication>=0.0.3
@@ -0,0 +1,9 @@
1
+ aws_solutions_constructs/aws_sqs_pipes_stepfunctions/__init__.py,sha256=EImLQSH87tIq9JZ2E674DkO65r_SBhnQo7wES4pPNw8,47807
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=4WQ0gHsV4nsabQsiNozsGQ72poMET19qBaJBekveOKk,1636
4
+ aws_solutions_constructs/aws_sqs_pipes_stepfunctions/_jsii/aws-sqs-pipes-stepfunctions@2.74.0.jsii.tgz,sha256=CLWruZ8ZY7KVd8lguFmRCPLWFJ5f9wcP-i5Aob0yO10,133729
5
+ aws_solutions_constructs.aws_sqs_pipes_stepfunctions-2.74.0.dist-info/LICENSE,sha256=wnT4A3LZDAEpNzcPDh8VCH0i4wjvmLJ86l3A0tCINmw,10279
6
+ aws_solutions_constructs.aws_sqs_pipes_stepfunctions-2.74.0.dist-info/METADATA,sha256=w3mfW01aFMkA3itX8u-db77kHSheW7jjmE_ROvHGTag,10848
7
+ aws_solutions_constructs.aws_sqs_pipes_stepfunctions-2.74.0.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
8
+ aws_solutions_constructs.aws_sqs_pipes_stepfunctions-2.74.0.dist-info/top_level.txt,sha256=hi3us_KW7V1ocfOqVsNq1o3w552jCEgu_KsCckqYWsg,25
9
+ aws_solutions_constructs.aws_sqs_pipes_stepfunctions-2.74.0.dist-info/RECORD,,
@@ -1,9 +0,0 @@
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,,