aws-cdk-lib 2.165.0__py3-none-any.whl → 2.167.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 +1 -1
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.165.0.jsii.tgz → aws-cdk-lib@2.167.0.jsii.tgz} +0 -0
- aws_cdk/aws_apigateway/__init__.py +9 -0
- aws_cdk/aws_appsync/__init__.py +2271 -359
- aws_cdk/aws_backup/__init__.py +57 -31
- aws_cdk/aws_bedrock/__init__.py +994 -197
- aws_cdk/aws_cleanrooms/__init__.py +66 -5
- aws_cdk/aws_cloudfront/__init__.py +21 -3
- aws_cdk/aws_cloudfront/experimental/__init__.py +3 -3
- aws_cdk/aws_codebuild/__init__.py +59 -29
- aws_cdk/aws_codepipeline/__init__.py +98 -5
- aws_cdk/aws_codestar/__init__.py +1 -1
- aws_cdk/aws_cognito/__init__.py +0 -8
- aws_cdk/aws_connect/__init__.py +1 -1
- aws_cdk/aws_datasync/__init__.py +60 -7
- aws_cdk/aws_devopsguru/__init__.py +2 -2
- aws_cdk/aws_dms/__init__.py +762 -0
- aws_cdk/aws_dynamodb/__init__.py +13 -8
- aws_cdk/aws_ec2/__init__.py +316 -11
- aws_cdk/aws_ecs/__init__.py +20 -7
- aws_cdk/aws_elasticache/__init__.py +16 -9
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +73 -46
- aws_cdk/aws_emrserverless/__init__.py +35 -33
- aws_cdk/aws_events/__init__.py +25 -30
- aws_cdk/aws_gamelift/__init__.py +52 -40
- aws_cdk/aws_inspectorv2/__init__.py +6 -12
- aws_cdk/aws_kinesis/__init__.py +297 -1
- aws_cdk/aws_kms/__init__.py +2 -0
- aws_cdk/aws_lambda/__init__.py +339 -22
- aws_cdk/aws_lambda_nodejs/__init__.py +3 -3
- aws_cdk/aws_logs/__init__.py +214 -0
- aws_cdk/aws_m2/__init__.py +58 -58
- aws_cdk/aws_mediapackagev2/__init__.py +191 -0
- aws_cdk/aws_networkfirewall/__init__.py +14 -5
- aws_cdk/aws_nimblestudio/__init__.py +6 -103
- aws_cdk/aws_opensearchservice/__init__.py +969 -0
- aws_cdk/aws_pipes/__init__.py +1 -1
- aws_cdk/aws_qbusiness/__init__.py +2 -0
- aws_cdk/aws_quicksight/__init__.py +481 -10
- aws_cdk/aws_rds/__init__.py +667 -16
- aws_cdk/aws_route53/__init__.py +38 -12
- aws_cdk/aws_s3_assets/__init__.py +37 -0
- aws_cdk/aws_s3_deployment/__init__.py +18 -7
- aws_cdk/aws_sagemaker/__init__.py +61 -25
- aws_cdk/aws_secretsmanager/__init__.py +2 -1
- aws_cdk/aws_servicecatalog/__init__.py +52 -4
- aws_cdk/aws_ses/__init__.py +22 -1
- aws_cdk/aws_sqs/__init__.py +12 -9
- aws_cdk/aws_stepfunctions/__init__.py +8 -0
- aws_cdk/aws_synthetics/__init__.py +133 -1
- aws_cdk/aws_timestream/__init__.py +41 -0
- aws_cdk/aws_wisdom/__init__.py +2348 -54
- aws_cdk/triggers/__init__.py +3 -3
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/RECORD +60 -60
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/WHEEL +1 -1
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.165.0.dist-info → aws_cdk_lib-2.167.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_backup/__init__.py
CHANGED
|
@@ -4696,14 +4696,14 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4696
4696
|
'''
|
|
4697
4697
|
:param scope: Scope in which this resource is defined.
|
|
4698
4698
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
4699
|
-
:param backup_vault_name:
|
|
4700
|
-
:param max_retention_days:
|
|
4701
|
-
:param min_retention_days:
|
|
4702
|
-
:param access_policy:
|
|
4703
|
-
:param backup_vault_tags:
|
|
4704
|
-
:param notifications:
|
|
4705
|
-
:param vault_state:
|
|
4706
|
-
:param vault_type:
|
|
4699
|
+
:param backup_vault_name: The name of a logical container where backups are stored. Logically air-gapped backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
|
4700
|
+
:param max_retention_days: The maximum retention period that the vault retains its recovery points.
|
|
4701
|
+
:param min_retention_days: This setting specifies the minimum retention period that the vault retains its recovery points. The minimum value accepted is 7 days.
|
|
4702
|
+
:param access_policy: The backup vault access policy document in JSON format.
|
|
4703
|
+
:param backup_vault_tags: The tags to assign to the vault.
|
|
4704
|
+
:param notifications: Returns event notifications for the specified backup vault.
|
|
4705
|
+
:param vault_state: The current state of the vault.
|
|
4706
|
+
:param vault_type: The type of vault described.
|
|
4707
4707
|
'''
|
|
4708
4708
|
if __debug__:
|
|
4709
4709
|
type_hints = typing.get_type_hints(_typecheckingstub__f46c2d817c43abec9e204fc8a7211b43dd15b93e11a637e67a9711664c3afd52)
|
|
@@ -4782,6 +4782,7 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4782
4782
|
@builtins.property
|
|
4783
4783
|
@jsii.member(jsii_name="backupVaultName")
|
|
4784
4784
|
def backup_vault_name(self) -> builtins.str:
|
|
4785
|
+
'''The name of a logical container where backups are stored.'''
|
|
4785
4786
|
return typing.cast(builtins.str, jsii.get(self, "backupVaultName"))
|
|
4786
4787
|
|
|
4787
4788
|
@backup_vault_name.setter
|
|
@@ -4794,6 +4795,7 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4794
4795
|
@builtins.property
|
|
4795
4796
|
@jsii.member(jsii_name="maxRetentionDays")
|
|
4796
4797
|
def max_retention_days(self) -> jsii.Number:
|
|
4798
|
+
'''The maximum retention period that the vault retains its recovery points.'''
|
|
4797
4799
|
return typing.cast(jsii.Number, jsii.get(self, "maxRetentionDays"))
|
|
4798
4800
|
|
|
4799
4801
|
@max_retention_days.setter
|
|
@@ -4806,6 +4808,7 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4806
4808
|
@builtins.property
|
|
4807
4809
|
@jsii.member(jsii_name="minRetentionDays")
|
|
4808
4810
|
def min_retention_days(self) -> jsii.Number:
|
|
4811
|
+
'''This setting specifies the minimum retention period that the vault retains its recovery points.'''
|
|
4809
4812
|
return typing.cast(jsii.Number, jsii.get(self, "minRetentionDays"))
|
|
4810
4813
|
|
|
4811
4814
|
@min_retention_days.setter
|
|
@@ -4818,6 +4821,7 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4818
4821
|
@builtins.property
|
|
4819
4822
|
@jsii.member(jsii_name="accessPolicy")
|
|
4820
4823
|
def access_policy(self) -> typing.Any:
|
|
4824
|
+
'''The backup vault access policy document in JSON format.'''
|
|
4821
4825
|
return typing.cast(typing.Any, jsii.get(self, "accessPolicy"))
|
|
4822
4826
|
|
|
4823
4827
|
@access_policy.setter
|
|
@@ -4832,6 +4836,7 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4832
4836
|
def backup_vault_tags(
|
|
4833
4837
|
self,
|
|
4834
4838
|
) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
4839
|
+
'''The tags to assign to the vault.'''
|
|
4835
4840
|
return typing.cast(typing.Optional[typing.Mapping[builtins.str, builtins.str]], jsii.get(self, "backupVaultTags"))
|
|
4836
4841
|
|
|
4837
4842
|
@backup_vault_tags.setter
|
|
@@ -4849,6 +4854,7 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4849
4854
|
def notifications(
|
|
4850
4855
|
self,
|
|
4851
4856
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLogicallyAirGappedBackupVault.NotificationObjectTypeProperty"]]:
|
|
4857
|
+
'''Returns event notifications for the specified backup vault.'''
|
|
4852
4858
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnLogicallyAirGappedBackupVault.NotificationObjectTypeProperty"]], jsii.get(self, "notifications"))
|
|
4853
4859
|
|
|
4854
4860
|
@notifications.setter
|
|
@@ -4864,6 +4870,7 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4864
4870
|
@builtins.property
|
|
4865
4871
|
@jsii.member(jsii_name="vaultState")
|
|
4866
4872
|
def vault_state(self) -> typing.Optional[builtins.str]:
|
|
4873
|
+
'''The current state of the vault.'''
|
|
4867
4874
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "vaultState"))
|
|
4868
4875
|
|
|
4869
4876
|
@vault_state.setter
|
|
@@ -4876,6 +4883,7 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4876
4883
|
@builtins.property
|
|
4877
4884
|
@jsii.member(jsii_name="vaultType")
|
|
4878
4885
|
def vault_type(self) -> typing.Optional[builtins.str]:
|
|
4886
|
+
'''The type of vault described.'''
|
|
4879
4887
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "vaultType"))
|
|
4880
4888
|
|
|
4881
4889
|
@vault_type.setter
|
|
@@ -4901,8 +4909,8 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4901
4909
|
sns_topic_arn: builtins.str,
|
|
4902
4910
|
) -> None:
|
|
4903
4911
|
'''
|
|
4904
|
-
:param backup_vault_events:
|
|
4905
|
-
:param sns_topic_arn:
|
|
4912
|
+
:param backup_vault_events: An array of events that indicate the status of jobs to back up resources to the backup vault.
|
|
4913
|
+
:param sns_topic_arn: The Amazon Resource Name (ARN) that specifies the topic for a backup vault’s events; for example, ``arn:aws:sns:us-west-2:111122223333:MyVaultTopic`` .
|
|
4906
4914
|
|
|
4907
4915
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-logicallyairgappedbackupvault-notificationobjecttype.html
|
|
4908
4916
|
:exampleMetadata: fixture=_generated
|
|
@@ -4929,7 +4937,8 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4929
4937
|
|
|
4930
4938
|
@builtins.property
|
|
4931
4939
|
def backup_vault_events(self) -> typing.List[builtins.str]:
|
|
4932
|
-
'''
|
|
4940
|
+
'''An array of events that indicate the status of jobs to back up resources to the backup vault.
|
|
4941
|
+
|
|
4933
4942
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-logicallyairgappedbackupvault-notificationobjecttype.html#cfn-backup-logicallyairgappedbackupvault-notificationobjecttype-backupvaultevents
|
|
4934
4943
|
'''
|
|
4935
4944
|
result = self._values.get("backup_vault_events")
|
|
@@ -4938,7 +4947,10 @@ class CfnLogicallyAirGappedBackupVault(
|
|
|
4938
4947
|
|
|
4939
4948
|
@builtins.property
|
|
4940
4949
|
def sns_topic_arn(self) -> builtins.str:
|
|
4941
|
-
'''
|
|
4950
|
+
'''The Amazon Resource Name (ARN) that specifies the topic for a backup vault’s events;
|
|
4951
|
+
|
|
4952
|
+
for example, ``arn:aws:sns:us-west-2:111122223333:MyVaultTopic`` .
|
|
4953
|
+
|
|
4942
4954
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-logicallyairgappedbackupvault-notificationobjecttype.html#cfn-backup-logicallyairgappedbackupvault-notificationobjecttype-snstopicarn
|
|
4943
4955
|
'''
|
|
4944
4956
|
result = self._values.get("sns_topic_arn")
|
|
@@ -4986,14 +4998,14 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
4986
4998
|
) -> None:
|
|
4987
4999
|
'''Properties for defining a ``CfnLogicallyAirGappedBackupVault``.
|
|
4988
5000
|
|
|
4989
|
-
:param backup_vault_name:
|
|
4990
|
-
:param max_retention_days:
|
|
4991
|
-
:param min_retention_days:
|
|
4992
|
-
:param access_policy:
|
|
4993
|
-
:param backup_vault_tags:
|
|
4994
|
-
:param notifications:
|
|
4995
|
-
:param vault_state:
|
|
4996
|
-
:param vault_type:
|
|
5001
|
+
:param backup_vault_name: The name of a logical container where backups are stored. Logically air-gapped backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
|
5002
|
+
:param max_retention_days: The maximum retention period that the vault retains its recovery points.
|
|
5003
|
+
:param min_retention_days: This setting specifies the minimum retention period that the vault retains its recovery points. The minimum value accepted is 7 days.
|
|
5004
|
+
:param access_policy: The backup vault access policy document in JSON format.
|
|
5005
|
+
:param backup_vault_tags: The tags to assign to the vault.
|
|
5006
|
+
:param notifications: Returns event notifications for the specified backup vault.
|
|
5007
|
+
:param vault_state: The current state of the vault.
|
|
5008
|
+
:param vault_type: The type of vault described.
|
|
4997
5009
|
|
|
4998
5010
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html
|
|
4999
5011
|
:exampleMetadata: fixture=_generated
|
|
@@ -5052,7 +5064,10 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5052
5064
|
|
|
5053
5065
|
@builtins.property
|
|
5054
5066
|
def backup_vault_name(self) -> builtins.str:
|
|
5055
|
-
'''
|
|
5067
|
+
'''The name of a logical container where backups are stored.
|
|
5068
|
+
|
|
5069
|
+
Logically air-gapped backup vaults are identified by names that are unique to the account used to create them and the Region where they are created.
|
|
5070
|
+
|
|
5056
5071
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html#cfn-backup-logicallyairgappedbackupvault-backupvaultname
|
|
5057
5072
|
'''
|
|
5058
5073
|
result = self._values.get("backup_vault_name")
|
|
@@ -5061,7 +5076,8 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5061
5076
|
|
|
5062
5077
|
@builtins.property
|
|
5063
5078
|
def max_retention_days(self) -> jsii.Number:
|
|
5064
|
-
'''
|
|
5079
|
+
'''The maximum retention period that the vault retains its recovery points.
|
|
5080
|
+
|
|
5065
5081
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html#cfn-backup-logicallyairgappedbackupvault-maxretentiondays
|
|
5066
5082
|
'''
|
|
5067
5083
|
result = self._values.get("max_retention_days")
|
|
@@ -5070,7 +5086,10 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5070
5086
|
|
|
5071
5087
|
@builtins.property
|
|
5072
5088
|
def min_retention_days(self) -> jsii.Number:
|
|
5073
|
-
'''
|
|
5089
|
+
'''This setting specifies the minimum retention period that the vault retains its recovery points.
|
|
5090
|
+
|
|
5091
|
+
The minimum value accepted is 7 days.
|
|
5092
|
+
|
|
5074
5093
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html#cfn-backup-logicallyairgappedbackupvault-minretentiondays
|
|
5075
5094
|
'''
|
|
5076
5095
|
result = self._values.get("min_retention_days")
|
|
@@ -5079,7 +5098,8 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5079
5098
|
|
|
5080
5099
|
@builtins.property
|
|
5081
5100
|
def access_policy(self) -> typing.Any:
|
|
5082
|
-
'''
|
|
5101
|
+
'''The backup vault access policy document in JSON format.
|
|
5102
|
+
|
|
5083
5103
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html#cfn-backup-logicallyairgappedbackupvault-accesspolicy
|
|
5084
5104
|
'''
|
|
5085
5105
|
result = self._values.get("access_policy")
|
|
@@ -5089,7 +5109,8 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5089
5109
|
def backup_vault_tags(
|
|
5090
5110
|
self,
|
|
5091
5111
|
) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
5092
|
-
'''
|
|
5112
|
+
'''The tags to assign to the vault.
|
|
5113
|
+
|
|
5093
5114
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html#cfn-backup-logicallyairgappedbackupvault-backupvaulttags
|
|
5094
5115
|
'''
|
|
5095
5116
|
result = self._values.get("backup_vault_tags")
|
|
@@ -5099,7 +5120,8 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5099
5120
|
def notifications(
|
|
5100
5121
|
self,
|
|
5101
5122
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnLogicallyAirGappedBackupVault.NotificationObjectTypeProperty]]:
|
|
5102
|
-
'''
|
|
5123
|
+
'''Returns event notifications for the specified backup vault.
|
|
5124
|
+
|
|
5103
5125
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html#cfn-backup-logicallyairgappedbackupvault-notifications
|
|
5104
5126
|
'''
|
|
5105
5127
|
result = self._values.get("notifications")
|
|
@@ -5107,7 +5129,8 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5107
5129
|
|
|
5108
5130
|
@builtins.property
|
|
5109
5131
|
def vault_state(self) -> typing.Optional[builtins.str]:
|
|
5110
|
-
'''
|
|
5132
|
+
'''The current state of the vault.
|
|
5133
|
+
|
|
5111
5134
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html#cfn-backup-logicallyairgappedbackupvault-vaultstate
|
|
5112
5135
|
'''
|
|
5113
5136
|
result = self._values.get("vault_state")
|
|
@@ -5115,7 +5138,8 @@ class CfnLogicallyAirGappedBackupVaultProps:
|
|
|
5115
5138
|
|
|
5116
5139
|
@builtins.property
|
|
5117
5140
|
def vault_type(self) -> typing.Optional[builtins.str]:
|
|
5118
|
-
'''
|
|
5141
|
+
'''The type of vault described.
|
|
5142
|
+
|
|
5119
5143
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-logicallyairgappedbackupvault.html#cfn-backup-logicallyairgappedbackupvault-vaulttype
|
|
5120
5144
|
'''
|
|
5121
5145
|
result = self._values.get("vault_type")
|
|
@@ -5757,7 +5781,7 @@ class CfnRestoreTestingPlan(
|
|
|
5757
5781
|
:param restore_testing_plan_name: The RestoreTestingPlanName is a unique string that is the name of the restore testing plan. This cannot be changed after creation, and it must consist of only alphanumeric characters and underscores.
|
|
5758
5782
|
:param schedule_expression: A CRON expression in specified timezone when a restore testing plan is executed.
|
|
5759
5783
|
:param schedule_expression_timezone: Optional. This is the timezone in which the schedule expression is set. By default, ScheduleExpressions are in UTC. You can modify this to a specified timezone.
|
|
5760
|
-
:param schedule_status:
|
|
5784
|
+
:param schedule_status: This parameter is not currently supported.
|
|
5761
5785
|
:param start_window_hours: Defaults to 24 hours. A value in hours after a restore test is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, this parameter has a maximum value of 168 hours (one week).
|
|
5762
5786
|
:param tags: Optional tags to include. A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters,numbers, spaces, and the following characters: ``+ - = . _ : /.``
|
|
5763
5787
|
'''
|
|
@@ -5890,6 +5914,7 @@ class CfnRestoreTestingPlan(
|
|
|
5890
5914
|
@builtins.property
|
|
5891
5915
|
@jsii.member(jsii_name="scheduleStatus")
|
|
5892
5916
|
def schedule_status(self) -> typing.Optional[builtins.str]:
|
|
5917
|
+
'''This parameter is not currently supported.'''
|
|
5893
5918
|
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "scheduleStatus"))
|
|
5894
5919
|
|
|
5895
5920
|
@schedule_status.setter
|
|
@@ -6097,7 +6122,7 @@ class CfnRestoreTestingPlanProps:
|
|
|
6097
6122
|
:param restore_testing_plan_name: The RestoreTestingPlanName is a unique string that is the name of the restore testing plan. This cannot be changed after creation, and it must consist of only alphanumeric characters and underscores.
|
|
6098
6123
|
:param schedule_expression: A CRON expression in specified timezone when a restore testing plan is executed.
|
|
6099
6124
|
:param schedule_expression_timezone: Optional. This is the timezone in which the schedule expression is set. By default, ScheduleExpressions are in UTC. You can modify this to a specified timezone.
|
|
6100
|
-
:param schedule_status:
|
|
6125
|
+
:param schedule_status: This parameter is not currently supported.
|
|
6101
6126
|
:param start_window_hours: Defaults to 24 hours. A value in hours after a restore test is scheduled before a job will be canceled if it doesn't start successfully. This value is optional. If this value is included, this parameter has a maximum value of 168 hours (one week).
|
|
6102
6127
|
:param tags: Optional tags to include. A tag is a key-value pair you can use to manage, filter, and search for your resources. Allowed characters include UTF-8 letters,numbers, spaces, and the following characters: ``+ - = . _ : /.``
|
|
6103
6128
|
|
|
@@ -6203,7 +6228,8 @@ class CfnRestoreTestingPlanProps:
|
|
|
6203
6228
|
|
|
6204
6229
|
@builtins.property
|
|
6205
6230
|
def schedule_status(self) -> typing.Optional[builtins.str]:
|
|
6206
|
-
'''
|
|
6231
|
+
'''This parameter is not currently supported.
|
|
6232
|
+
|
|
6207
6233
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-restoretestingplan.html#cfn-backup-restoretestingplan-schedulestatus
|
|
6208
6234
|
'''
|
|
6209
6235
|
result = self._values.get("schedule_status")
|