aws-cdk-lib 2.128.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 +2 -10
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.128.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 +4 -0
- aws_cdk/aws_codepipeline/__init__.py +463 -11
- 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 +157 -12
- 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 +3 -1
- aws_cdk/aws_s3objectlambda/__init__.py +7 -4
- aws_cdk/aws_s3outposts/__init__.py +1 -1
- aws_cdk/aws_sagemaker/__init__.py +111 -11
- aws_cdk/aws_servicecatalogappregistry/__init__.py +3 -3
- aws_cdk/aws_sns/__init__.py +185 -38
- 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.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/RECORD +98 -98
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.128.0.dist-info → aws_cdk_lib-2.129.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_glue/__init__.py
CHANGED
|
@@ -290,9 +290,9 @@ class CfnClassifier(
|
|
|
290
290
|
'''A classifier for custom ``CSV`` content.
|
|
291
291
|
|
|
292
292
|
:param allow_single_column: Enables the processing of files that contain only one column.
|
|
293
|
-
:param contains_custom_datatype:
|
|
293
|
+
:param contains_custom_datatype: Indicates whether the CSV file contains custom data types.
|
|
294
294
|
:param contains_header: Indicates whether the CSV file contains a header. A value of ``UNKNOWN`` specifies that the classifier will detect whether the CSV file contains headings. A value of ``PRESENT`` specifies that the CSV file contains headings. A value of ``ABSENT`` specifies that the CSV file does not contain headings.
|
|
295
|
-
:param custom_datatype_configured: Enables the
|
|
295
|
+
:param custom_datatype_configured: Enables the configuration of custom data types.
|
|
296
296
|
:param delimiter: A custom symbol to denote what separates each column entry in the row.
|
|
297
297
|
:param disable_value_trimming: Specifies not to trim values before identifying the type of column values. The default value is ``true`` .
|
|
298
298
|
:param header: A list of strings representing column names.
|
|
@@ -366,7 +366,8 @@ class CfnClassifier(
|
|
|
366
366
|
def contains_custom_datatype(
|
|
367
367
|
self,
|
|
368
368
|
) -> typing.Optional[typing.List[builtins.str]]:
|
|
369
|
-
'''
|
|
369
|
+
'''Indicates whether the CSV file contains custom data types.
|
|
370
|
+
|
|
370
371
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-containscustomdatatype
|
|
371
372
|
'''
|
|
372
373
|
result = self._values.get("contains_custom_datatype")
|
|
@@ -391,7 +392,7 @@ class CfnClassifier(
|
|
|
391
392
|
def custom_datatype_configured(
|
|
392
393
|
self,
|
|
393
394
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
394
|
-
'''Enables the
|
|
395
|
+
'''Enables the configuration of custom data types.
|
|
395
396
|
|
|
396
397
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-classifier-csvclassifier.html#cfn-glue-classifier-csvclassifier-customdatatypeconfigured
|
|
397
398
|
'''
|
|
@@ -2091,12 +2092,12 @@ class CfnCrawler(
|
|
|
2091
2092
|
maximum_traversal_depth: typing.Optional[jsii.Number] = None,
|
|
2092
2093
|
paths: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
2093
2094
|
) -> None:
|
|
2094
|
-
'''Specifies
|
|
2095
|
+
'''Specifies Apache Iceberg data store targets.
|
|
2095
2096
|
|
|
2096
2097
|
:param connection_name: The name of the connection to use to connect to the Iceberg target.
|
|
2097
|
-
:param exclusions: A list of
|
|
2098
|
+
:param exclusions: A list of global patterns used to exclude from the crawl.
|
|
2098
2099
|
:param maximum_traversal_depth: The maximum depth of Amazon S3 paths that the crawler can traverse to discover the Iceberg metadata folder in your Amazon S3 path. Used to limit the crawler run time.
|
|
2099
|
-
:param paths: One or more Amazon S3 paths that contains Iceberg metadata folders as
|
|
2100
|
+
:param paths: One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix .
|
|
2100
2101
|
|
|
2101
2102
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-icebergtarget.html
|
|
2102
2103
|
:exampleMetadata: fixture=_generated
|
|
@@ -2141,9 +2142,7 @@ class CfnCrawler(
|
|
|
2141
2142
|
|
|
2142
2143
|
@builtins.property
|
|
2143
2144
|
def exclusions(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2144
|
-
'''A list of
|
|
2145
|
-
|
|
2146
|
-
For more information, see `Catalog Tables with a Crawler <https://docs.aws.amazon.com/glue/latest/dg/add-crawler.html>`_ .
|
|
2145
|
+
'''A list of global patterns used to exclude from the crawl.
|
|
2147
2146
|
|
|
2148
2147
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-icebergtarget.html#cfn-glue-crawler-icebergtarget-exclusions
|
|
2149
2148
|
'''
|
|
@@ -2163,7 +2162,7 @@ class CfnCrawler(
|
|
|
2163
2162
|
|
|
2164
2163
|
@builtins.property
|
|
2165
2164
|
def paths(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
2166
|
-
'''One or more Amazon S3 paths that contains Iceberg metadata folders as
|
|
2165
|
+
'''One or more Amazon S3 paths that contains Iceberg metadata folders as s3://bucket/prefix .
|
|
2167
2166
|
|
|
2168
2167
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-icebergtarget.html#cfn-glue-crawler-icebergtarget-paths
|
|
2169
2168
|
'''
|
|
@@ -2724,7 +2723,7 @@ class CfnCrawler(
|
|
|
2724
2723
|
:param catalog_targets: Specifies AWS Glue Data Catalog targets.
|
|
2725
2724
|
:param delta_targets: Specifies an array of Delta data store targets.
|
|
2726
2725
|
:param dynamo_db_targets: Specifies Amazon DynamoDB targets.
|
|
2727
|
-
:param iceberg_targets:
|
|
2726
|
+
:param iceberg_targets: Specifies Apache Iceberg data store targets.
|
|
2728
2727
|
:param jdbc_targets: Specifies JDBC targets.
|
|
2729
2728
|
:param mongo_db_targets: A list of Mongo DB targets.
|
|
2730
2729
|
:param s3_targets: Specifies Amazon Simple Storage Service (Amazon S3) targets.
|
|
@@ -2842,7 +2841,8 @@ class CfnCrawler(
|
|
|
2842
2841
|
def iceberg_targets(
|
|
2843
2842
|
self,
|
|
2844
2843
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnCrawler.IcebergTargetProperty"]]]]:
|
|
2845
|
-
'''
|
|
2844
|
+
'''Specifies Apache Iceberg data store targets.
|
|
2845
|
+
|
|
2846
2846
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-crawler-targets.html#cfn-glue-crawler-targets-icebergtargets
|
|
2847
2847
|
'''
|
|
2848
2848
|
result = self._values.get("iceberg_targets")
|
|
@@ -3255,7 +3255,7 @@ class CfnCustomEntityType(
|
|
|
3255
3255
|
:param context_words: A list of context words. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data. If no context words are passed only a regular expression is checked.
|
|
3256
3256
|
:param name: A name for the custom pattern that allows it to be retrieved or deleted later. This name must be unique per AWS account.
|
|
3257
3257
|
:param regex_string: A regular expression string that is used for detecting sensitive data in a custom pattern.
|
|
3258
|
-
:param tags:
|
|
3258
|
+
:param tags: AWS tags that contain a key value pair and may be searched by console, command line, or API.
|
|
3259
3259
|
'''
|
|
3260
3260
|
if __debug__:
|
|
3261
3261
|
type_hints = typing.get_type_hints(_typecheckingstub__513b5382e12edfa036d553799dc23a98aa5ab82a6014b0bf9734336e4df0b878)
|
|
@@ -3355,6 +3355,7 @@ class CfnCustomEntityType(
|
|
|
3355
3355
|
@builtins.property
|
|
3356
3356
|
@jsii.member(jsii_name="tags")
|
|
3357
3357
|
def tags(self) -> typing.Any:
|
|
3358
|
+
'''AWS tags that contain a key value pair and may be searched by console, command line, or API.'''
|
|
3358
3359
|
return typing.cast(typing.Any, jsii.get(self, "tags"))
|
|
3359
3360
|
|
|
3360
3361
|
@tags.setter
|
|
@@ -3389,7 +3390,7 @@ class CfnCustomEntityTypeProps:
|
|
|
3389
3390
|
:param context_words: A list of context words. If none of these context words are found within the vicinity of the regular expression the data will not be detected as sensitive data. If no context words are passed only a regular expression is checked.
|
|
3390
3391
|
:param name: A name for the custom pattern that allows it to be retrieved or deleted later. This name must be unique per AWS account.
|
|
3391
3392
|
:param regex_string: A regular expression string that is used for detecting sensitive data in a custom pattern.
|
|
3392
|
-
:param tags:
|
|
3393
|
+
:param tags: AWS tags that contain a key value pair and may be searched by console, command line, or API.
|
|
3393
3394
|
|
|
3394
3395
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-customentitytype.html
|
|
3395
3396
|
:exampleMetadata: fixture=_generated
|
|
@@ -3460,7 +3461,8 @@ class CfnCustomEntityTypeProps:
|
|
|
3460
3461
|
|
|
3461
3462
|
@builtins.property
|
|
3462
3463
|
def tags(self) -> typing.Any:
|
|
3463
|
-
'''
|
|
3464
|
+
'''AWS tags that contain a key value pair and may be searched by console, command line, or API.
|
|
3465
|
+
|
|
3464
3466
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-customentitytype.html#cfn-glue-customentitytype-tags
|
|
3465
3467
|
'''
|
|
3466
3468
|
result = self._values.get("tags")
|
|
@@ -3507,6 +3509,7 @@ class CfnDataCatalogEncryptionSettings(
|
|
|
3507
3509
|
),
|
|
3508
3510
|
encryption_at_rest=glue.CfnDataCatalogEncryptionSettings.EncryptionAtRestProperty(
|
|
3509
3511
|
catalog_encryption_mode="catalogEncryptionMode",
|
|
3512
|
+
catalog_encryption_service_role="catalogEncryptionServiceRole",
|
|
3510
3513
|
sse_aws_kms_key_id="sseAwsKmsKeyId"
|
|
3511
3514
|
)
|
|
3512
3515
|
)
|
|
@@ -3733,6 +3736,7 @@ class CfnDataCatalogEncryptionSettings(
|
|
|
3733
3736
|
),
|
|
3734
3737
|
encryption_at_rest=glue.CfnDataCatalogEncryptionSettings.EncryptionAtRestProperty(
|
|
3735
3738
|
catalog_encryption_mode="catalogEncryptionMode",
|
|
3739
|
+
catalog_encryption_service_role="catalogEncryptionServiceRole",
|
|
3736
3740
|
sse_aws_kms_key_id="sseAwsKmsKeyId"
|
|
3737
3741
|
)
|
|
3738
3742
|
)
|
|
@@ -3787,6 +3791,7 @@ class CfnDataCatalogEncryptionSettings(
|
|
|
3787
3791
|
jsii_struct_bases=[],
|
|
3788
3792
|
name_mapping={
|
|
3789
3793
|
"catalog_encryption_mode": "catalogEncryptionMode",
|
|
3794
|
+
"catalog_encryption_service_role": "catalogEncryptionServiceRole",
|
|
3790
3795
|
"sse_aws_kms_key_id": "sseAwsKmsKeyId",
|
|
3791
3796
|
},
|
|
3792
3797
|
)
|
|
@@ -3795,11 +3800,13 @@ class CfnDataCatalogEncryptionSettings(
|
|
|
3795
3800
|
self,
|
|
3796
3801
|
*,
|
|
3797
3802
|
catalog_encryption_mode: typing.Optional[builtins.str] = None,
|
|
3803
|
+
catalog_encryption_service_role: typing.Optional[builtins.str] = None,
|
|
3798
3804
|
sse_aws_kms_key_id: typing.Optional[builtins.str] = None,
|
|
3799
3805
|
) -> None:
|
|
3800
3806
|
'''Specifies the encryption-at-rest configuration for the Data Catalog.
|
|
3801
3807
|
|
|
3802
3808
|
:param catalog_encryption_mode: The encryption-at-rest mode for encrypting Data Catalog data.
|
|
3809
|
+
:param catalog_encryption_service_role:
|
|
3803
3810
|
:param sse_aws_kms_key_id: The ID of the AWS KMS key to use for encryption at rest.
|
|
3804
3811
|
|
|
3805
3812
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html
|
|
@@ -3813,16 +3820,20 @@ class CfnDataCatalogEncryptionSettings(
|
|
|
3813
3820
|
|
|
3814
3821
|
encryption_at_rest_property = glue.CfnDataCatalogEncryptionSettings.EncryptionAtRestProperty(
|
|
3815
3822
|
catalog_encryption_mode="catalogEncryptionMode",
|
|
3823
|
+
catalog_encryption_service_role="catalogEncryptionServiceRole",
|
|
3816
3824
|
sse_aws_kms_key_id="sseAwsKmsKeyId"
|
|
3817
3825
|
)
|
|
3818
3826
|
'''
|
|
3819
3827
|
if __debug__:
|
|
3820
3828
|
type_hints = typing.get_type_hints(_typecheckingstub__b55ae3f68b9a52d4f03ea46854dfc3c74490f427c278113fe4c847eaf6e6143d)
|
|
3821
3829
|
check_type(argname="argument catalog_encryption_mode", value=catalog_encryption_mode, expected_type=type_hints["catalog_encryption_mode"])
|
|
3830
|
+
check_type(argname="argument catalog_encryption_service_role", value=catalog_encryption_service_role, expected_type=type_hints["catalog_encryption_service_role"])
|
|
3822
3831
|
check_type(argname="argument sse_aws_kms_key_id", value=sse_aws_kms_key_id, expected_type=type_hints["sse_aws_kms_key_id"])
|
|
3823
3832
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
3824
3833
|
if catalog_encryption_mode is not None:
|
|
3825
3834
|
self._values["catalog_encryption_mode"] = catalog_encryption_mode
|
|
3835
|
+
if catalog_encryption_service_role is not None:
|
|
3836
|
+
self._values["catalog_encryption_service_role"] = catalog_encryption_service_role
|
|
3826
3837
|
if sse_aws_kms_key_id is not None:
|
|
3827
3838
|
self._values["sse_aws_kms_key_id"] = sse_aws_kms_key_id
|
|
3828
3839
|
|
|
@@ -3835,6 +3846,14 @@ class CfnDataCatalogEncryptionSettings(
|
|
|
3835
3846
|
result = self._values.get("catalog_encryption_mode")
|
|
3836
3847
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
3837
3848
|
|
|
3849
|
+
@builtins.property
|
|
3850
|
+
def catalog_encryption_service_role(self) -> typing.Optional[builtins.str]:
|
|
3851
|
+
'''
|
|
3852
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-datacatalogencryptionsettings-encryptionatrest.html#cfn-glue-datacatalogencryptionsettings-encryptionatrest-catalogencryptionservicerole
|
|
3853
|
+
'''
|
|
3854
|
+
result = self._values.get("catalog_encryption_service_role")
|
|
3855
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
3856
|
+
|
|
3838
3857
|
@builtins.property
|
|
3839
3858
|
def sse_aws_kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
3840
3859
|
'''The ID of the AWS KMS key to use for encryption at rest.
|
|
@@ -3894,6 +3913,7 @@ class CfnDataCatalogEncryptionSettingsProps:
|
|
|
3894
3913
|
),
|
|
3895
3914
|
encryption_at_rest=glue.CfnDataCatalogEncryptionSettings.EncryptionAtRestProperty(
|
|
3896
3915
|
catalog_encryption_mode="catalogEncryptionMode",
|
|
3916
|
+
catalog_encryption_service_role="catalogEncryptionServiceRole",
|
|
3897
3917
|
sse_aws_kms_key_id="sseAwsKmsKeyId"
|
|
3898
3918
|
)
|
|
3899
3919
|
)
|
|
@@ -4578,7 +4598,7 @@ class CfnDatabase(
|
|
|
4578
4598
|
|
|
4579
4599
|
:param catalog_id: The ID of the Data Catalog in which the database resides.
|
|
4580
4600
|
:param database_name: The name of the catalog database.
|
|
4581
|
-
:param region: Region of the
|
|
4601
|
+
:param region: The Region of the database.
|
|
4582
4602
|
|
|
4583
4603
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseidentifier.html
|
|
4584
4604
|
:exampleMetadata: fixture=_generated
|
|
@@ -4628,7 +4648,7 @@ class CfnDatabase(
|
|
|
4628
4648
|
|
|
4629
4649
|
@builtins.property
|
|
4630
4650
|
def region(self) -> typing.Optional[builtins.str]:
|
|
4631
|
-
'''Region of the
|
|
4651
|
+
'''The Region of the database.
|
|
4632
4652
|
|
|
4633
4653
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseidentifier.html#cfn-glue-database-databaseidentifier-region
|
|
4634
4654
|
'''
|
|
@@ -11555,7 +11575,7 @@ class CfnTable(
|
|
|
11555
11575
|
:param catalog_id: The ID of the Data Catalog in which to create the ``Table`` .
|
|
11556
11576
|
:param database_name: The name of the database where the table metadata resides. For Hive compatibility, this must be all lowercase.
|
|
11557
11577
|
:param table_input: A structure used to define a table.
|
|
11558
|
-
:param open_table_format_input:
|
|
11578
|
+
:param open_table_format_input: Specifies an ``OpenTableFormatInput`` structure when creating an open format table.
|
|
11559
11579
|
'''
|
|
11560
11580
|
if __debug__:
|
|
11561
11581
|
type_hints = typing.get_type_hints(_typecheckingstub__63721068e81107cadbf3e418ec393de98f88a141604f2bb1044b5ae302e922ad)
|
|
@@ -11662,7 +11682,7 @@ class CfnTable(
|
|
|
11662
11682
|
def open_table_format_input(
|
|
11663
11683
|
self,
|
|
11664
11684
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.OpenTableFormatInputProperty"]]:
|
|
11665
|
-
'''
|
|
11685
|
+
'''Specifies an ``OpenTableFormatInput`` structure when creating an open format table.'''
|
|
11666
11686
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnTable.OpenTableFormatInputProperty"]], jsii.get(self, "openTableFormatInput"))
|
|
11667
11687
|
|
|
11668
11688
|
@open_table_format_input.setter
|
|
@@ -11775,9 +11795,9 @@ class CfnTable(
|
|
|
11775
11795
|
metadata_operation: typing.Optional[builtins.str] = None,
|
|
11776
11796
|
version: typing.Optional[builtins.str] = None,
|
|
11777
11797
|
) -> None:
|
|
11778
|
-
'''
|
|
11798
|
+
'''Specifies an input structure that defines an Apache Iceberg metadata table.
|
|
11779
11799
|
|
|
11780
|
-
:param metadata_operation: A required metadata operation. Can only be set to
|
|
11800
|
+
:param metadata_operation: A required metadata operation. Can only be set to CREATE.
|
|
11781
11801
|
:param version: The table version for the Iceberg table. Defaults to 2.
|
|
11782
11802
|
|
|
11783
11803
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-iceberginput.html
|
|
@@ -11808,7 +11828,7 @@ class CfnTable(
|
|
|
11808
11828
|
def metadata_operation(self) -> typing.Optional[builtins.str]:
|
|
11809
11829
|
'''A required metadata operation.
|
|
11810
11830
|
|
|
11811
|
-
Can only be set to
|
|
11831
|
+
Can only be set to CREATE.
|
|
11812
11832
|
|
|
11813
11833
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-iceberginput.html#cfn-glue-table-iceberginput-metadataoperation
|
|
11814
11834
|
'''
|
|
@@ -11848,7 +11868,7 @@ class CfnTable(
|
|
|
11848
11868
|
*,
|
|
11849
11869
|
iceberg_input: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnTable.IcebergInputProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
11850
11870
|
) -> None:
|
|
11851
|
-
'''
|
|
11871
|
+
'''Specifies an ``OpenTableFormatInput`` structure when creating an open format table.
|
|
11852
11872
|
|
|
11853
11873
|
:param iceberg_input: Specifies an ``IcebergInput`` structure that defines an Apache Iceberg metadata table.
|
|
11854
11874
|
|
|
@@ -12663,7 +12683,7 @@ class CfnTable(
|
|
|
12663
12683
|
:param catalog_id: The ID of the Data Catalog in which the table resides.
|
|
12664
12684
|
:param database_name: The name of the catalog database that contains the target table.
|
|
12665
12685
|
:param name: The name of the target table.
|
|
12666
|
-
:param region: Region of the
|
|
12686
|
+
:param region: The Region of the table.
|
|
12667
12687
|
|
|
12668
12688
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableidentifier.html
|
|
12669
12689
|
:exampleMetadata: fixture=_generated
|
|
@@ -12726,7 +12746,7 @@ class CfnTable(
|
|
|
12726
12746
|
|
|
12727
12747
|
@builtins.property
|
|
12728
12748
|
def region(self) -> typing.Optional[builtins.str]:
|
|
12729
|
-
'''Region of the
|
|
12749
|
+
'''The Region of the table.
|
|
12730
12750
|
|
|
12731
12751
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-table-tableidentifier.html#cfn-glue-table-tableidentifier-region
|
|
12732
12752
|
'''
|
|
@@ -13046,7 +13066,7 @@ class CfnTableOptimizer(
|
|
|
13046
13066
|
metaclass=jsii.JSIIMeta,
|
|
13047
13067
|
jsii_type="aws-cdk-lib.aws_glue.CfnTableOptimizer",
|
|
13048
13068
|
):
|
|
13049
|
-
'''
|
|
13069
|
+
'''A resource that describes the AWS Glue resource for enabling compaction to improve read performance for open table formats.
|
|
13050
13070
|
|
|
13051
13071
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-tableoptimizer.html
|
|
13052
13072
|
:cloudformationResource: AWS::Glue::TableOptimizer
|
|
@@ -13084,11 +13104,11 @@ class CfnTableOptimizer(
|
|
|
13084
13104
|
'''
|
|
13085
13105
|
:param scope: Scope in which this resource is defined.
|
|
13086
13106
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
13087
|
-
:param catalog_id:
|
|
13107
|
+
:param catalog_id: The catalog ID of the table.
|
|
13088
13108
|
:param database_name: The name of the database. For Hive compatibility, this is folded to lowercase when it is stored.
|
|
13089
13109
|
:param table_name: The table name. For Hive compatibility, this must be entirely lowercase.
|
|
13090
13110
|
:param table_optimizer_configuration:
|
|
13091
|
-
:param type:
|
|
13111
|
+
:param type: The type of table optimizer. Currently, the only valid value is compaction.
|
|
13092
13112
|
'''
|
|
13093
13113
|
if __debug__:
|
|
13094
13114
|
type_hints = typing.get_type_hints(_typecheckingstub__b4e894dd19e24d3b1945f7e3626cca9af994eb9445db78ad5465965094995567)
|
|
@@ -13150,6 +13170,7 @@ class CfnTableOptimizer(
|
|
|
13150
13170
|
@builtins.property
|
|
13151
13171
|
@jsii.member(jsii_name="catalogId")
|
|
13152
13172
|
def catalog_id(self) -> builtins.str:
|
|
13173
|
+
'''The catalog ID of the table.'''
|
|
13153
13174
|
return typing.cast(builtins.str, jsii.get(self, "catalogId"))
|
|
13154
13175
|
|
|
13155
13176
|
@catalog_id.setter
|
|
@@ -13205,6 +13226,7 @@ class CfnTableOptimizer(
|
|
|
13205
13226
|
@builtins.property
|
|
13206
13227
|
@jsii.member(jsii_name="type")
|
|
13207
13228
|
def type(self) -> builtins.str:
|
|
13229
|
+
'''The type of table optimizer.'''
|
|
13208
13230
|
return typing.cast(builtins.str, jsii.get(self, "type"))
|
|
13209
13231
|
|
|
13210
13232
|
@type.setter
|
|
@@ -13223,12 +13245,13 @@ class CfnTableOptimizer(
|
|
|
13223
13245
|
def __init__(
|
|
13224
13246
|
self,
|
|
13225
13247
|
*,
|
|
13226
|
-
enabled: typing.
|
|
13227
|
-
role_arn:
|
|
13248
|
+
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
13249
|
+
role_arn: builtins.str,
|
|
13228
13250
|
) -> None:
|
|
13229
|
-
'''
|
|
13230
|
-
|
|
13231
|
-
:param
|
|
13251
|
+
'''Specifies configuration details of a table optimizer.
|
|
13252
|
+
|
|
13253
|
+
:param enabled: Whether the table optimization is enabled.
|
|
13254
|
+
:param role_arn: A role passed by the caller which gives the service permission to update the resources associated with the optimizer on the caller's behalf.
|
|
13232
13255
|
|
|
13233
13256
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-tableoptimizerconfiguration.html
|
|
13234
13257
|
:exampleMetadata: fixture=_generated
|
|
@@ -13248,29 +13271,30 @@ class CfnTableOptimizer(
|
|
|
13248
13271
|
type_hints = typing.get_type_hints(_typecheckingstub__666694d6c0728808477673b52278e31d95b87b4226552b0f2f91addb33aeed3e)
|
|
13249
13272
|
check_type(argname="argument enabled", value=enabled, expected_type=type_hints["enabled"])
|
|
13250
13273
|
check_type(argname="argument role_arn", value=role_arn, expected_type=type_hints["role_arn"])
|
|
13251
|
-
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
13252
|
-
|
|
13253
|
-
|
|
13254
|
-
|
|
13255
|
-
self._values["role_arn"] = role_arn
|
|
13274
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
13275
|
+
"enabled": enabled,
|
|
13276
|
+
"role_arn": role_arn,
|
|
13277
|
+
}
|
|
13256
13278
|
|
|
13257
13279
|
@builtins.property
|
|
13258
|
-
def enabled(
|
|
13259
|
-
|
|
13260
|
-
|
|
13261
|
-
'''
|
|
13280
|
+
def enabled(self) -> typing.Union[builtins.bool, _IResolvable_da3f097b]:
|
|
13281
|
+
'''Whether the table optimization is enabled.
|
|
13282
|
+
|
|
13262
13283
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-tableoptimizerconfiguration.html#cfn-glue-tableoptimizer-tableoptimizerconfiguration-enabled
|
|
13263
13284
|
'''
|
|
13264
13285
|
result = self._values.get("enabled")
|
|
13265
|
-
|
|
13286
|
+
assert result is not None, "Required property 'enabled' is missing"
|
|
13287
|
+
return typing.cast(typing.Union[builtins.bool, _IResolvable_da3f097b], result)
|
|
13266
13288
|
|
|
13267
13289
|
@builtins.property
|
|
13268
|
-
def role_arn(self) ->
|
|
13269
|
-
'''
|
|
13290
|
+
def role_arn(self) -> builtins.str:
|
|
13291
|
+
'''A role passed by the caller which gives the service permission to update the resources associated with the optimizer on the caller's behalf.
|
|
13292
|
+
|
|
13270
13293
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-tableoptimizer-tableoptimizerconfiguration.html#cfn-glue-tableoptimizer-tableoptimizerconfiguration-rolearn
|
|
13271
13294
|
'''
|
|
13272
13295
|
result = self._values.get("role_arn")
|
|
13273
|
-
|
|
13296
|
+
assert result is not None, "Required property 'role_arn' is missing"
|
|
13297
|
+
return typing.cast(builtins.str, result)
|
|
13274
13298
|
|
|
13275
13299
|
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
13276
13300
|
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
@@ -13307,11 +13331,11 @@ class CfnTableOptimizerProps:
|
|
|
13307
13331
|
) -> None:
|
|
13308
13332
|
'''Properties for defining a ``CfnTableOptimizer``.
|
|
13309
13333
|
|
|
13310
|
-
:param catalog_id:
|
|
13334
|
+
:param catalog_id: The catalog ID of the table.
|
|
13311
13335
|
:param database_name: The name of the database. For Hive compatibility, this is folded to lowercase when it is stored.
|
|
13312
13336
|
:param table_name: The table name. For Hive compatibility, this must be entirely lowercase.
|
|
13313
13337
|
:param table_optimizer_configuration:
|
|
13314
|
-
:param type:
|
|
13338
|
+
:param type: The type of table optimizer. Currently, the only valid value is compaction.
|
|
13315
13339
|
|
|
13316
13340
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-tableoptimizer.html
|
|
13317
13341
|
:exampleMetadata: fixture=_generated
|
|
@@ -13350,7 +13374,8 @@ class CfnTableOptimizerProps:
|
|
|
13350
13374
|
|
|
13351
13375
|
@builtins.property
|
|
13352
13376
|
def catalog_id(self) -> builtins.str:
|
|
13353
|
-
'''
|
|
13377
|
+
'''The catalog ID of the table.
|
|
13378
|
+
|
|
13354
13379
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-tableoptimizer.html#cfn-glue-tableoptimizer-catalogid
|
|
13355
13380
|
'''
|
|
13356
13381
|
result = self._values.get("catalog_id")
|
|
@@ -13394,7 +13419,10 @@ class CfnTableOptimizerProps:
|
|
|
13394
13419
|
|
|
13395
13420
|
@builtins.property
|
|
13396
13421
|
def type(self) -> builtins.str:
|
|
13397
|
-
'''
|
|
13422
|
+
'''The type of table optimizer.
|
|
13423
|
+
|
|
13424
|
+
Currently, the only valid value is compaction.
|
|
13425
|
+
|
|
13398
13426
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-tableoptimizer.html#cfn-glue-tableoptimizer-type
|
|
13399
13427
|
'''
|
|
13400
13428
|
result = self._values.get("type")
|
|
@@ -13437,7 +13465,7 @@ class CfnTableProps:
|
|
|
13437
13465
|
:param catalog_id: The ID of the Data Catalog in which to create the ``Table`` .
|
|
13438
13466
|
:param database_name: The name of the database where the table metadata resides. For Hive compatibility, this must be all lowercase.
|
|
13439
13467
|
:param table_input: A structure used to define a table.
|
|
13440
|
-
:param open_table_format_input:
|
|
13468
|
+
:param open_table_format_input: Specifies an ``OpenTableFormatInput`` structure when creating an open format table.
|
|
13441
13469
|
|
|
13442
13470
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html
|
|
13443
13471
|
:exampleMetadata: fixture=_generated
|
|
@@ -13579,7 +13607,7 @@ class CfnTableProps:
|
|
|
13579
13607
|
def open_table_format_input(
|
|
13580
13608
|
self,
|
|
13581
13609
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnTable.OpenTableFormatInputProperty]]:
|
|
13582
|
-
'''
|
|
13610
|
+
'''Specifies an ``OpenTableFormatInput`` structure when creating an open format table.
|
|
13583
13611
|
|
|
13584
13612
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-table.html#cfn-glue-table-opentableformatinput
|
|
13585
13613
|
'''
|
|
@@ -15498,6 +15526,7 @@ def _typecheckingstub__f00201a45ca678da32495cdf8e4750f6ee26f926e576c207f665e4982
|
|
|
15498
15526
|
def _typecheckingstub__b55ae3f68b9a52d4f03ea46854dfc3c74490f427c278113fe4c847eaf6e6143d(
|
|
15499
15527
|
*,
|
|
15500
15528
|
catalog_encryption_mode: typing.Optional[builtins.str] = None,
|
|
15529
|
+
catalog_encryption_service_role: typing.Optional[builtins.str] = None,
|
|
15501
15530
|
sse_aws_kms_key_id: typing.Optional[builtins.str] = None,
|
|
15502
15531
|
) -> None:
|
|
15503
15532
|
"""Type checking stubs"""
|
|
@@ -16914,8 +16943,8 @@ def _typecheckingstub__ed41a967c471f3fd661f6d5f9a4dc138f08aae636c030322c2e80ced1
|
|
|
16914
16943
|
|
|
16915
16944
|
def _typecheckingstub__666694d6c0728808477673b52278e31d95b87b4226552b0f2f91addb33aeed3e(
|
|
16916
16945
|
*,
|
|
16917
|
-
enabled: typing.
|
|
16918
|
-
role_arn:
|
|
16946
|
+
enabled: typing.Union[builtins.bool, _IResolvable_da3f097b],
|
|
16947
|
+
role_arn: builtins.str,
|
|
16919
16948
|
) -> None:
|
|
16920
16949
|
"""Type checking stubs"""
|
|
16921
16950
|
pass
|
|
@@ -3018,8 +3018,8 @@ class CfnMissionProfile(
|
|
|
3018
3018
|
:param minimum_viable_contact_duration_seconds: Minimum length of a contact in seconds that Ground Station will return when listing contacts. Ground Station will not return contacts shorter than this duration.
|
|
3019
3019
|
:param name: The name of the mission profile.
|
|
3020
3020
|
:param tracking_config_arn: The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
|
|
3021
|
-
:param contact_post_pass_duration_seconds: Amount of time in seconds after a contact ends that you’d like to receive a
|
|
3022
|
-
:param contact_pre_pass_duration_seconds: Amount of time in seconds prior to contact start that you'd like to receive a
|
|
3021
|
+
:param contact_post_pass_duration_seconds: Amount of time in seconds after a contact ends that you’d like to receive a Ground Station Contact State Change indicating the pass has finished.
|
|
3022
|
+
:param contact_pre_pass_duration_seconds: Amount of time in seconds prior to contact start that you'd like to receive a Ground Station Contact State Change Event indicating an upcoming pass.
|
|
3023
3023
|
:param streams_kms_key:
|
|
3024
3024
|
:param streams_kms_role: The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
|
|
3025
3025
|
:param tags: Tags assigned to the mission profile.
|
|
@@ -3170,7 +3170,7 @@ class CfnMissionProfile(
|
|
|
3170
3170
|
@builtins.property
|
|
3171
3171
|
@jsii.member(jsii_name="contactPostPassDurationSeconds")
|
|
3172
3172
|
def contact_post_pass_duration_seconds(self) -> typing.Optional[jsii.Number]:
|
|
3173
|
-
'''Amount of time in seconds after a contact ends that you’d like to receive a
|
|
3173
|
+
'''Amount of time in seconds after a contact ends that you’d like to receive a Ground Station Contact State Change indicating the pass has finished.'''
|
|
3174
3174
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "contactPostPassDurationSeconds"))
|
|
3175
3175
|
|
|
3176
3176
|
@contact_post_pass_duration_seconds.setter
|
|
@@ -3186,7 +3186,7 @@ class CfnMissionProfile(
|
|
|
3186
3186
|
@builtins.property
|
|
3187
3187
|
@jsii.member(jsii_name="contactPrePassDurationSeconds")
|
|
3188
3188
|
def contact_pre_pass_duration_seconds(self) -> typing.Optional[jsii.Number]:
|
|
3189
|
-
'''Amount of time in seconds prior to contact start that you'd like to receive a
|
|
3189
|
+
'''Amount of time in seconds prior to contact start that you'd like to receive a Ground Station Contact State Change Event indicating an upcoming pass.'''
|
|
3190
3190
|
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "contactPrePassDurationSeconds"))
|
|
3191
3191
|
|
|
3192
3192
|
@contact_pre_pass_duration_seconds.setter
|
|
@@ -3419,8 +3419,8 @@ class CfnMissionProfileProps:
|
|
|
3419
3419
|
:param minimum_viable_contact_duration_seconds: Minimum length of a contact in seconds that Ground Station will return when listing contacts. Ground Station will not return contacts shorter than this duration.
|
|
3420
3420
|
:param name: The name of the mission profile.
|
|
3421
3421
|
:param tracking_config_arn: The ARN of a tracking config objects that defines how to track the satellite through the sky during a contact.
|
|
3422
|
-
:param contact_post_pass_duration_seconds: Amount of time in seconds after a contact ends that you’d like to receive a
|
|
3423
|
-
:param contact_pre_pass_duration_seconds: Amount of time in seconds prior to contact start that you'd like to receive a
|
|
3422
|
+
:param contact_post_pass_duration_seconds: Amount of time in seconds after a contact ends that you’d like to receive a Ground Station Contact State Change indicating the pass has finished.
|
|
3423
|
+
:param contact_pre_pass_duration_seconds: Amount of time in seconds prior to contact start that you'd like to receive a Ground Station Contact State Change Event indicating an upcoming pass.
|
|
3424
3424
|
:param streams_kms_key:
|
|
3425
3425
|
:param streams_kms_role: The ARN of the KMS Key or Alias Key role used to define permissions on KMS Key usage.
|
|
3426
3426
|
:param tags: Tags assigned to the mission profile.
|
|
@@ -3533,9 +3533,7 @@ class CfnMissionProfileProps:
|
|
|
3533
3533
|
|
|
3534
3534
|
@builtins.property
|
|
3535
3535
|
def contact_post_pass_duration_seconds(self) -> typing.Optional[jsii.Number]:
|
|
3536
|
-
'''Amount of time in seconds after a contact ends that you’d like to receive a
|
|
3537
|
-
|
|
3538
|
-
For more information on CloudWatch Events, see the `What Is CloudWatch Events? <https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/WhatIsCloudWatchEvents.html>`_
|
|
3536
|
+
'''Amount of time in seconds after a contact ends that you’d like to receive a Ground Station Contact State Change indicating the pass has finished.
|
|
3539
3537
|
|
|
3540
3538
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactpostpassdurationseconds
|
|
3541
3539
|
'''
|
|
@@ -3544,9 +3542,7 @@ class CfnMissionProfileProps:
|
|
|
3544
3542
|
|
|
3545
3543
|
@builtins.property
|
|
3546
3544
|
def contact_pre_pass_duration_seconds(self) -> typing.Optional[jsii.Number]:
|
|
3547
|
-
'''Amount of time in seconds prior to contact start that you'd like to receive a
|
|
3548
|
-
|
|
3549
|
-
For more information on CloudWatch Events, see the `What Is CloudWatch Events? <https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/WhatIsCloudWatchEvents.html>`_
|
|
3545
|
+
'''Amount of time in seconds prior to contact start that you'd like to receive a Ground Station Contact State Change Event indicating an upcoming pass.
|
|
3550
3546
|
|
|
3551
3547
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#cfn-groundstation-missionprofile-contactprepassdurationseconds
|
|
3552
3548
|
'''
|