aws-cdk-lib 2.191.0__py3-none-any.whl → 2.193.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.

Potentially problematic release.


This version of aws-cdk-lib might be problematic. Click here for more details.

@@ -8520,6 +8520,7 @@ class IAction(typing_extensions.Protocol):
8520
8520
  *,
8521
8521
  enabled: typing.Optional[builtins.bool] = None,
8522
8522
  event_bus: typing.Optional[_IEventBus_88d13111] = None,
8523
+ role: typing.Optional[_IRole_235f5d8e] = None,
8523
8524
  schedule: typing.Optional[_Schedule_c151d01f] = None,
8524
8525
  targets: typing.Optional[typing.Sequence[_IRuleTarget_7a91f454]] = None,
8525
8526
  cross_stack_scope: typing.Optional[_constructs_77d1e7e8.Construct] = None,
@@ -8533,6 +8534,7 @@ class IAction(typing_extensions.Protocol):
8533
8534
  :param target: the optional target for the Event.
8534
8535
  :param enabled: Indicates whether the rule is enabled. Default: true
8535
8536
  :param event_bus: The event bus to associate with this rule. Default: - The default event bus.
8537
+ :param role: The role that is used for target invocation. Must be assumable by principal ``events.amazonaws.com``. Default: - No role associated
8536
8538
  :param schedule: The schedule or rate (frequency) that determines when EventBridge runs the rule. You must specify this property, the ``eventPattern`` property, or both. For more information, see Schedule Expression Syntax for Rules in the Amazon EventBridge User Guide. Default: - None.
8537
8539
  :param targets: Targets to invoke when this rule matches an event. Input will be the full matched event. If you wish to specify custom target input, use ``addTarget(target[, inputOptions])``. Default: - No targets.
8538
8540
  :param cross_stack_scope: The scope to use if the source of the rule and its target are in different Stacks (but in the same account & region). This helps dealing with cycles that often arise in these situations. Default: - none (the main scope will be used, even for cross-stack Events)
@@ -8594,6 +8596,7 @@ class _IActionProxy:
8594
8596
  *,
8595
8597
  enabled: typing.Optional[builtins.bool] = None,
8596
8598
  event_bus: typing.Optional[_IEventBus_88d13111] = None,
8599
+ role: typing.Optional[_IRole_235f5d8e] = None,
8597
8600
  schedule: typing.Optional[_Schedule_c151d01f] = None,
8598
8601
  targets: typing.Optional[typing.Sequence[_IRuleTarget_7a91f454]] = None,
8599
8602
  cross_stack_scope: typing.Optional[_constructs_77d1e7e8.Construct] = None,
@@ -8607,6 +8610,7 @@ class _IActionProxy:
8607
8610
  :param target: the optional target for the Event.
8608
8611
  :param enabled: Indicates whether the rule is enabled. Default: true
8609
8612
  :param event_bus: The event bus to associate with this rule. Default: - The default event bus.
8613
+ :param role: The role that is used for target invocation. Must be assumable by principal ``events.amazonaws.com``. Default: - No role associated
8610
8614
  :param schedule: The schedule or rate (frequency) that determines when EventBridge runs the rule. You must specify this property, the ``eventPattern`` property, or both. For more information, see Schedule Expression Syntax for Rules in the Amazon EventBridge User Guide. Default: - None.
8611
8615
  :param targets: Targets to invoke when this rule matches an event. Input will be the full matched event. If you wish to specify custom target input, use ``addTarget(target[, inputOptions])``. Default: - No targets.
8612
8616
  :param cross_stack_scope: The scope to use if the source of the rule and its target are in different Stacks (but in the same account & region). This helps dealing with cycles that often arise in these situations. Default: - none (the main scope will be used, even for cross-stack Events)
