aws-cdk-lib 2.185.0__py3-none-any.whl → 2.186.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.
- aws_cdk/__init__.py +102 -29
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.185.0.jsii.tgz → aws-cdk-lib@2.186.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +3 -2
- aws_cdk/aws_apigatewayv2/__init__.py +9 -0
- aws_cdk/aws_appconfig/__init__.py +3 -3
- aws_cdk/aws_applicationsignals/__init__.py +363 -3
- aws_cdk/aws_appsync/__init__.py +65 -3
- aws_cdk/aws_bedrock/__init__.py +385 -14
- aws_cdk/aws_cleanrooms/__init__.py +21 -9
- aws_cdk/aws_cloudformation/__init__.py +1 -5
- aws_cdk/aws_cloudfront/__init__.py +4 -1
- aws_cdk/aws_cloudfront_origins/__init__.py +4 -2
- aws_cdk/aws_codeartifact/__init__.py +20 -33
- aws_cdk/aws_codepipeline/__init__.py +1328 -120
- aws_cdk/aws_cognito/__init__.py +1 -1
- aws_cdk/aws_cognito_identitypool/__init__.py +2303 -0
- aws_cdk/aws_connect/__init__.py +3 -7
- aws_cdk/aws_controltower/__init__.py +18 -26
- aws_cdk/aws_datazone/__init__.py +3471 -2
- aws_cdk/aws_ec2/__init__.py +560 -25
- aws_cdk/aws_ecs/__init__.py +15 -20
- aws_cdk/aws_events/__init__.py +37 -14
- aws_cdk/aws_gamelift/__init__.py +5 -5
- aws_cdk/aws_iam/__init__.py +264 -0
- aws_cdk/aws_imagebuilder/__init__.py +3 -27
- aws_cdk/aws_kinesisfirehose/__init__.py +2 -3
- aws_cdk/aws_lambda/__init__.py +7 -1
- aws_cdk/aws_location/__init__.py +24 -7
- aws_cdk/aws_msk/__init__.py +8 -2
- aws_cdk/aws_networkfirewall/__init__.py +16 -12
- aws_cdk/aws_oam/__init__.py +8 -37
- aws_cdk/aws_quicksight/__init__.py +6 -69
- aws_cdk/aws_redshiftserverless/__init__.py +192 -15
- aws_cdk/aws_rum/__init__.py +315 -52
- aws_cdk/aws_scheduler/__init__.py +3944 -121
- aws_cdk/aws_scheduler_targets/__init__.py +4472 -0
- aws_cdk/aws_ssmquicksetup/__init__.py +5 -3
- aws_cdk/aws_stepfunctions/__init__.py +17 -15
- aws_cdk/aws_timestream/__init__.py +4 -4
- aws_cdk/aws_wafv2/__init__.py +345 -0
- aws_cdk/aws_workspacesthinclient/__init__.py +4 -4
- aws_cdk/cx_api/__init__.py +23 -0
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/RECORD +49 -47
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.185.0.dist-info → aws_cdk_lib-2.186.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_connect/__init__.py
CHANGED
|
@@ -794,9 +794,7 @@ class CfnContactFlow(
|
|
|
794
794
|
@builtins.property
|
|
795
795
|
@jsii.member(jsii_name="attrContactFlowArn")
|
|
796
796
|
def attr_contact_flow_arn(self) -> builtins.str:
|
|
797
|
-
'''``Ref`` returns the Amazon Resource Name (ARN) of the flow.
|
|
798
|
-
|
|
799
|
-
``{ "Ref": "myFlowArn" }``
|
|
797
|
+
'''``Ref`` returns the Amazon Resource Name (ARN) of the flow.
|
|
800
798
|
|
|
801
799
|
:cloudformationAttribute: ContactFlowArn
|
|
802
800
|
'''
|
|
@@ -1008,9 +1006,7 @@ class CfnContactFlowModule(
|
|
|
1008
1006
|
@builtins.property
|
|
1009
1007
|
@jsii.member(jsii_name="attrContactFlowModuleArn")
|
|
1010
1008
|
def attr_contact_flow_module_arn(self) -> builtins.str:
|
|
1011
|
-
'''``Ref`` returns the Amazon Resource Name (ARN) of the flow module.
|
|
1012
|
-
|
|
1013
|
-
``{ "Ref": "myFlowModuleArn" }``
|
|
1009
|
+
'''``Ref`` returns the Amazon Resource Name (ARN) of the flow module.
|
|
1014
1010
|
|
|
1015
1011
|
:cloudformationAttribute: ContactFlowModuleArn
|
|
1016
1012
|
'''
|
|
@@ -1510,7 +1506,7 @@ class CfnContactFlowVersion(
|
|
|
1510
1506
|
@builtins.property
|
|
1511
1507
|
@jsii.member(jsii_name="attrContactFlowVersionArn")
|
|
1512
1508
|
def attr_contact_flow_version_arn(self) -> builtins.str:
|
|
1513
|
-
'''The Amazon Resource Name (ARN) of the
|
|
1509
|
+
'''The Amazon Resource Name (ARN) of the flow version.
|
|
1514
1510
|
|
|
1515
1511
|
:cloudformationAttribute: ContactFlowVersionARN
|
|
1516
1512
|
'''
|
|
@@ -75,7 +75,7 @@ class CfnEnabledBaseline(
|
|
|
75
75
|
metaclass=jsii.JSIIMeta,
|
|
76
76
|
jsii_type="aws-cdk-lib.aws_controltower.CfnEnabledBaseline",
|
|
77
77
|
):
|
|
78
|
-
'''
|
|
78
|
+
'''Definition of AWS::ControlTower::EnabledBaseline Resource Type.
|
|
79
79
|
|
|
80
80
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html
|
|
81
81
|
:cloudformationResource: AWS::ControlTower::EnabledBaseline
|
|
@@ -123,8 +123,8 @@ class CfnEnabledBaseline(
|
|
|
123
123
|
:param baseline_identifier: The specific ``Baseline`` enabled as part of the ``EnabledBaseline`` resource.
|
|
124
124
|
:param baseline_version: The enabled version of the ``Baseline`` .
|
|
125
125
|
:param target_identifier: The target on which to enable the ``Baseline`` .
|
|
126
|
-
:param parameters:
|
|
127
|
-
:param tags:
|
|
126
|
+
:param parameters: Shows the parameters that are applied when enabling this ``Baseline`` .
|
|
127
|
+
:param tags:
|
|
128
128
|
'''
|
|
129
129
|
if __debug__:
|
|
130
130
|
type_hints = typing.get_type_hints(_typecheckingstub__1ea8761029fec1b3c1fb5fb985be9ac741a889e29fe3445cfb5a962436cab528)
|
|
@@ -173,8 +173,7 @@ class CfnEnabledBaseline(
|
|
|
173
173
|
@builtins.property
|
|
174
174
|
@jsii.member(jsii_name="attrEnabledBaselineIdentifier")
|
|
175
175
|
def attr_enabled_baseline_identifier(self) -> builtins.str:
|
|
176
|
-
'''
|
|
177
|
-
|
|
176
|
+
'''
|
|
178
177
|
:cloudformationAttribute: EnabledBaselineIdentifier
|
|
179
178
|
'''
|
|
180
179
|
return typing.cast(builtins.str, jsii.get(self, "attrEnabledBaselineIdentifier"))
|
|
@@ -234,7 +233,7 @@ class CfnEnabledBaseline(
|
|
|
234
233
|
def parameters(
|
|
235
234
|
self,
|
|
236
235
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnEnabledBaseline.ParameterProperty"]]]]:
|
|
237
|
-
'''
|
|
236
|
+
'''Shows the parameters that are applied when enabling this ``Baseline`` .'''
|
|
238
237
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnEnabledBaseline.ParameterProperty"]]]], jsii.get(self, "parameters"))
|
|
239
238
|
|
|
240
239
|
@parameters.setter
|
|
@@ -250,7 +249,6 @@ class CfnEnabledBaseline(
|
|
|
250
249
|
@builtins.property
|
|
251
250
|
@jsii.member(jsii_name="tags")
|
|
252
251
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
253
|
-
'''Tags associated with input to ``EnableBaseline`` .'''
|
|
254
252
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
255
253
|
|
|
256
254
|
@tags.setter
|
|
@@ -272,10 +270,9 @@ class CfnEnabledBaseline(
|
|
|
272
270
|
key: typing.Optional[builtins.str] = None,
|
|
273
271
|
value: typing.Any = None,
|
|
274
272
|
) -> None:
|
|
275
|
-
'''
|
|
276
|
-
|
|
277
|
-
:param
|
|
278
|
-
:param value: A low-level ``Document`` object of any type (for example, a Java Object).
|
|
273
|
+
'''
|
|
274
|
+
:param key:
|
|
275
|
+
:param value:
|
|
279
276
|
|
|
280
277
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-controltower-enabledbaseline-parameter.html
|
|
281
278
|
:exampleMetadata: fixture=_generated
|
|
@@ -305,8 +302,7 @@ class CfnEnabledBaseline(
|
|
|
305
302
|
|
|
306
303
|
@builtins.property
|
|
307
304
|
def key(self) -> typing.Optional[builtins.str]:
|
|
308
|
-
'''
|
|
309
|
-
|
|
305
|
+
'''
|
|
310
306
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-controltower-enabledbaseline-parameter.html#cfn-controltower-enabledbaseline-parameter-key
|
|
311
307
|
'''
|
|
312
308
|
result = self._values.get("key")
|
|
@@ -314,8 +310,7 @@ class CfnEnabledBaseline(
|
|
|
314
310
|
|
|
315
311
|
@builtins.property
|
|
316
312
|
def value(self) -> typing.Any:
|
|
317
|
-
'''
|
|
318
|
-
|
|
313
|
+
'''
|
|
319
314
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-controltower-enabledbaseline-parameter.html#cfn-controltower-enabledbaseline-parameter-value
|
|
320
315
|
'''
|
|
321
316
|
result = self._values.get("value")
|
|
@@ -359,8 +354,8 @@ class CfnEnabledBaselineProps:
|
|
|
359
354
|
:param baseline_identifier: The specific ``Baseline`` enabled as part of the ``EnabledBaseline`` resource.
|
|
360
355
|
:param baseline_version: The enabled version of the ``Baseline`` .
|
|
361
356
|
:param target_identifier: The target on which to enable the ``Baseline`` .
|
|
362
|
-
:param parameters:
|
|
363
|
-
:param tags:
|
|
357
|
+
:param parameters: Shows the parameters that are applied when enabling this ``Baseline`` .
|
|
358
|
+
:param tags:
|
|
364
359
|
|
|
365
360
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html
|
|
366
361
|
:exampleMetadata: fixture=_generated
|
|
@@ -440,9 +435,7 @@ class CfnEnabledBaselineProps:
|
|
|
440
435
|
def parameters(
|
|
441
436
|
self,
|
|
442
437
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnEnabledBaseline.ParameterProperty]]]]:
|
|
443
|
-
'''
|
|
444
|
-
|
|
445
|
-
These parameters configure the behavior of the baseline.
|
|
438
|
+
'''Shows the parameters that are applied when enabling this ``Baseline`` .
|
|
446
439
|
|
|
447
440
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html#cfn-controltower-enabledbaseline-parameters
|
|
448
441
|
'''
|
|
@@ -451,8 +444,7 @@ class CfnEnabledBaselineProps:
|
|
|
451
444
|
|
|
452
445
|
@builtins.property
|
|
453
446
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
454
|
-
'''
|
|
455
|
-
|
|
447
|
+
'''
|
|
456
448
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledbaseline.html#cfn-controltower-enabledbaseline-tags
|
|
457
449
|
'''
|
|
458
450
|
result = self._values.get("tags")
|
|
@@ -524,7 +516,7 @@ class CfnEnabledControl(
|
|
|
524
516
|
:param control_identifier: The ARN of the control. Only *Strongly recommended* and *Elective* controls are permitted, with the exception of the *Region deny* control. For information on how to find the ``controlIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
|
|
525
517
|
:param target_identifier: The ARN of the organizational unit. For information on how to find the ``targetIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
|
|
526
518
|
:param parameters: Array of ``EnabledControlParameter`` objects.
|
|
527
|
-
:param tags:
|
|
519
|
+
:param tags: A set of tags to assign to the enabled control.
|
|
528
520
|
'''
|
|
529
521
|
if __debug__:
|
|
530
522
|
type_hints = typing.get_type_hints(_typecheckingstub__1f147c3cf3aed5100105feba92fb41fa040a90e250e566c4f852830a75cfc586)
|
|
@@ -627,7 +619,7 @@ class CfnEnabledControl(
|
|
|
627
619
|
@builtins.property
|
|
628
620
|
@jsii.member(jsii_name="tags")
|
|
629
621
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
630
|
-
'''
|
|
622
|
+
'''A set of tags to assign to the enabled control.'''
|
|
631
623
|
return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
|
|
632
624
|
|
|
633
625
|
@tags.setter
|
|
@@ -736,7 +728,7 @@ class CfnEnabledControlProps:
|
|
|
736
728
|
:param control_identifier: The ARN of the control. Only *Strongly recommended* and *Elective* controls are permitted, with the exception of the *Region deny* control. For information on how to find the ``controlIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
|
|
737
729
|
:param target_identifier: The ARN of the organizational unit. For information on how to find the ``targetIdentifier`` , see `the overview page <https://docs.aws.amazon.com//controltower/latest/APIReference/Welcome.html>`_ .
|
|
738
730
|
:param parameters: Array of ``EnabledControlParameter`` objects.
|
|
739
|
-
:param tags:
|
|
731
|
+
:param tags: A set of tags to assign to the enabled control.
|
|
740
732
|
|
|
741
733
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledcontrol.html
|
|
742
734
|
:exampleMetadata: fixture=_generated
|
|
@@ -816,7 +808,7 @@ class CfnEnabledControlProps:
|
|
|
816
808
|
|
|
817
809
|
@builtins.property
|
|
818
810
|
def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
|
|
819
|
-
'''
|
|
811
|
+
'''A set of tags to assign to the enabled control.
|
|
820
812
|
|
|
821
813
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-controltower-enabledcontrol.html#cfn-controltower-enabledcontrol-tags
|
|
822
814
|
'''
|