aws-cdk-lib 2.136.1__py3-none-any.whl → 2.138.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 +8 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.136.1.jsii.tgz → aws-cdk-lib@2.138.0.jsii.tgz} +0 -0
- aws_cdk/assertions/__init__.py +152 -5
- aws_cdk/aws_amplify/__init__.py +29 -113
- aws_cdk/aws_appconfig/__init__.py +26 -33
- aws_cdk/aws_apprunner/__init__.py +5 -2
- aws_cdk/aws_appsync/__init__.py +400 -13
- aws_cdk/aws_aps/__init__.py +64 -47
- aws_cdk/aws_b2bi/__init__.py +2 -6
- aws_cdk/aws_backup/__init__.py +27 -23
- aws_cdk/aws_batch/__init__.py +103 -0
- aws_cdk/aws_bcmdataexports/__init__.py +1114 -0
- aws_cdk/aws_chatbot/__init__.py +6 -4
- aws_cdk/aws_cleanrooms/__init__.py +526 -3
- aws_cdk/aws_cleanroomsml/__init__.py +960 -0
- aws_cdk/aws_cloudfront/__init__.py +196 -15
- aws_cdk/aws_cloudtrail/__init__.py +10 -10
- aws_cdk/aws_cloudwatch/__init__.py +124 -8
- aws_cdk/aws_codebuild/__init__.py +27 -22
- aws_cdk/aws_codeconnections/__init__.py +435 -0
- aws_cdk/aws_cognito/__init__.py +175 -79
- aws_cdk/aws_deadline/__init__.py +5394 -0
- aws_cdk/aws_ec2/__init__.py +379 -173
- aws_cdk/aws_ecr_assets/__init__.py +3 -4
- aws_cdk/aws_ecs/__init__.py +240 -1
- aws_cdk/aws_efs/__init__.py +2 -2
- aws_cdk/aws_elasticache/__init__.py +86 -32
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +275 -5
- aws_cdk/aws_emr/__init__.py +2 -2
- aws_cdk/aws_entityresolution/__init__.py +1982 -773
- aws_cdk/aws_globalaccelerator/__init__.py +443 -0
- aws_cdk/aws_iam/__init__.py +24 -40
- aws_cdk/aws_internetmonitor/__init__.py +14 -6
- aws_cdk/aws_ivs/__init__.py +1273 -71
- aws_cdk/aws_kms/__init__.py +8 -13
- aws_cdk/aws_mediatailor/__init__.py +41 -0
- aws_cdk/aws_personalize/__init__.py +8 -6
- aws_cdk/aws_pinpoint/__init__.py +5 -3
- aws_cdk/aws_pipes/__init__.py +5 -1
- aws_cdk/aws_quicksight/__init__.py +12 -6
- aws_cdk/aws_rds/__init__.py +355 -85
- aws_cdk/aws_route53/__init__.py +591 -18
- aws_cdk/aws_s3_deployment/__init__.py +84 -7
- aws_cdk/aws_sagemaker/__init__.py +233 -2
- aws_cdk/aws_securityhub/__init__.py +4940 -102
- aws_cdk/aws_securitylake/__init__.py +1237 -55
- aws_cdk/aws_sns/__init__.py +183 -4
- aws_cdk/aws_ssmcontacts/__init__.py +11 -4
- aws_cdk/aws_stepfunctions/__init__.py +8 -16
- aws_cdk/aws_stepfunctions_tasks/__init__.py +676 -1
- aws_cdk/aws_transfer/__init__.py +4 -4
- aws_cdk/aws_verifiedpermissions/__init__.py +114 -37
- aws_cdk/aws_workspacesthinclient/__init__.py +8 -8
- aws_cdk/custom_resources/__init__.py +248 -26
- {aws_cdk_lib-2.136.1.dist-info → aws_cdk_lib-2.138.0.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.136.1.dist-info → aws_cdk_lib-2.138.0.dist-info}/RECORD +61 -57
- {aws_cdk_lib-2.136.1.dist-info → aws_cdk_lib-2.138.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.136.1.dist-info → aws_cdk_lib-2.138.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.136.1.dist-info → aws_cdk_lib-2.138.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.136.1.dist-info → aws_cdk_lib-2.138.0.dist-info}/top_level.txt +0 -0
|
@@ -942,7 +942,7 @@ class CfnApplication(
|
|
|
942
942
|
- Create an application
|
|
943
943
|
- Create an environment
|
|
944
944
|
- Create a configuration profile
|
|
945
|
-
-
|
|
945
|
+
- Choose a pre-defined deployment strategy or create your own
|
|
946
946
|
- Deploy the configuration
|
|
947
947
|
|
|
948
948
|
For more information, see `AWS AppConfig <https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html>`_ in the *AWS AppConfig User Guide* .
|
|
@@ -1196,7 +1196,7 @@ class CfnConfigurationProfile(
|
|
|
1196
1196
|
- Create an application
|
|
1197
1197
|
- Create an environment
|
|
1198
1198
|
- Create a configuration profile
|
|
1199
|
-
-
|
|
1199
|
+
- Choose a pre-defined deployment strategy or create your own
|
|
1200
1200
|
- Deploy the configuration
|
|
1201
1201
|
|
|
1202
1202
|
For more information, see `AWS AppConfig <https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html>`_ in the *AWS AppConfig User Guide* .
|
|
@@ -1322,7 +1322,7 @@ class CfnConfigurationProfile(
|
|
|
1322
1322
|
def attr_kms_key_arn(self) -> builtins.str:
|
|
1323
1323
|
'''The Amazon Resource Name of the AWS Key Management Service key to encrypt new configuration data versions in the AWS AppConfig hosted configuration store.
|
|
1324
1324
|
|
|
1325
|
-
This attribute is only used for hosted configuration types. To encrypt data managed in other configuration stores, see the documentation for how to specify an AWS KMS key for that particular service.
|
|
1325
|
+
This attribute is only used for ``hosted`` configuration types. To encrypt data managed in other configuration stores, see the documentation for how to specify an AWS KMS key for that particular service.
|
|
1326
1326
|
|
|
1327
1327
|
:cloudformationAttribute: KmsKeyArn
|
|
1328
1328
|
'''
|
|
@@ -1770,7 +1770,7 @@ class CfnDeployment(
|
|
|
1770
1770
|
- Create an application
|
|
1771
1771
|
- Create an environment
|
|
1772
1772
|
- Create a configuration profile
|
|
1773
|
-
-
|
|
1773
|
+
- Choose a pre-defined deployment strategy or create your own
|
|
1774
1774
|
- Deploy the configuration
|
|
1775
1775
|
|
|
1776
1776
|
For more information, see `AWS AppConfig <https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html>`_ in the *AWS AppConfig User Guide* .
|
|
@@ -1831,7 +1831,7 @@ class CfnDeployment(
|
|
|
1831
1831
|
:param deployment_strategy_id: The deployment strategy ID.
|
|
1832
1832
|
:param environment_id: The environment ID.
|
|
1833
1833
|
:param description: A description of the deployment.
|
|
1834
|
-
:param dynamic_extension_parameters:
|
|
1834
|
+
:param dynamic_extension_parameters: A map of dynamic extension parameter names to values to pass to associated extensions with ``PRE_START_DEPLOYMENT`` actions.
|
|
1835
1835
|
:param kms_key_identifier: The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
|
|
1836
1836
|
:param tags: Metadata to assign to the deployment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
|
|
1837
1837
|
'''
|
|
@@ -1985,7 +1985,7 @@ class CfnDeployment(
|
|
|
1985
1985
|
def dynamic_extension_parameters(
|
|
1986
1986
|
self,
|
|
1987
1987
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDeployment.DynamicExtensionParametersProperty"]]]]:
|
|
1988
|
-
'''
|
|
1988
|
+
'''A map of dynamic extension parameter names to values to pass to associated extensions with ``PRE_START_DEPLOYMENT`` actions.'''
|
|
1989
1989
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnDeployment.DynamicExtensionParametersProperty"]]]], jsii.get(self, "dynamicExtensionParameters"))
|
|
1990
1990
|
|
|
1991
1991
|
@dynamic_extension_parameters.setter
|
|
@@ -2041,10 +2041,11 @@ class CfnDeployment(
|
|
|
2041
2041
|
parameter_name: typing.Optional[builtins.str] = None,
|
|
2042
2042
|
parameter_value: typing.Optional[builtins.str] = None,
|
|
2043
2043
|
) -> None:
|
|
2044
|
-
'''
|
|
2045
|
-
|
|
2046
|
-
:param
|
|
2047
|
-
:param
|
|
2044
|
+
'''A map of dynamic extension parameter names to values to pass to associated extensions with ``PRE_START_DEPLOYMENT`` actions.
|
|
2045
|
+
|
|
2046
|
+
:param extension_reference: The ARN or ID of the extension for which you are inserting a dynamic parameter.
|
|
2047
|
+
:param parameter_name: The parameter name.
|
|
2048
|
+
:param parameter_value: The parameter value.
|
|
2048
2049
|
|
|
2049
2050
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.html
|
|
2050
2051
|
:exampleMetadata: fixture=_generated
|
|
@@ -2076,7 +2077,8 @@ class CfnDeployment(
|
|
|
2076
2077
|
|
|
2077
2078
|
@builtins.property
|
|
2078
2079
|
def extension_reference(self) -> typing.Optional[builtins.str]:
|
|
2079
|
-
'''
|
|
2080
|
+
'''The ARN or ID of the extension for which you are inserting a dynamic parameter.
|
|
2081
|
+
|
|
2080
2082
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.html#cfn-appconfig-deployment-dynamicextensionparameters-extensionreference
|
|
2081
2083
|
'''
|
|
2082
2084
|
result = self._values.get("extension_reference")
|
|
@@ -2084,7 +2086,8 @@ class CfnDeployment(
|
|
|
2084
2086
|
|
|
2085
2087
|
@builtins.property
|
|
2086
2088
|
def parameter_name(self) -> typing.Optional[builtins.str]:
|
|
2087
|
-
'''
|
|
2089
|
+
'''The parameter name.
|
|
2090
|
+
|
|
2088
2091
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.html#cfn-appconfig-deployment-dynamicextensionparameters-parametername
|
|
2089
2092
|
'''
|
|
2090
2093
|
result = self._values.get("parameter_name")
|
|
@@ -2092,7 +2095,8 @@ class CfnDeployment(
|
|
|
2092
2095
|
|
|
2093
2096
|
@builtins.property
|
|
2094
2097
|
def parameter_value(self) -> typing.Optional[builtins.str]:
|
|
2095
|
-
'''
|
|
2098
|
+
'''The parameter value.
|
|
2099
|
+
|
|
2096
2100
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-deployment-dynamicextensionparameters.html#cfn-appconfig-deployment-dynamicextensionparameters-parametervalue
|
|
2097
2101
|
'''
|
|
2098
2102
|
result = self._values.get("parameter_value")
|
|
@@ -2147,7 +2151,7 @@ class CfnDeploymentProps:
|
|
|
2147
2151
|
:param deployment_strategy_id: The deployment strategy ID.
|
|
2148
2152
|
:param environment_id: The environment ID.
|
|
2149
2153
|
:param description: A description of the deployment.
|
|
2150
|
-
:param dynamic_extension_parameters:
|
|
2154
|
+
:param dynamic_extension_parameters: A map of dynamic extension parameter names to values to pass to associated extensions with ``PRE_START_DEPLOYMENT`` actions.
|
|
2151
2155
|
:param kms_key_identifier: The AWS Key Management Service key identifier (key ID, key alias, or key ARN) provided when the resource was created or updated.
|
|
2152
2156
|
:param tags: Metadata to assign to the deployment. Tags help organize and categorize your AWS AppConfig resources. Each tag consists of a key and an optional value, both of which you define.
|
|
2153
2157
|
|
|
@@ -2273,9 +2277,7 @@ class CfnDeploymentProps:
|
|
|
2273
2277
|
def dynamic_extension_parameters(
|
|
2274
2278
|
self,
|
|
2275
2279
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDeployment.DynamicExtensionParametersProperty]]]]:
|
|
2276
|
-
'''
|
|
2277
|
-
|
|
2278
|
-
You specify parameter values when you associate the extension to an AWS AppConfig resource by using the ``CreateExtensionAssociation`` API action. For AWS Lambda extension actions, these parameters are included in the Lambda request object.
|
|
2280
|
+
'''A map of dynamic extension parameter names to values to pass to associated extensions with ``PRE_START_DEPLOYMENT`` actions.
|
|
2279
2281
|
|
|
2280
2282
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-deployment.html#cfn-appconfig-deployment-dynamicextensionparameters
|
|
2281
2283
|
'''
|
|
@@ -2329,7 +2331,7 @@ class CfnDeploymentStrategy(
|
|
|
2329
2331
|
- Create an application
|
|
2330
2332
|
- Create an environment
|
|
2331
2333
|
- Create a configuration profile
|
|
2332
|
-
-
|
|
2334
|
+
- Choose a pre-defined deployment strategy or create your own
|
|
2333
2335
|
- Deploy the configuration
|
|
2334
2336
|
|
|
2335
2337
|
For more information, see `AWS AppConfig <https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html>`_ in the *AWS AppConfig User Guide* .
|
|
@@ -2437,7 +2439,8 @@ class CfnDeploymentStrategy(
|
|
|
2437
2439
|
@builtins.property
|
|
2438
2440
|
@jsii.member(jsii_name="attrId")
|
|
2439
2441
|
def attr_id(self) -> builtins.str:
|
|
2440
|
-
'''
|
|
2442
|
+
'''The deployment strategy ID.
|
|
2443
|
+
|
|
2441
2444
|
:cloudformationAttribute: Id
|
|
2442
2445
|
'''
|
|
2443
2446
|
return typing.cast(builtins.str, jsii.get(self, "attrId"))
|
|
@@ -2768,7 +2771,7 @@ class CfnEnvironment(
|
|
|
2768
2771
|
- Create an application
|
|
2769
2772
|
- Create an environment
|
|
2770
2773
|
- Create a configuration profile
|
|
2771
|
-
-
|
|
2774
|
+
- Choose a pre-defined deployment strategy or create your own
|
|
2772
2775
|
- Deploy the configuration
|
|
2773
2776
|
|
|
2774
2777
|
For more information, see `AWS AppConfig <https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html>`_ in the *AWS AppConfig User Guide* .
|
|
@@ -3490,21 +3493,11 @@ class CfnExtension(
|
|
|
3490
3493
|
description: typing.Optional[builtins.str] = None,
|
|
3491
3494
|
role_arn: typing.Optional[builtins.str] = None,
|
|
3492
3495
|
) -> None:
|
|
3493
|
-
'''
|
|
3494
|
-
|
|
3495
|
-
Each action includes an action point such as ``ON_CREATE_HOSTED_CONFIGURATION`` , ``PRE_DEPLOYMENT`` , or ``ON_DEPLOYMENT`` . Each action also includes a name, a URI to an AWS Lambda function, and an Amazon Resource Name (ARN) for an AWS Identity and Access Management assume role. You specify the name, URI, and ARN for each *action point* defined in the extension. You can specify the following actions for an extension:
|
|
3496
|
-
|
|
3497
|
-
- ``PRE_CREATE_HOSTED_CONFIGURATION_VERSION``
|
|
3498
|
-
- ``PRE_START_DEPLOYMENT``
|
|
3499
|
-
- ``ON_DEPLOYMENT_START``
|
|
3500
|
-
- ``ON_DEPLOYMENT_STEP``
|
|
3501
|
-
- ``ON_DEPLOYMENT_BAKING``
|
|
3502
|
-
- ``ON_DEPLOYMENT_COMPLETE``
|
|
3503
|
-
- ``ON_DEPLOYMENT_ROLLED_BACK``
|
|
3496
|
+
'''The actions defined in the extension.
|
|
3504
3497
|
|
|
3505
3498
|
:param name: The action name.
|
|
3506
3499
|
:param uri: The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an AWS Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
|
|
3507
|
-
:param description: Information about the
|
|
3500
|
+
:param description: Information about actions defined in the extension.
|
|
3508
3501
|
:param role_arn: An Amazon Resource Name (ARN) for an AWS Identity and Access Management assume role.
|
|
3509
3502
|
|
|
3510
3503
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-extension-action.html
|
|
@@ -3564,7 +3557,7 @@ class CfnExtension(
|
|
|
3564
3557
|
|
|
3565
3558
|
@builtins.property
|
|
3566
3559
|
def description(self) -> typing.Optional[builtins.str]:
|
|
3567
|
-
'''Information about the
|
|
3560
|
+
'''Information about actions defined in the extension.
|
|
3568
3561
|
|
|
3569
3562
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-extension-action.html#cfn-appconfig-extension-action-description
|
|
3570
3563
|
'''
|
|
@@ -3183,7 +3183,7 @@ class CfnVpcConnector(
|
|
|
3183
3183
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
3184
3184
|
:param subnets: A list of IDs of subnets that App Runner should use when it associates your service with a custom Amazon VPC. Specify IDs of subnets of a single Amazon VPC. App Runner determines the Amazon VPC from the subnets you specify. .. epigraph:: App Runner currently only provides support for IPv4.
|
|
3185
3185
|
:param security_groups: A list of IDs of security groups that App Runner should use for access to AWS resources under the specified subnets. If not specified, App Runner uses the default security group of the Amazon VPC. The default security group allows all outbound traffic.
|
|
3186
|
-
:param tags: A list of metadata items that you can associate with your VPC connector resource. A tag is a key-value pair.
|
|
3186
|
+
:param tags: A list of metadata items that you can associate with your VPC connector resource. A tag is a key-value pair. .. epigraph:: A ``VpcConnector`` is immutable, so you cannot update its tags. To change the tags, replace the resource. To replace a ``VpcConnector`` , you must provide a new combination of security groups.
|
|
3187
3187
|
:param vpc_connector_name: A name for the VPC connector. If you don't specify a name, AWS CloudFormation generates a name for your VPC connector.
|
|
3188
3188
|
'''
|
|
3189
3189
|
if __debug__:
|
|
@@ -3342,7 +3342,7 @@ class CfnVpcConnectorProps:
|
|
|
3342
3342
|
|
|
3343
3343
|
:param subnets: A list of IDs of subnets that App Runner should use when it associates your service with a custom Amazon VPC. Specify IDs of subnets of a single Amazon VPC. App Runner determines the Amazon VPC from the subnets you specify. .. epigraph:: App Runner currently only provides support for IPv4.
|
|
3344
3344
|
:param security_groups: A list of IDs of security groups that App Runner should use for access to AWS resources under the specified subnets. If not specified, App Runner uses the default security group of the Amazon VPC. The default security group allows all outbound traffic.
|
|
3345
|
-
:param tags: A list of metadata items that you can associate with your VPC connector resource. A tag is a key-value pair.
|
|
3345
|
+
:param tags: A list of metadata items that you can associate with your VPC connector resource. A tag is a key-value pair. .. epigraph:: A ``VpcConnector`` is immutable, so you cannot update its tags. To change the tags, replace the resource. To replace a ``VpcConnector`` , you must provide a new combination of security groups.
|
|
3346
3346
|
:param vpc_connector_name: A name for the VPC connector. If you don't specify a name, AWS CloudFormation generates a name for your VPC connector.
|
|
3347
3347
|
|
|
3348
3348
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apprunner-vpcconnector.html
|
|
@@ -3413,6 +3413,9 @@ class CfnVpcConnectorProps:
|
|
|
3413
3413
|
'''A list of metadata items that you can associate with your VPC connector resource.
|
|
3414
3414
|
|
|
3415
3415
|
A tag is a key-value pair.
|
|
3416
|
+
.. epigraph::
|
|
3417
|
+
|
|
3418
|
+
A ``VpcConnector`` is immutable, so you cannot update its tags. To change the tags, replace the resource. To replace a ``VpcConnector`` , you must provide a new combination of security groups.
|
|
3416
3419
|
|
|
3417
3420
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apprunner-vpcconnector.html#cfn-apprunner-vpcconnector-tags
|
|
3418
3421
|
'''
|