aws-cdk-lib 2.198.0__py3-none-any.whl → 2.200.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 +22 -24
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.198.0.jsii.tgz → aws-cdk-lib@2.200.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +1 -1
- aws_cdk/aws_apigateway/__init__.py +1 -1
- aws_cdk/aws_appconfig/__init__.py +296 -48
- aws_cdk/aws_applicationautoscaling/__init__.py +4 -4
- aws_cdk/aws_aps/__init__.py +365 -14
- aws_cdk/aws_autoscaling/__init__.py +4 -4
- aws_cdk/aws_bedrock/__init__.py +436 -28
- aws_cdk/aws_cloudformation/__init__.py +17 -23
- aws_cdk/aws_cloudfront_origins/__init__.py +1 -1
- aws_cdk/aws_cloudtrail/__init__.py +4 -4
- aws_cdk/aws_cloudwatch/__init__.py +50 -1
- aws_cdk/aws_codebuild/__init__.py +116 -0
- aws_cdk/aws_datazone/__init__.py +699 -9
- aws_cdk/aws_deadline/__init__.py +38 -10
- aws_cdk/aws_ec2/__init__.py +97 -28
- aws_cdk/aws_ecs_patterns/__init__.py +49 -3
- aws_cdk/aws_eks/__init__.py +40 -9
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +7 -7
- aws_cdk/aws_emr/__init__.py +36 -2
- aws_cdk/aws_events_targets/__init__.py +78 -1
- aws_cdk/aws_fsx/__init__.py +122 -0
- aws_cdk/aws_glue/__init__.py +55 -26
- aws_cdk/aws_iam/__init__.py +376 -2
- aws_cdk/aws_iot/__init__.py +57 -5
- aws_cdk/aws_kinesisfirehose/__init__.py +5 -1
- aws_cdk/aws_lambda/__init__.py +65 -45
- aws_cdk/aws_lex/__init__.py +27 -13
- aws_cdk/aws_lightsail/__init__.py +452 -0
- aws_cdk/aws_medialive/__init__.py +699 -497
- aws_cdk/aws_msk/__init__.py +4 -4
- aws_cdk/aws_networkfirewall/__init__.py +9 -5
- aws_cdk/aws_nimblestudio/__init__.py +208 -400
- aws_cdk/aws_panorama/__init__.py +30 -3
- aws_cdk/aws_pcs/__init__.py +12 -5
- aws_cdk/aws_rds/__init__.py +28 -16
- aws_cdk/aws_s3/__init__.py +367 -6
- aws_cdk/aws_s3express/__init__.py +789 -0
- aws_cdk/aws_ses/__init__.py +549 -32
- aws_cdk/aws_sns_subscriptions/__init__.py +256 -1
- aws_cdk/aws_stepfunctions/__init__.py +55 -17
- aws_cdk/aws_stepfunctions_tasks/__init__.py +1502 -2
- aws_cdk/aws_synthetics/__init__.py +26 -16
- aws_cdk/aws_voiceid/__init__.py +13 -3
- aws_cdk/aws_vpclattice/__init__.py +219 -209
- aws_cdk/cloud_assembly_schema/__init__.py +137 -42
- aws_cdk/cx_api/__init__.py +7 -7
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/RECORD +55 -55
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.198.0.dist-info → aws_cdk_lib-2.200.0.dist-info}/top_level.txt +0 -0
|
@@ -1426,7 +1426,7 @@ class CfnCanary(
|
|
|
1426
1426
|
:param schedule: A structure that contains information about how often the canary is to run, and when these runs are to stop.
|
|
1427
1427
|
:param artifact_config: A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.
|
|
1428
1428
|
:param delete_lambda_resources_on_canary_deletion: (deprecated) Deletes associated lambda resources created by Synthetics if set to True. Default is False
|
|
1429
|
-
:param dry_run_and_update:
|
|
1429
|
+
:param dry_run_and_update: Specifies whether to perform a dry run before updating the canary. If set to ``true`` , CloudFormation will execute a dry run to validate the changes before applying them to the canary. If the dry run succeeds, the canary will be updated with the changes. If the dry run fails, the CloudFormation deployment will fail with the dry run’s failure reason. If set to ``false`` or omitted, the canary will be updated directly without first performing a dry run. The default value is ``false`` . For more information, see `Performing safe canary updates <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/performing-safe-canary-upgrades.html>`_ .
|
|
1430
1430
|
:param failure_retention_period: The number of days to retain data about failed runs of this canary. If you omit this field, the default of 31 days is used. The valid range is 1 to 455 days. This setting affects the range of information returned by `GetCanaryRuns <https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_GetCanaryRuns.html>`_ , as well as the range of information displayed in the Synthetics console.
|
|
1431
1431
|
:param provisioned_resource_cleanup: Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted. If it is ``AUTOMATIC`` , the Lambda functions and layers will be deleted when the canary is deleted. If the value of this parameter is ``OFF`` , then the value of the ``DeleteLambda`` parameter of the `DeleteCanary <https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DeleteCanary.html>`_ operation determines whether the Lambda functions and layers will be deleted.
|
|
1432
1432
|
:param resources_to_replicate_tags: To have the tags that you apply to this canary also be applied to the Lambda function that the canary uses, specify this property with the value ``lambda-function`` . If you do this, CloudWatch Synthetics will keep the tags of the canary and the Lambda function synchronized. Any future changes you make to the canary's tags will also be applied to the function.
|
|
@@ -1666,7 +1666,7 @@ class CfnCanary(
|
|
|
1666
1666
|
def dry_run_and_update(
|
|
1667
1667
|
self,
|
|
1668
1668
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
1669
|
-
'''
|
|
1669
|
+
'''Specifies whether to perform a dry run before updating the canary.'''
|
|
1670
1670
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "dryRunAndUpdate"))
|
|
1671
1671
|
|
|
1672
1672
|
@dry_run_and_update.setter
|
|
@@ -1993,8 +1993,8 @@ class CfnCanary(
|
|
|
1993
1993
|
|
|
1994
1994
|
:param handler: The entry point to use for the source code when running the canary. For canaries that use the ``syn-python-selenium-1.0`` runtime or a ``syn-nodejs.puppeteer`` runtime earlier than ``syn-nodejs.puppeteer-3.4`` , the handler must be specified as ``*fileName* .handler`` . For ``syn-python-selenium-1.1`` , ``syn-nodejs.puppeteer-3.4`` , and later runtimes, the handler can be specified as ``*fileName* . *functionName*`` , or you can specify a folder where canary scripts reside as ``*folder* / *fileName* . *functionName*`` .
|
|
1995
1995
|
:param s3_bucket: If your canary script is located in S3, specify the bucket name here. The bucket must already exist.
|
|
1996
|
-
:param s3_key: The S3 key of your script. For more information, see `Working with Amazon S3 Objects <https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingObjects.html>`_ .
|
|
1997
|
-
:param s3_object_version: The S3 version ID of your script.
|
|
1996
|
+
:param s3_key: The Amazon S3 key of your script. For more information, see `Working with Amazon S3 Objects <https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingObjects.html>`_ .
|
|
1997
|
+
:param s3_object_version: The Amazon S3 version ID of your script.
|
|
1998
1998
|
:param script: If you input your canary script directly into the canary instead of referring to an S3 location, the value of this parameter is the script in plain text. It can be up to 5 MB.
|
|
1999
1999
|
:param source_location_arn: The ARN of the Lambda layer where Synthetics stores the canary script code.
|
|
2000
2000
|
|
|
@@ -2065,7 +2065,7 @@ class CfnCanary(
|
|
|
2065
2065
|
|
|
2066
2066
|
@builtins.property
|
|
2067
2067
|
def s3_key(self) -> typing.Optional[builtins.str]:
|
|
2068
|
-
'''The S3 key of your script.
|
|
2068
|
+
'''The Amazon S3 key of your script.
|
|
2069
2069
|
|
|
2070
2070
|
For more information, see `Working with Amazon S3 Objects <https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingObjects.html>`_ .
|
|
2071
2071
|
|
|
@@ -2076,7 +2076,7 @@ class CfnCanary(
|
|
|
2076
2076
|
|
|
2077
2077
|
@builtins.property
|
|
2078
2078
|
def s3_object_version(self) -> typing.Optional[builtins.str]:
|
|
2079
|
-
'''The S3 version ID of your script.
|
|
2079
|
+
'''The Amazon S3 version ID of your script.
|
|
2080
2080
|
|
|
2081
2081
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html#cfn-synthetics-canary-code-s3objectversion
|
|
2082
2082
|
'''
|
|
@@ -2121,8 +2121,9 @@ class CfnCanary(
|
|
|
2121
2121
|
)
|
|
2122
2122
|
class RetryConfigProperty:
|
|
2123
2123
|
def __init__(self, *, max_retries: jsii.Number) -> None:
|
|
2124
|
-
'''
|
|
2125
|
-
|
|
2124
|
+
'''The canary's retry configuration information.
|
|
2125
|
+
|
|
2126
|
+
:param max_retries: The maximum number of retries. The value must be less than or equal to two.
|
|
2126
2127
|
|
|
2127
2128
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-retryconfig.html
|
|
2128
2129
|
:exampleMetadata: fixture=_generated
|
|
@@ -2146,7 +2147,9 @@ class CfnCanary(
|
|
|
2146
2147
|
|
|
2147
2148
|
@builtins.property
|
|
2148
2149
|
def max_retries(self) -> jsii.Number:
|
|
2149
|
-
'''maximum
|
|
2150
|
+
'''The maximum number of retries.
|
|
2151
|
+
|
|
2152
|
+
The value must be less than or equal to two.
|
|
2150
2153
|
|
|
2151
2154
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-retryconfig.html#cfn-synthetics-canary-retryconfig-maxretries
|
|
2152
2155
|
'''
|
|
@@ -2391,7 +2394,7 @@ class CfnCanary(
|
|
|
2391
2394
|
|
|
2392
2395
|
:param expression: A ``rate`` expression or a ``cron`` expression that defines how often the canary is to run. For a rate expression, The syntax is ``rate( *number unit* )`` . *unit* can be ``minute`` , ``minutes`` , or ``hour`` . For example, ``rate(1 minute)`` runs the canary once a minute, ``rate(10 minutes)`` runs it once every 10 minutes, and ``rate(1 hour)`` runs it once every hour. You can specify a frequency between ``rate(1 minute)`` and ``rate(1 hour)`` . Specifying ``rate(0 minute)`` or ``rate(0 hour)`` is a special value that causes the canary to run only once when it is started. Use ``cron( *expression* )`` to specify a cron expression. You can't schedule a canary to wait for more than a year before running. For information about the syntax for cron expressions, see `Scheduling canary runs using cron <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_cron.html>`_ .
|
|
2393
2396
|
:param duration_in_seconds: How long, in seconds, for the canary to continue making regular runs according to the schedule in the ``Expression`` value. If you specify 0, the canary continues making runs until you stop it. If you omit this field, the default of 0 is used.
|
|
2394
|
-
:param retry_config:
|
|
2397
|
+
:param retry_config: The canary's retry configuration information.
|
|
2395
2398
|
|
|
2396
2399
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html
|
|
2397
2400
|
:exampleMetadata: fixture=_generated
|
|
@@ -2458,7 +2461,8 @@ class CfnCanary(
|
|
|
2458
2461
|
def retry_config(
|
|
2459
2462
|
self,
|
|
2460
2463
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnCanary.RetryConfigProperty"]]:
|
|
2461
|
-
'''
|
|
2464
|
+
'''The canary's retry configuration information.
|
|
2465
|
+
|
|
2462
2466
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-schedule.html#cfn-synthetics-canary-schedule-retryconfig
|
|
2463
2467
|
'''
|
|
2464
2468
|
result = self._values.get("retry_config")
|
|
@@ -2500,7 +2504,7 @@ class CfnCanary(
|
|
|
2500
2504
|
|
|
2501
2505
|
:param security_group_ids: The IDs of the security groups for this canary.
|
|
2502
2506
|
:param subnet_ids: The IDs of the subnets where this canary is to run.
|
|
2503
|
-
:param ipv6_allowed_for_dual_stack:
|
|
2507
|
+
:param ipv6_allowed_for_dual_stack: Set this to ``true`` to allow outbound IPv6 traffic on VPC canaries that are connected to dual-stack subnets. The default is ``false`` .
|
|
2504
2508
|
:param vpc_id: The ID of the VPC where this canary is to run.
|
|
2505
2509
|
|
|
2506
2510
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html
|
|
@@ -2560,7 +2564,9 @@ class CfnCanary(
|
|
|
2560
2564
|
def ipv6_allowed_for_dual_stack(
|
|
2561
2565
|
self,
|
|
2562
2566
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2563
|
-
'''
|
|
2567
|
+
'''Set this to ``true`` to allow outbound IPv6 traffic on VPC canaries that are connected to dual-stack subnets.
|
|
2568
|
+
|
|
2569
|
+
The default is ``false`` .
|
|
2564
2570
|
|
|
2565
2571
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-vpcconfig.html#cfn-synthetics-canary-vpcconfig-ipv6allowedfordualstack
|
|
2566
2572
|
'''
|
|
@@ -2734,7 +2740,7 @@ class CfnCanaryProps:
|
|
|
2734
2740
|
:param schedule: A structure that contains information about how often the canary is to run, and when these runs are to stop.
|
|
2735
2741
|
:param artifact_config: A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.
|
|
2736
2742
|
:param delete_lambda_resources_on_canary_deletion: (deprecated) Deletes associated lambda resources created by Synthetics if set to True. Default is False
|
|
2737
|
-
:param dry_run_and_update:
|
|
2743
|
+
:param dry_run_and_update: Specifies whether to perform a dry run before updating the canary. If set to ``true`` , CloudFormation will execute a dry run to validate the changes before applying them to the canary. If the dry run succeeds, the canary will be updated with the changes. If the dry run fails, the CloudFormation deployment will fail with the dry run’s failure reason. If set to ``false`` or omitted, the canary will be updated directly without first performing a dry run. The default value is ``false`` . For more information, see `Performing safe canary updates <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/performing-safe-canary-upgrades.html>`_ .
|
|
2738
2744
|
:param failure_retention_period: The number of days to retain data about failed runs of this canary. If you omit this field, the default of 31 days is used. The valid range is 1 to 455 days. This setting affects the range of information returned by `GetCanaryRuns <https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_GetCanaryRuns.html>`_ , as well as the range of information displayed in the Synthetics console.
|
|
2739
2745
|
:param provisioned_resource_cleanup: Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted. If it is ``AUTOMATIC`` , the Lambda functions and layers will be deleted when the canary is deleted. If the value of this parameter is ``OFF`` , then the value of the ``DeleteLambda`` parameter of the `DeleteCanary <https://docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DeleteCanary.html>`_ operation determines whether the Lambda functions and layers will be deleted.
|
|
2740
2746
|
:param resources_to_replicate_tags: To have the tags that you apply to this canary also be applied to the Lambda function that the canary uses, specify this property with the value ``lambda-function`` . If you do this, CloudWatch Synthetics will keep the tags of the canary and the Lambda function synchronized. Any future changes you make to the canary's tags will also be applied to the function.
|
|
@@ -2992,9 +2998,13 @@ class CfnCanaryProps:
|
|
|
2992
2998
|
def dry_run_and_update(
|
|
2993
2999
|
self,
|
|
2994
3000
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
2995
|
-
'''
|
|
3001
|
+
'''Specifies whether to perform a dry run before updating the canary.
|
|
3002
|
+
|
|
3003
|
+
If set to ``true`` , CloudFormation will execute a dry run to validate the changes before applying them to the canary. If the dry run succeeds, the canary will be updated with the changes. If the dry run fails, the CloudFormation deployment will fail with the dry run’s failure reason.
|
|
3004
|
+
|
|
3005
|
+
If set to ``false`` or omitted, the canary will be updated directly without first performing a dry run. The default value is ``false`` .
|
|
2996
3006
|
|
|
2997
|
-
|
|
3007
|
+
For more information, see `Performing safe canary updates <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/performing-safe-canary-upgrades.html>`_ .
|
|
2998
3008
|
|
|
2999
3009
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-synthetics-canary.html#cfn-synthetics-canary-dryrunandupdate
|
|
3000
3010
|
'''
|
aws_cdk/aws_voiceid/__init__.py
CHANGED
|
@@ -75,9 +75,13 @@ class CfnDomain(
|
|
|
75
75
|
metaclass=jsii.JSIIMeta,
|
|
76
76
|
jsii_type="aws-cdk-lib.aws_voiceid.CfnDomain",
|
|
77
77
|
):
|
|
78
|
-
'''
|
|
78
|
+
'''.. epigraph::
|
|
79
79
|
|
|
80
|
-
|
|
80
|
+
End of support notice: On May 20, 2026, AWS will end support for Amazon Connect Voice ID.
|
|
81
|
+
|
|
82
|
+
After May 20, 2026, you will no longer be able to access Voice ID on the Amazon Connect console, access Voice ID features on the Amazon Connect admin website or Contact Control Panel, or access Voice ID resources. For more information, visit `Amazon Connect Voice ID end of support <https://docs.aws.amazon.com/connect/latest/adminguide/amazonconnect-voiceid-end-of-support.html>`_ .
|
|
83
|
+
|
|
84
|
+
Creates a domain that contains all Amazon Connect Voice ID data, such as speakers, fraudsters, customer audio, and voiceprints. Every domain is created with a default watchlist that fraudsters can be a part of.
|
|
81
85
|
|
|
82
86
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-voiceid-domain.html
|
|
83
87
|
:cloudformationResource: AWS::VoiceID::Domain
|
|
@@ -249,7 +253,13 @@ class CfnDomain(
|
|
|
249
253
|
)
|
|
250
254
|
class ServerSideEncryptionConfigurationProperty:
|
|
251
255
|
def __init__(self, *, kms_key_id: builtins.str) -> None:
|
|
252
|
-
'''
|
|
256
|
+
'''.. epigraph::
|
|
257
|
+
|
|
258
|
+
End of support notice: On May 20, 2026, AWS will end support for Amazon Connect Voice ID.
|
|
259
|
+
|
|
260
|
+
After May 20, 2026, you will no longer be able to access Voice ID on the Amazon Connect console, access Voice ID features on the Amazon Connect admin website or Contact Control Panel, or access Voice ID resources. For more information, visit `Amazon Connect Voice ID end of support <https://docs.aws.amazon.com/connect/latest/adminguide/amazonconnect-voiceid-end-of-support.html>`_ .
|
|
261
|
+
|
|
262
|
+
The configuration containing information about the customer managed key used for encrypting customer data.
|
|
253
263
|
|
|
254
264
|
:param kms_key_id: The identifier of the KMS key to use to encrypt data stored by Voice ID. Voice ID doesn't support asymmetric customer managed keys.
|
|
255
265
|
|