aws-cdk-lib 2.127.0__py3-none-any.whl → 2.129.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 +6 -10
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.127.0.jsii.tgz → aws-cdk-lib@2.129.0.jsii.tgz} +0 -0
- aws_cdk/aws_amazonmq/__init__.py +6 -24
- aws_cdk/aws_amplify/__init__.py +1 -2
- aws_cdk/aws_appconfig/__init__.py +0 -16
- aws_cdk/aws_applicationautoscaling/__init__.py +55 -22
- aws_cdk/aws_appstream/__init__.py +14 -14
- aws_cdk/aws_appsync/__init__.py +334 -3
- aws_cdk/aws_autoscaling/__init__.py +11 -7
- aws_cdk/aws_batch/__init__.py +137 -16
- aws_cdk/aws_cleanrooms/__init__.py +1 -2
- aws_cdk/aws_cloudformation/__init__.py +2 -10
- aws_cdk/aws_cloudfront/__init__.py +15 -8
- aws_cdk/aws_cloudfront/experimental/__init__.py +22 -0
- aws_cdk/aws_cloudfront_origins/__init__.py +332 -0
- aws_cdk/aws_cloudtrail/__init__.py +12 -2
- aws_cdk/aws_cloudwatch/__init__.py +925 -133
- aws_cdk/aws_codedeploy/__init__.py +69 -0
- aws_cdk/aws_codepipeline/__init__.py +1461 -111
- aws_cdk/aws_codepipeline_actions/__init__.py +40 -34
- aws_cdk/aws_cognito/__init__.py +0 -9
- aws_cdk/aws_config/__init__.py +2 -2
- aws_cdk/aws_connect/__init__.py +6 -1
- aws_cdk/aws_controltower/__init__.py +527 -7
- aws_cdk/aws_datasync/__init__.py +2 -2
- aws_cdk/aws_directoryservice/__init__.py +2 -3
- aws_cdk/aws_dynamodb/__init__.py +7 -0
- aws_cdk/aws_ec2/__init__.py +117 -210
- aws_cdk/aws_ecs/__init__.py +537 -3
- aws_cdk/aws_eks/__init__.py +1 -1
- aws_cdk/aws_elasticache/__init__.py +27 -20
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +3 -4
- aws_cdk/aws_emr/__init__.py +23 -3
- aws_cdk/aws_events_targets/__init__.py +64 -20
- aws_cdk/aws_fis/__init__.py +4 -4
- aws_cdk/aws_frauddetector/__init__.py +3 -3
- aws_cdk/aws_globalaccelerator/__init__.py +2 -6
- aws_cdk/aws_glue/__init__.py +84 -55
- aws_cdk/aws_groundstation/__init__.py +8 -12
- aws_cdk/aws_guardduty/__init__.py +74 -70
- aws_cdk/aws_iam/__init__.py +16 -23
- aws_cdk/aws_imagebuilder/__init__.py +178 -156
- aws_cdk/aws_internetmonitor/__init__.py +12 -10
- aws_cdk/aws_iot/__init__.py +17 -10
- aws_cdk/aws_iotevents/__init__.py +4 -4
- aws_cdk/aws_iotfleetwise/__init__.py +10 -5
- aws_cdk/aws_iottwinmaker/__init__.py +3 -5
- aws_cdk/aws_iotwireless/__init__.py +35 -23
- aws_cdk/aws_kendra/__init__.py +36 -15
- aws_cdk/aws_kinesisfirehose/__init__.py +155 -114
- aws_cdk/aws_lambda/__init__.py +175 -15
- aws_cdk/aws_lambda_nodejs/__init__.py +22 -0
- aws_cdk/aws_lightsail/__init__.py +14 -18
- aws_cdk/aws_logs/__init__.py +15 -15
- aws_cdk/aws_mediaconnect/__init__.py +5 -3
- aws_cdk/aws_medialive/__init__.py +3 -12
- aws_cdk/aws_mediapackagev2/__init__.py +287 -286
- aws_cdk/aws_mediatailor/__init__.py +2 -2
- aws_cdk/aws_memorydb/__init__.py +2 -2
- aws_cdk/aws_msk/__init__.py +6 -3
- aws_cdk/aws_mwaa/__init__.py +10 -5
- aws_cdk/aws_neptunegraph/__init__.py +84 -66
- aws_cdk/aws_networkfirewall/__init__.py +5 -8
- aws_cdk/aws_networkmanager/__init__.py +3 -3
- aws_cdk/aws_nimblestudio/__init__.py +2 -4
- aws_cdk/aws_opensearchservice/__init__.py +6 -7
- aws_cdk/aws_osis/__init__.py +1 -3
- aws_cdk/aws_pinpoint/__init__.py +5 -5
- aws_cdk/aws_pipes/__init__.py +5 -5
- aws_cdk/aws_quicksight/__init__.py +5 -10
- aws_cdk/aws_rds/__init__.py +38 -21
- aws_cdk/aws_redshift/__init__.py +9 -5
- aws_cdk/aws_redshiftserverless/__init__.py +62 -38
- aws_cdk/aws_rolesanywhere/__init__.py +41 -53
- aws_cdk/aws_route53/__init__.py +532 -6
- aws_cdk/aws_route53recoverycontrol/__init__.py +1 -3
- aws_cdk/aws_route53recoveryreadiness/__init__.py +2 -2
- aws_cdk/aws_route53resolver/__init__.py +1 -4
- aws_cdk/aws_s3/__init__.py +12 -6
- aws_cdk/aws_s3_deployment/__init__.py +29 -0
- aws_cdk/aws_s3objectlambda/__init__.py +7 -4
- aws_cdk/aws_s3outposts/__init__.py +1 -1
- aws_cdk/aws_sagemaker/__init__.py +195 -11
- aws_cdk/aws_servicecatalogappregistry/__init__.py +3 -3
- aws_cdk/aws_ses/__init__.py +166 -9
- aws_cdk/aws_sns/__init__.py +185 -38
- aws_cdk/aws_sqs/__init__.py +10 -12
- aws_cdk/aws_ssm/__init__.py +16 -16
- aws_cdk/aws_ssmincidents/__init__.py +1 -1
- aws_cdk/aws_synthetics/__init__.py +94 -21
- aws_cdk/aws_verifiedpermissions/__init__.py +1 -2
- aws_cdk/aws_vpclattice/__init__.py +8 -4
- aws_cdk/aws_wafv2/__init__.py +14 -59
- aws_cdk/aws_workspaces/__init__.py +5 -4
- aws_cdk/aws_workspacesweb/__init__.py +6 -12
- aws_cdk/triggers/__init__.py +22 -0
- {aws_cdk_lib-2.127.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.127.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/RECORD +103 -103
- {aws_cdk_lib-2.127.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.127.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.127.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.127.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_ssm/__init__.py
CHANGED
|
@@ -258,7 +258,7 @@ class CfnAssociation(
|
|
|
258
258
|
:param max_concurrency: The maximum number of targets allowed to run the association at the same time. You can specify a number, for example 10, or a percentage of the target set, for example 10%. The default value is 100%, which means all targets run the association at the same time. If a new managed node starts and attempts to run an association while Systems Manager is running ``MaxConcurrency`` associations, the association is allowed to run. During the next association interval, the new managed node will process its association within the limit specified for ``MaxConcurrency`` .
|
|
259
259
|
:param max_errors: The number of errors that are allowed before the system stops sending requests to run the association on additional targets. You can specify either an absolute number of errors, for example 10, or a percentage of the target set, for example 10%. If you specify 3, for example, the system stops sending requests when the fourth error is received. If you specify 0, then the system stops sending requests after the first error is returned. If you run an association on 50 managed nodes and set ``MaxError`` to 10%, then the system stops sending the request when the sixth error is received. Executions that are already running an association when ``MaxErrors`` is reached are allowed to complete, but some of these executions may fail as well. If you need to ensure that there won't be more than max-errors failed executions, set ``MaxConcurrency`` to 1 so that executions proceed one at a time.
|
|
260
260
|
:param output_location: An Amazon Simple Storage Service (Amazon S3) bucket where you want to store the output details of the request.
|
|
261
|
-
:param parameters:
|
|
261
|
+
:param parameters: The parameters for the runtime configuration of the document.
|
|
262
262
|
:param schedule_expression: A cron expression that specifies a schedule when the association runs. The schedule runs in Coordinated Universal Time (UTC).
|
|
263
263
|
:param schedule_offset: Number of days to wait after the scheduled day to run an association.
|
|
264
264
|
:param sync_compliance: The mode for generating association compliance. You can specify ``AUTO`` or ``MANUAL`` . In ``AUTO`` mode, the system uses the status of the association execution to determine the compliance status. If the association execution runs successfully, then the association is ``COMPLIANT`` . If the association execution doesn't run successfully, the association is ``NON-COMPLIANT`` . In ``MANUAL`` mode, you must specify the ``AssociationId`` as a parameter for the PutComplianceItems API action. In this case, compliance data is not managed by State Manager. It is managed by your direct call to the PutComplianceItems API action. By default, all associations use ``AUTO`` mode.
|
|
@@ -494,7 +494,7 @@ class CfnAssociation(
|
|
|
494
494
|
@builtins.property
|
|
495
495
|
@jsii.member(jsii_name="parameters")
|
|
496
496
|
def parameters(self) -> typing.Any:
|
|
497
|
-
'''
|
|
497
|
+
'''The parameters for the runtime configuration of the document.'''
|
|
498
498
|
return typing.cast(typing.Any, jsii.get(self, "parameters"))
|
|
499
499
|
|
|
500
500
|
@parameters.setter
|
|
@@ -863,7 +863,7 @@ class CfnAssociationProps:
|
|
|
863
863
|
:param max_concurrency: The maximum number of targets allowed to run the association at the same time. You can specify a number, for example 10, or a percentage of the target set, for example 10%. The default value is 100%, which means all targets run the association at the same time. If a new managed node starts and attempts to run an association while Systems Manager is running ``MaxConcurrency`` associations, the association is allowed to run. During the next association interval, the new managed node will process its association within the limit specified for ``MaxConcurrency`` .
|
|
864
864
|
:param max_errors: The number of errors that are allowed before the system stops sending requests to run the association on additional targets. You can specify either an absolute number of errors, for example 10, or a percentage of the target set, for example 10%. If you specify 3, for example, the system stops sending requests when the fourth error is received. If you specify 0, then the system stops sending requests after the first error is returned. If you run an association on 50 managed nodes and set ``MaxError`` to 10%, then the system stops sending the request when the sixth error is received. Executions that are already running an association when ``MaxErrors`` is reached are allowed to complete, but some of these executions may fail as well. If you need to ensure that there won't be more than max-errors failed executions, set ``MaxConcurrency`` to 1 so that executions proceed one at a time.
|
|
865
865
|
:param output_location: An Amazon Simple Storage Service (Amazon S3) bucket where you want to store the output details of the request.
|
|
866
|
-
:param parameters:
|
|
866
|
+
:param parameters: The parameters for the runtime configuration of the document.
|
|
867
867
|
:param schedule_expression: A cron expression that specifies a schedule when the association runs. The schedule runs in Coordinated Universal Time (UTC).
|
|
868
868
|
:param schedule_offset: Number of days to wait after the scheduled day to run an association.
|
|
869
869
|
:param sync_compliance: The mode for generating association compliance. You can specify ``AUTO`` or ``MANUAL`` . In ``AUTO`` mode, the system uses the status of the association execution to determine the compliance status. If the association execution runs successfully, then the association is ``COMPLIANT`` . If the association execution doesn't run successfully, the association is ``NON-COMPLIANT`` . In ``MANUAL`` mode, you must specify the ``AssociationId`` as a parameter for the PutComplianceItems API action. In this case, compliance data is not managed by State Manager. It is managed by your direct call to the PutComplianceItems API action. By default, all associations use ``AUTO`` mode.
|
|
@@ -1107,7 +1107,7 @@ class CfnAssociationProps:
|
|
|
1107
1107
|
|
|
1108
1108
|
@builtins.property
|
|
1109
1109
|
def parameters(self) -> typing.Any:
|
|
1110
|
-
'''
|
|
1110
|
+
'''The parameters for the runtime configuration of the document.
|
|
1111
1111
|
|
|
1112
1112
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-association.html#cfn-ssm-association-parameters
|
|
1113
1113
|
'''
|
|
@@ -1199,7 +1199,7 @@ class CfnDocument(
|
|
|
1199
1199
|
This document defines the actions that Systems Manager performs on your AWS resources.
|
|
1200
1200
|
.. epigraph::
|
|
1201
1201
|
|
|
1202
|
-
This resource does not support CloudFormation drift detection.
|
|
1202
|
+
This resource does not support AWS CloudFormation drift detection.
|
|
1203
1203
|
|
|
1204
1204
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html
|
|
1205
1205
|
:cloudformationResource: AWS::SSM::Document
|
|
@@ -1944,7 +1944,7 @@ class CfnMaintenanceWindow(
|
|
|
1944
1944
|
:param end_date: The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become inactive.
|
|
1945
1945
|
:param schedule_offset: The number of days to wait to run a maintenance window after the scheduled cron expression date and time.
|
|
1946
1946
|
:param schedule_timezone: The time zone that the scheduled maintenance window executions are based on, in Internet Assigned Numbers Authority (IANA) format.
|
|
1947
|
-
:param start_date: The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become active. StartDate allows you to delay activation of the
|
|
1947
|
+
:param start_date: The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become active. ``StartDate`` allows you to delay activation of the maintenance window until the specified future date.
|
|
1948
1948
|
:param tags: Optional metadata that you assign to a resource in the form of an arbitrary set of tags (key-value pairs). Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For example, you might want to tag a maintenance window to identify the type of tasks it will run, the types of targets, and the environment it will run in.
|
|
1949
1949
|
'''
|
|
1950
1950
|
if __debug__:
|
|
@@ -2209,7 +2209,7 @@ class CfnMaintenanceWindowProps:
|
|
|
2209
2209
|
:param end_date: The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become inactive.
|
|
2210
2210
|
:param schedule_offset: The number of days to wait to run a maintenance window after the scheduled cron expression date and time.
|
|
2211
2211
|
:param schedule_timezone: The time zone that the scheduled maintenance window executions are based on, in Internet Assigned Numbers Authority (IANA) format.
|
|
2212
|
-
:param start_date: The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become active. StartDate allows you to delay activation of the
|
|
2212
|
+
:param start_date: The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become active. ``StartDate`` allows you to delay activation of the maintenance window until the specified future date.
|
|
2213
2213
|
:param tags: Optional metadata that you assign to a resource in the form of an arbitrary set of tags (key-value pairs). Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For example, you might want to tag a maintenance window to identify the type of tasks it will run, the types of targets, and the environment it will run in.
|
|
2214
2214
|
|
|
2215
2215
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html
|
|
@@ -2367,7 +2367,7 @@ class CfnMaintenanceWindowProps:
|
|
|
2367
2367
|
def start_date(self) -> typing.Optional[builtins.str]:
|
|
2368
2368
|
'''The date and time, in ISO-8601 Extended format, for when the maintenance window is scheduled to become active.
|
|
2369
2369
|
|
|
2370
|
-
StartDate allows you to delay activation of the
|
|
2370
|
+
``StartDate`` allows you to delay activation of the maintenance window until the specified future date.
|
|
2371
2371
|
|
|
2372
2372
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindow.html#cfn-ssm-maintenancewindow-startdate
|
|
2373
2373
|
'''
|
|
@@ -3410,7 +3410,7 @@ class CfnMaintenanceWindowTask(
|
|
|
3410
3410
|
For information about available parameters in Automation runbooks, you can view the content of the runbook itself in the Systems Manager console. For information, see `View runbook content <https://docs.aws.amazon.com/systems-manager/latest/userguide/automation-documents-reference-details.html#view-automation-json>`_ in the *AWS Systems Manager User Guide* .
|
|
3411
3411
|
|
|
3412
3412
|
:param document_version: The version of an Automation runbook to use during task execution.
|
|
3413
|
-
:param parameters: The parameters for the AUTOMATION task.
|
|
3413
|
+
:param parameters: The parameters for the ``AUTOMATION`` type task.
|
|
3414
3414
|
|
|
3415
3415
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html
|
|
3416
3416
|
:exampleMetadata: fixture=_generated
|
|
@@ -3449,7 +3449,7 @@ class CfnMaintenanceWindowTask(
|
|
|
3449
3449
|
|
|
3450
3450
|
@builtins.property
|
|
3451
3451
|
def parameters(self) -> typing.Any:
|
|
3452
|
-
'''The parameters for the AUTOMATION task.
|
|
3452
|
+
'''The parameters for the ``AUTOMATION`` type task.
|
|
3453
3453
|
|
|
3454
3454
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-maintenancewindowautomationparameters.html#cfn-ssm-maintenancewindowtask-maintenancewindowautomationparameters-parameters
|
|
3455
3455
|
'''
|
|
@@ -4648,7 +4648,7 @@ class CfnParameter(
|
|
|
4648
4648
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4649
4649
|
:param type: The type of parameter. .. epigraph:: Although ``SecureString`` is included in the list of valid values, AWS CloudFormation does *not* currently support creating a ``SecureString`` parameter type.
|
|
4650
4650
|
:param value: The parameter value. .. epigraph:: If type is ``StringList`` , the system returns a comma-separated string with no spaces between commas in the ``Value`` field.
|
|
4651
|
-
:param allowed_pattern: A regular expression used to validate the parameter value. For example, for String types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\\d+$``
|
|
4651
|
+
:param allowed_pattern: A regular expression used to validate the parameter value. For example, for ``String`` types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\\d+$``
|
|
4652
4652
|
:param data_type: The data type of the parameter, such as ``text`` or ``aws:ec2:image`` . The default is ``text`` .
|
|
4653
4653
|
:param description: Information about the parameter.
|
|
4654
4654
|
:param name: The name of the parameter. .. epigraph:: The maximum length constraint listed below includes capacity for additional system attributes that aren't part of the name. The maximum length for a parameter name, including the full length of the parameter ARN, is 1011 characters. For example, the length of the following parameter name is 65 characters, not 20 characters: ``arn:aws:ssm:us-east-2:111222333444:parameter/ExampleParameterName``
|
|
@@ -4889,7 +4889,7 @@ class CfnParameterProps:
|
|
|
4889
4889
|
|
|
4890
4890
|
:param type: The type of parameter. .. epigraph:: Although ``SecureString`` is included in the list of valid values, AWS CloudFormation does *not* currently support creating a ``SecureString`` parameter type.
|
|
4891
4891
|
:param value: The parameter value. .. epigraph:: If type is ``StringList`` , the system returns a comma-separated string with no spaces between commas in the ``Value`` field.
|
|
4892
|
-
:param allowed_pattern: A regular expression used to validate the parameter value. For example, for String types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\\d+$``
|
|
4892
|
+
:param allowed_pattern: A regular expression used to validate the parameter value. For example, for ``String`` types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\\d+$``
|
|
4893
4893
|
:param data_type: The data type of the parameter, such as ``text`` or ``aws:ec2:image`` . The default is ``text`` .
|
|
4894
4894
|
:param description: Information about the parameter.
|
|
4895
4895
|
:param name: The name of the parameter. .. epigraph:: The maximum length constraint listed below includes capacity for additional system attributes that aren't part of the name. The maximum length for a parameter name, including the full length of the parameter ARN, is 1011 characters. For example, the length of the following parameter name is 65 characters, not 20 characters: ``arn:aws:ssm:us-east-2:111222333444:parameter/ExampleParameterName``
|
|
@@ -4984,7 +4984,7 @@ class CfnParameterProps:
|
|
|
4984
4984
|
def allowed_pattern(self) -> typing.Optional[builtins.str]:
|
|
4985
4985
|
'''A regular expression used to validate the parameter value.
|
|
4986
4986
|
|
|
4987
|
-
For example, for String types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\\d+$``
|
|
4987
|
+
For example, for ``String`` types with values restricted to numbers, you can specify the following: ``AllowedPattern=^\\d+$``
|
|
4988
4988
|
|
|
4989
4989
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html#cfn-ssm-parameter-allowedpattern
|
|
4990
4990
|
'''
|
|
@@ -6344,7 +6344,7 @@ class CfnResourceDataSync(
|
|
|
6344
6344
|
:param bucket_name: The name of the S3 bucket where the aggregated data is stored.
|
|
6345
6345
|
:param bucket_prefix: An Amazon S3 prefix for the bucket.
|
|
6346
6346
|
:param bucket_region: The AWS Region with the S3 bucket targeted by the resource data sync.
|
|
6347
|
-
:param kms_key_arn: The ARN of an encryption key for a destination in Amazon S3 . You can use a KMS key to encrypt inventory data in Amazon S3 . You must specify a key that exist in the same
|
|
6347
|
+
:param kms_key_arn: The ARN of an encryption key for a destination in Amazon S3 . You can use a KMS key to encrypt inventory data in Amazon S3 . You must specify a key that exist in the same Region as the destination Amazon S3 bucket.
|
|
6348
6348
|
:param s3_destination: Configuration information for the target S3 bucket.
|
|
6349
6349
|
:param sync_format: A supported sync format. The following format is currently supported: JsonSerDe
|
|
6350
6350
|
:param sync_source: Information about the source where the data was synchronized.
|
|
@@ -6903,7 +6903,7 @@ class CfnResourceDataSyncProps:
|
|
|
6903
6903
|
:param bucket_name: The name of the S3 bucket where the aggregated data is stored.
|
|
6904
6904
|
:param bucket_prefix: An Amazon S3 prefix for the bucket.
|
|
6905
6905
|
:param bucket_region: The AWS Region with the S3 bucket targeted by the resource data sync.
|
|
6906
|
-
:param kms_key_arn: The ARN of an encryption key for a destination in Amazon S3 . You can use a KMS key to encrypt inventory data in Amazon S3 . You must specify a key that exist in the same
|
|
6906
|
+
:param kms_key_arn: The ARN of an encryption key for a destination in Amazon S3 . You can use a KMS key to encrypt inventory data in Amazon S3 . You must specify a key that exist in the same Region as the destination Amazon S3 bucket.
|
|
6907
6907
|
:param s3_destination: Configuration information for the target S3 bucket.
|
|
6908
6908
|
:param sync_format: A supported sync format. The following format is currently supported: JsonSerDe
|
|
6909
6909
|
:param sync_source: Information about the source where the data was synchronized.
|
|
@@ -7023,7 +7023,7 @@ class CfnResourceDataSyncProps:
|
|
|
7023
7023
|
def kms_key_arn(self) -> typing.Optional[builtins.str]:
|
|
7024
7024
|
'''The ARN of an encryption key for a destination in Amazon S3 .
|
|
7025
7025
|
|
|
7026
|
-
You can use a KMS key to encrypt inventory data in Amazon S3 . You must specify a key that exist in the same
|
|
7026
|
+
You can use a KMS key to encrypt inventory data in Amazon S3 . You must specify a key that exist in the same Region as the destination Amazon S3 bucket.
|
|
7027
7027
|
|
|
7028
7028
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-resourcedatasync.html#cfn-ssm-resourcedatasync-kmskeyarn
|
|
7029
7029
|
'''
|
|
@@ -57,7 +57,7 @@ class CfnReplicationSet(
|
|
|
57
57
|
metaclass=jsii.JSIIMeta,
|
|
58
58
|
jsii_type="aws-cdk-lib.aws_ssmincidents.CfnReplicationSet",
|
|
59
59
|
):
|
|
60
|
-
'''The ``AWS::SSMIncidents::ReplicationSet`` resource specifies a set of Regions that Incident Manager data is replicated to and the KMS key used to encrypt the data.
|
|
60
|
+
'''The ``AWS::SSMIncidents::ReplicationSet`` resource specifies a set of Regions that Incident Manager data is replicated to and the AWS Key Management Service ( AWS KMS key used to encrypt the data.
|
|
61
61
|
|
|
62
62
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmincidents-replicationset.html
|
|
63
63
|
:cloudformationResource: AWS::SSMIncidents::ReplicationSet
|
|
@@ -21,7 +21,7 @@ canary = synthetics.Canary(self, "MyCanary",
|
|
|
21
21
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
22
22
|
handler="index.handler"
|
|
23
23
|
),
|
|
24
|
-
runtime=synthetics.Runtime.
|
|
24
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
25
25
|
environment_variables={
|
|
26
26
|
"stage": "prod"
|
|
27
27
|
}
|
|
@@ -111,7 +111,7 @@ canary = synthetics.Canary(self, "Canary",
|
|
|
111
111
|
code=synthetics.Code.from_inline("/* Synthetics handler code")
|
|
112
112
|
),
|
|
113
113
|
cleanup=synthetics.Cleanup.LAMBDA,
|
|
114
|
-
runtime=synthetics.Runtime.
|
|
114
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2
|
|
115
115
|
)
|
|
116
116
|
```
|
|
117
117
|
|
|
@@ -139,7 +139,7 @@ synthetics.Canary(self, "Inline Canary",
|
|
|
139
139
|
code=synthetics.Code.from_inline("/* Synthetics handler code */"),
|
|
140
140
|
handler="index.handler"
|
|
141
141
|
),
|
|
142
|
-
runtime=synthetics.Runtime.
|
|
142
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2
|
|
143
143
|
)
|
|
144
144
|
|
|
145
145
|
# To supply the code from your local filesystem:
|
|
@@ -148,7 +148,7 @@ synthetics.Canary(self, "Asset Canary",
|
|
|
148
148
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
149
149
|
handler="index.handler"
|
|
150
150
|
),
|
|
151
|
-
runtime=synthetics.Runtime.
|
|
151
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2
|
|
152
152
|
)
|
|
153
153
|
bucket = s3.Bucket(self, "Code Bucket")
|
|
154
154
|
synthetics.Canary(self, "Bucket Canary",
|
|
@@ -156,7 +156,7 @@ synthetics.Canary(self, "Bucket Canary",
|
|
|
156
156
|
code=synthetics.Code.from_bucket(bucket, "canary.zip"),
|
|
157
157
|
handler="index.handler"
|
|
158
158
|
),
|
|
159
|
-
runtime=synthetics.Runtime.
|
|
159
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2
|
|
160
160
|
)
|
|
161
161
|
```
|
|
162
162
|
|
|
@@ -195,7 +195,7 @@ synthetics.Canary(self, "Vpc Canary",
|
|
|
195
195
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
196
196
|
handler="index.handler"
|
|
197
197
|
),
|
|
198
|
-
runtime=synthetics.Runtime.
|
|
198
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
199
199
|
vpc=vpc
|
|
200
200
|
)
|
|
201
201
|
```
|
|
@@ -243,7 +243,7 @@ canary = synthetics.Canary(self, "MyCanary",
|
|
|
243
243
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
244
244
|
handler="index.handler"
|
|
245
245
|
),
|
|
246
|
-
runtime=synthetics.Runtime.
|
|
246
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
247
247
|
artifacts_bucket_lifecycle_rules=[LifecycleRule(
|
|
248
248
|
expiration=Duration.days(30)
|
|
249
249
|
)]
|
|
@@ -397,7 +397,7 @@ class Canary(
|
|
|
397
397
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
398
398
|
handler="index.handler"
|
|
399
399
|
),
|
|
400
|
-
runtime=synthetics.Runtime.
|
|
400
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
401
401
|
environment_variables={
|
|
402
402
|
"stage": "prod"
|
|
403
403
|
}
|
|
@@ -711,7 +711,7 @@ class CanaryProps:
|
|
|
711
711
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
712
712
|
handler="index.handler"
|
|
713
713
|
),
|
|
714
|
-
runtime=synthetics.Runtime.
|
|
714
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
715
715
|
environment_variables={
|
|
716
716
|
"stage": "prod"
|
|
717
717
|
}
|
|
@@ -1167,7 +1167,8 @@ class CfnCanary(
|
|
|
1167
1167
|
@builtins.property
|
|
1168
1168
|
@jsii.member(jsii_name="attrCodeSourceLocationArn")
|
|
1169
1169
|
def attr_code_source_location_arn(self) -> builtins.str:
|
|
1170
|
-
'''
|
|
1170
|
+
'''``Ref`` returns the ARN of the Lambda layer where Synthetics stores the canary script code.
|
|
1171
|
+
|
|
1171
1172
|
:cloudformationAttribute: Code.SourceLocationArn
|
|
1172
1173
|
'''
|
|
1173
1174
|
return typing.cast(builtins.str, jsii.get(self, "attrCodeSourceLocationArn"))
|
|
@@ -2848,7 +2849,7 @@ class Cleanup(enum.Enum):
|
|
|
2848
2849
|
code=synthetics.Code.from_inline("/* Synthetics handler code")
|
|
2849
2850
|
),
|
|
2850
2851
|
cleanup=synthetics.Cleanup.LAMBDA,
|
|
2851
|
-
runtime=synthetics.Runtime.
|
|
2852
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2
|
|
2852
2853
|
)
|
|
2853
2854
|
'''
|
|
2854
2855
|
|
|
@@ -2883,7 +2884,7 @@ class Code(
|
|
|
2883
2884
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
2884
2885
|
handler="index.handler"
|
|
2885
2886
|
),
|
|
2886
|
-
runtime=synthetics.Runtime.
|
|
2887
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
2887
2888
|
environment_variables={
|
|
2888
2889
|
"stage": "prod"
|
|
2889
2890
|
}
|
|
@@ -3247,7 +3248,7 @@ class CustomTestOptions:
|
|
|
3247
3248
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
3248
3249
|
handler="index.handler"
|
|
3249
3250
|
),
|
|
3250
|
-
runtime=synthetics.Runtime.
|
|
3251
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
3251
3252
|
environment_variables={
|
|
3252
3253
|
"stage": "prod"
|
|
3253
3254
|
}
|
|
@@ -3352,7 +3353,7 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3352
3353
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
3353
3354
|
handler="index.handler"
|
|
3354
3355
|
),
|
|
3355
|
-
runtime=synthetics.Runtime.
|
|
3356
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
3356
3357
|
environment_variables={
|
|
3357
3358
|
"stage": "prod"
|
|
3358
3359
|
}
|
|
@@ -3373,52 +3374,64 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3373
3374
|
@jsii.python.classproperty
|
|
3374
3375
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_3_5")
|
|
3375
3376
|
def SYNTHETICS_NODEJS_PUPPETEER_3_5(cls) -> "Runtime":
|
|
3376
|
-
'''``syn-nodejs-puppeteer-3.5`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3377
|
+
'''(deprecated) ``syn-nodejs-puppeteer-3.5`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3378
|
+
|
|
3379
|
+
:deprecated: Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS Puppeteer runtime.
|
|
3377
3380
|
|
|
3378
3381
|
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-3.5
|
|
3382
|
+
:stability: deprecated
|
|
3379
3383
|
'''
|
|
3380
3384
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_3_5"))
|
|
3381
3385
|
|
|
3382
3386
|
@jsii.python.classproperty
|
|
3383
3387
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_3_6")
|
|
3384
3388
|
def SYNTHETICS_NODEJS_PUPPETEER_3_6(cls) -> "Runtime":
|
|
3385
|
-
'''``syn-nodejs-puppeteer-3.6`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3389
|
+
'''(deprecated) ``syn-nodejs-puppeteer-3.6`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3390
|
+
|
|
3391
|
+
:deprecated: Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS Puppeteer runtime.
|
|
3386
3392
|
|
|
3387
3393
|
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-3.6
|
|
3394
|
+
:stability: deprecated
|
|
3388
3395
|
'''
|
|
3389
3396
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_3_6"))
|
|
3390
3397
|
|
|
3391
3398
|
@jsii.python.classproperty
|
|
3392
3399
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_3_7")
|
|
3393
3400
|
def SYNTHETICS_NODEJS_PUPPETEER_3_7(cls) -> "Runtime":
|
|
3394
|
-
'''``syn-nodejs-puppeteer-3.7`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3401
|
+
'''(deprecated) ``syn-nodejs-puppeteer-3.7`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3395
3402
|
|
|
3396
3403
|
New Features:
|
|
3397
3404
|
|
|
3398
3405
|
- **Logging enhancement**: The canary will upload logs to Amazon S3 even if it times out or crashes.
|
|
3399
3406
|
- **Lambda layer size reduced**: The size of the Lambda layer used for canaries is reduced by 34%.
|
|
3400
3407
|
|
|
3408
|
+
:deprecated: Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS Puppeteer runtime.
|
|
3409
|
+
|
|
3401
3410
|
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-3.7
|
|
3411
|
+
:stability: deprecated
|
|
3402
3412
|
'''
|
|
3403
3413
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_3_7"))
|
|
3404
3414
|
|
|
3405
3415
|
@jsii.python.classproperty
|
|
3406
3416
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_3_8")
|
|
3407
3417
|
def SYNTHETICS_NODEJS_PUPPETEER_3_8(cls) -> "Runtime":
|
|
3408
|
-
'''``syn-nodejs-puppeteer-3.8`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3418
|
+
'''(deprecated) ``syn-nodejs-puppeteer-3.8`` includes the following: - Lambda runtime Node.js 14.x - Puppeteer-core version 10.1.0 - Chromium version 92.0.4512.
|
|
3409
3419
|
|
|
3410
3420
|
New Features:
|
|
3411
3421
|
|
|
3412
3422
|
- **Profile cleanup**: Chromium profiles are now cleaned up after each canary run.
|
|
3413
3423
|
|
|
3424
|
+
:deprecated: Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS Puppeteer runtime.
|
|
3425
|
+
|
|
3414
3426
|
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-3.8
|
|
3427
|
+
:stability: deprecated
|
|
3415
3428
|
'''
|
|
3416
3429
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_3_8"))
|
|
3417
3430
|
|
|
3418
3431
|
@jsii.python.classproperty
|
|
3419
3432
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_3_9")
|
|
3420
3433
|
def SYNTHETICS_NODEJS_PUPPETEER_3_9(cls) -> "Runtime":
|
|
3421
|
-
'''``syn-nodejs-puppeteer-3.9`` includes the following:.
|
|
3434
|
+
'''(deprecated) ``syn-nodejs-puppeteer-3.9`` includes the following:.
|
|
3422
3435
|
|
|
3423
3436
|
- Lambda runtime Node.js 14.x
|
|
3424
3437
|
- Puppeteer-core version 5.5.0
|
|
@@ -3428,7 +3441,10 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3428
3441
|
|
|
3429
3442
|
- **Dependency upgrades**: Upgrades some third-party dependency packages.
|
|
3430
3443
|
|
|
3444
|
+
:deprecated: Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS Puppeteer runtime.
|
|
3445
|
+
|
|
3431
3446
|
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-3.9
|
|
3447
|
+
:stability: deprecated
|
|
3432
3448
|
'''
|
|
3433
3449
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_3_9"))
|
|
3434
3450
|
|
|
@@ -3471,6 +3487,20 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3471
3487
|
'''
|
|
3472
3488
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_5_1"))
|
|
3473
3489
|
|
|
3490
|
+
@jsii.python.classproperty
|
|
3491
|
+
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_5_2")
|
|
3492
|
+
def SYNTHETICS_NODEJS_PUPPETEER_5_2(cls) -> "Runtime":
|
|
3493
|
+
'''``syn-nodejs-puppeteer-5.2`` includes the following: - Lambda runtime Node.js 16.x - Puppeteer-core version 19.7.0 - Chromium version 111.0.5563.146.
|
|
3494
|
+
|
|
3495
|
+
New Features:
|
|
3496
|
+
|
|
3497
|
+
- **Updated versions of the bundled libraries in Chromium**
|
|
3498
|
+
- **Bug fixes**
|
|
3499
|
+
|
|
3500
|
+
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-5.2
|
|
3501
|
+
'''
|
|
3502
|
+
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_5_2"))
|
|
3503
|
+
|
|
3474
3504
|
@jsii.python.classproperty
|
|
3475
3505
|
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_6_0")
|
|
3476
3506
|
def SYNTHETICS_NODEJS_PUPPETEER_6_0(cls) -> "Runtime":
|
|
@@ -3486,6 +3516,36 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3486
3516
|
'''
|
|
3487
3517
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_6_0"))
|
|
3488
3518
|
|
|
3519
|
+
@jsii.python.classproperty
|
|
3520
|
+
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_6_1")
|
|
3521
|
+
def SYNTHETICS_NODEJS_PUPPETEER_6_1(cls) -> "Runtime":
|
|
3522
|
+
'''``syn-nodejs-puppeteer-6.1`` includes the following: - Lambda runtime Node.js 18.x - Puppeteer-core version 19.7.0 - Chromium version 111.0.5563.146.
|
|
3523
|
+
|
|
3524
|
+
New Features:
|
|
3525
|
+
|
|
3526
|
+
- **Stability improvements**: Added auto-retry logic for handling intermittent Puppeteer launch errors.
|
|
3527
|
+
- **Dependency upgrades**: Upgrades for some third-party dependency packages.
|
|
3528
|
+
- **Canaries without Amazon S3 permissions**: Bug fixes, such that canaries that don't have any Amazon S3 permissions can still run. These canaries with no Amazon S3 permissions won't be able to upload screenshots or other artifacts to Amazon S3. For more information about permissions for canaries, see Required roles and permissions for canaries.
|
|
3529
|
+
|
|
3530
|
+
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-6.1
|
|
3531
|
+
'''
|
|
3532
|
+
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_6_1"))
|
|
3533
|
+
|
|
3534
|
+
@jsii.python.classproperty
|
|
3535
|
+
@jsii.member(jsii_name="SYNTHETICS_NODEJS_PUPPETEER_6_2")
|
|
3536
|
+
def SYNTHETICS_NODEJS_PUPPETEER_6_2(cls) -> "Runtime":
|
|
3537
|
+
'''``syn-nodejs-puppeteer-6.2`` includes the following: - Lambda runtime Node.js 18.x - Puppeteer-core version 19.7.0 - Chromium version 111.0.5563.146.
|
|
3538
|
+
|
|
3539
|
+
New Features:
|
|
3540
|
+
|
|
3541
|
+
- **Updated versions of the bundled libraries in Chromium**
|
|
3542
|
+
- **Ephemeral storage monitoring**: This runtime adds ephemeral storage monitoring in customer accounts.
|
|
3543
|
+
- **Bug fixes**
|
|
3544
|
+
|
|
3545
|
+
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_nodejs_puppeteer.html#CloudWatch_Synthetics_runtimeversion-nodejs-puppeteer-6.1
|
|
3546
|
+
'''
|
|
3547
|
+
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_NODEJS_PUPPETEER_6_2"))
|
|
3548
|
+
|
|
3489
3549
|
@jsii.python.classproperty
|
|
3490
3550
|
@jsii.member(jsii_name="SYNTHETICS_PYTHON_SELENIUM_1_0")
|
|
3491
3551
|
def SYNTHETICS_PYTHON_SELENIUM_1_0(cls) -> "Runtime":
|
|
@@ -3556,6 +3616,19 @@ class Runtime(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Run
|
|
|
3556
3616
|
'''
|
|
3557
3617
|
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_PYTHON_SELENIUM_2_0"))
|
|
3558
3618
|
|
|
3619
|
+
@jsii.python.classproperty
|
|
3620
|
+
@jsii.member(jsii_name="SYNTHETICS_PYTHON_SELENIUM_2_1")
|
|
3621
|
+
def SYNTHETICS_PYTHON_SELENIUM_2_1(cls) -> "Runtime":
|
|
3622
|
+
'''``syn-python-selenium-2.1`` includes the following: - Lambda runtime Python 3.8 - Selenium version 4.15.1 - Chromium version 111.0.5563.146.
|
|
3623
|
+
|
|
3624
|
+
New Features:
|
|
3625
|
+
|
|
3626
|
+
- **Updated versions of the bundled libraries in Chromium**: The Chromium and Selenium dependencies are updated to new versions.
|
|
3627
|
+
|
|
3628
|
+
:see: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Library_python_selenium.html#CloudWatch_Synthetics_runtimeversion-syn-python-selenium-2.0
|
|
3629
|
+
'''
|
|
3630
|
+
return typing.cast("Runtime", jsii.sget(cls, "SYNTHETICS_PYTHON_SELENIUM_2_1"))
|
|
3631
|
+
|
|
3559
3632
|
@builtins.property
|
|
3560
3633
|
@jsii.member(jsii_name="family")
|
|
3561
3634
|
def family(self) -> "RuntimeFamily":
|
|
@@ -3657,7 +3730,7 @@ class Schedule(
|
|
|
3657
3730
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
3658
3731
|
handler="index.handler"
|
|
3659
3732
|
),
|
|
3660
|
-
runtime=synthetics.Runtime.
|
|
3733
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
3661
3734
|
environment_variables={
|
|
3662
3735
|
"stage": "prod"
|
|
3663
3736
|
}
|
|
@@ -3745,7 +3818,7 @@ class Test(metaclass=jsii.JSIIMeta, jsii_type="aws-cdk-lib.aws_synthetics.Test")
|
|
|
3745
3818
|
code=synthetics.Code.from_asset(path.join(__dirname, "canary")),
|
|
3746
3819
|
handler="index.handler"
|
|
3747
3820
|
),
|
|
3748
|
-
runtime=synthetics.Runtime.
|
|
3821
|
+
runtime=synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2,
|
|
3749
3822
|
environment_variables={
|
|
3750
3823
|
"stage": "prod"
|
|
3751
3824
|
}
|
|
@@ -166,8 +166,7 @@ class CfnIdentitySource(
|
|
|
166
166
|
@builtins.property
|
|
167
167
|
@jsii.member(jsii_name="attrDetails")
|
|
168
168
|
def attr_details(self) -> _IResolvable_da3f097b:
|
|
169
|
-
'''
|
|
170
|
-
|
|
169
|
+
'''
|
|
171
170
|
:cloudformationAttribute: Details
|
|
172
171
|
'''
|
|
173
172
|
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrDetails"))
|
|
@@ -2824,7 +2824,8 @@ class CfnService(
|
|
|
2824
2824
|
@builtins.property
|
|
2825
2825
|
@jsii.member(jsii_name="attrDnsEntryDomainName")
|
|
2826
2826
|
def attr_dns_entry_domain_name(self) -> builtins.str:
|
|
2827
|
-
'''
|
|
2827
|
+
'''The domain name of the service.
|
|
2828
|
+
|
|
2828
2829
|
:cloudformationAttribute: DnsEntry.DomainName
|
|
2829
2830
|
'''
|
|
2830
2831
|
return typing.cast(builtins.str, jsii.get(self, "attrDnsEntryDomainName"))
|
|
@@ -2832,7 +2833,8 @@ class CfnService(
|
|
|
2832
2833
|
@builtins.property
|
|
2833
2834
|
@jsii.member(jsii_name="attrDnsEntryHostedZoneId")
|
|
2834
2835
|
def attr_dns_entry_hosted_zone_id(self) -> builtins.str:
|
|
2835
|
-
'''
|
|
2836
|
+
'''The ID of the hosted zone.
|
|
2837
|
+
|
|
2836
2838
|
:cloudformationAttribute: DnsEntry.HostedZoneId
|
|
2837
2839
|
'''
|
|
2838
2840
|
return typing.cast(builtins.str, jsii.get(self, "attrDnsEntryHostedZoneId"))
|
|
@@ -3422,7 +3424,8 @@ class CfnServiceNetworkServiceAssociation(
|
|
|
3422
3424
|
@builtins.property
|
|
3423
3425
|
@jsii.member(jsii_name="attrDnsEntryDomainName")
|
|
3424
3426
|
def attr_dns_entry_domain_name(self) -> builtins.str:
|
|
3425
|
-
'''
|
|
3427
|
+
'''The domain name of the service.
|
|
3428
|
+
|
|
3426
3429
|
:cloudformationAttribute: DnsEntry.DomainName
|
|
3427
3430
|
'''
|
|
3428
3431
|
return typing.cast(builtins.str, jsii.get(self, "attrDnsEntryDomainName"))
|
|
@@ -3430,7 +3433,8 @@ class CfnServiceNetworkServiceAssociation(
|
|
|
3430
3433
|
@builtins.property
|
|
3431
3434
|
@jsii.member(jsii_name="attrDnsEntryHostedZoneId")
|
|
3432
3435
|
def attr_dns_entry_hosted_zone_id(self) -> builtins.str:
|
|
3433
|
-
'''
|
|
3436
|
+
'''The ID of the hosted zone.
|
|
3437
|
+
|
|
3434
3438
|
:cloudformationAttribute: DnsEntry.HostedZoneId
|
|
3435
3439
|
'''
|
|
3436
3440
|
return typing.cast(builtins.str, jsii.get(self, "attrDnsEntryHostedZoneId"))
|