@@ -8621,6 +8625,7 @@ class _IActionProxy:
8621
8625
  options = _RuleProps_11ecd19e(
8622
8626
  enabled=enabled,
8623
8627
  event_bus=event_bus,
8628
+ role=role,
8624
8629
  schedule=schedule,
8625
8630
  targets=targets,
8626
8631
  cross_stack_scope=cross_stack_scope,
@@ -9154,6 +9159,7 @@ class IStage(typing_extensions.Protocol):
9154
9159
  *,
9155
9160
  enabled: typing.Optional[builtins.bool] = None,
9156
9161
  event_bus: typing.Optional[_IEventBus_88d13111] = None,
9162
+ role: typing.Optional[_IRole_235f5d8e] = None,
9157
9163
  schedule: typing.Optional[_Schedule_c151d01f] = None,
9158
9164
  targets: typing.Optional[typing.Sequence[_IRuleTarget_7a91f454]] = None,
9159
9165
  cross_stack_scope: typing.Optional[_constructs_77d1e7e8.Construct] = None,
@@ -9166,6 +9172,7 @@ class IStage(typing_extensions.Protocol):
9166
9172
  :param target: -
9167
9173
  :param enabled: Indicates whether the rule is enabled. Default: true
9168
9174
  :param event_bus: The event bus to associate with this rule. Default: - The default event bus.
9175
+ :param role: The role that is used for target invocation. Must be assumable by principal ``events.amazonaws.com``. Default: - No role associated
9169
9176
  :param schedule: The schedule or rate (frequency) that determines when EventBridge runs the rule. You must specify this property, the ``eventPattern`` property, or both. For more information, see Schedule Expression Syntax for Rules in the Amazon EventBridge User Guide. Default: - None.
9170
9177
  :param targets: Targets to invoke when this rule matches an event. Input will be the full matched event. If you wish to specify custom target input, use ``addTarget(target[, inputOptions])``. Default: - No targets.
9171
9178
  :param cross_stack_scope: The scope to use if the source of the rule and its target are in different Stacks (but in the same account & region). This helps dealing with cycles that often arise in these situations. Default: - none (the main scope will be used, even for cross-stack Events)
@@ -9216,6 +9223,7 @@ class _IStageProxy:
9216
9223
  *,
9217
9224
  enabled: typing.Optional[builtins.bool] = None,
9218
9225
  event_bus: typing.Optional[_IEventBus_88d13111] = None,
9226
+ role: typing.Optional[_IRole_235f5d8e] = None,
9219
9227
  schedule: typing.Optional[_Schedule_c151d01f] = None,
9220
9228
  targets: typing.Optional[typing.Sequence[_IRuleTarget_7a91f454]] = None,
9221
9229
  cross_stack_scope: typing.Optional[_constructs_77d1e7e8.Construct] = None,
@@ -9228,6 +9236,7 @@ class _IStageProxy:
9228
9236
  :param target: -
9229
9237
  :param enabled: Indicates whether the rule is enabled. Default: true
9230
9238
  :param event_bus: The event bus to associate with this rule. Default: - The default event bus.
9239
+ :param role: The role that is used for target invocation. Must be assumable by principal ``events.amazonaws.com``. Default: - No role associated
9231
9240
  :param schedule: The schedule or rate (frequency) that determines when EventBridge runs the rule. You must specify this property, the ``eventPattern`` property, or both. For more information, see Schedule Expression Syntax for Rules in the Amazon EventBridge User Guide. Default: - None.
9232
9241
  :param targets: Targets to invoke when this rule matches an event. Input will be the full matched event. If you wish to specify custom target input, use ``addTarget(target[, inputOptions])``. Default: - No targets.
9233
9242
  :param cross_stack_scope: The scope to use if the source of the rule and its target are in different Stacks (but in the same account & region). This helps dealing with cycles that often arise in these situations. Default: - none (the main scope will be used, even for cross-stack Events)
@@ -9242,6 +9251,7 @@ class _IStageProxy:
9242
9251
  options = _RuleProps_11ecd19e(
9243
9252
  enabled=enabled,
9244
9253
  event_bus=event_bus,
9254
+ role=role,
9245
9255
  schedule=schedule,
9246
9256
  targets=targets,
9247
9257
  cross_stack_scope=cross_stack_scope,
@@ -11465,6 +11475,7 @@ class Action(
11465
11475
  *,
11466
11476
  enabled: typing.Optional[builtins.bool] = None,
11467
11477
  event_bus: typing.Optional[_IEventBus_88d13111] = None,
11478
+ role: typing.Optional[_IRole_235f5d8e] = None,
11468
11479
  schedule: typing.Optional[_Schedule_c151d01f] = None,
11469
11480
  targets: typing.Optional[typing.Sequence[_IRuleTarget_7a91f454]] = None,
11470
11481
  cross_stack_scope: typing.Optional[_constructs_77d1e7e8.Construct] = None,
@@ -11478,6 +11489,7 @@ class Action(
11478
11489
  :param target: -
11479
11490
  :param enabled: Indicates whether the rule is enabled. Default: true
11480
11491
  :param event_bus: The event bus to associate with this rule. Default: - The default event bus.
11492
+ :param role: The role that is used for target invocation. Must be assumable by principal ``events.amazonaws.com``. Default: - No role associated
11481
11493
  :param schedule: The schedule or rate (frequency) that determines when EventBridge runs the rule. You must specify this property, the ``eventPattern`` property, or both. For more information, see Schedule Expression Syntax for Rules in the Amazon EventBridge User Guide. Default: - None.
11482
11494
  :param targets: Targets to invoke when this rule matches an event. Input will be the full matched event. If you wish to specify custom target input, use ``addTarget(target[, inputOptions])``. Default: - No targets.
11483
11495
  :param cross_stack_scope: The scope to use if the source of the rule and its target are in different Stacks (but in the same account & region). This helps dealing with cycles that often arise in these situations. Default: - none (the main scope will be used, even for cross-stack Events)
@@ -11492,6 +11504,7 @@ class Action(
11492
11504
  options = _RuleProps_11ecd19e(
11493
11505
  enabled=enabled,
11494
11506
  event_bus=event_bus,
11507
+ role=role,
11495
11508
  schedule=schedule,
11496
11509
  targets=targets,
11497
11510
  cross_stack_scope=cross_stack_scope,
@@ -12609,6 +12622,7 @@ def _typecheckingstub__eade87f30c22d51a2286b3ee64e16e90fb0a8ea80f7298a87d888c798
12609
12622
  *,
12610
12623
  enabled: typing.Optional[builtins.bool] = None,
12611
12624
  event_bus: typing.Optional[_IEventBus_88d13111] = None,
12625
+ role: typing.Optional[_IRole_235f5d8e] = None,
12612
12626
  schedule: typing.Optional[_Schedule_c151d01f] = None,
12613
12627
  targets: typing.Optional[typing.Sequence[_IRuleTarget_7a91f454]] = None,
12614
12628
  cross_stack_scope: typing.Optional[_constructs_77d1e7e8.Construct] = None,
@@ -12716,6 +12730,7 @@ def _typecheckingstub__0ba37766e87b23b98a0021d06208be5996c1efd9e28f67b66f737bdc2
12716
12730
  *,
12717
12731
  enabled: typing.Optional[builtins.bool] = None,
12718
12732
  event_bus: typing.Optional[_IEventBus_88d13111] = None,
12733
+ role: typing.Optional[_IRole_235f5d8e] = None,
12719
12734
  schedule: typing.Optional[_Schedule_c151d01f] = None,
12720
12735
  targets: typing.Optional[typing.Sequence[_IRuleTarget_7a91f454]] = None,
12721
12736
  cross_stack_scope: typing.Optional[_constructs_77d1e7e8.Construct] = None,
@@ -12964,6 +12979,7 @@ def _typecheckingstub__8c29cd3253c1a51c9fbbe36fbb102b2f0cef595e0d8fa41e7ec1e9e03
12964
12979
  *,
12965
12980
  enabled: typing.Optional[builtins.bool] = None,
12966
12981
  event_bus: typing.Optional[_IEventBus_88d13111] = None,
12982
+ role: typing.Optional[_IRole_235f5d8e] = None,
12967
12983
  schedule: typing.Optional[_Schedule_c151d01f] = None,
12968
12984
  targets: typing.Optional[typing.Sequence[_IRuleTarget_7a91f454]] = None,
12969
12985
  cross_stack_scope: typing.Optional[_constructs_77d1e7e8.Construct] = None,