aws-cdk-lib 2.186.0__py3-none-any.whl → 2.187.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 +281 -116
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.186.0.jsii.tgz → aws-cdk-lib@2.187.0.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +124 -0
- aws_cdk/aws_apigateway/__init__.py +48 -2
- aws_cdk/aws_appsync/__init__.py +14 -5
- aws_cdk/aws_bedrock/__init__.py +32 -22
- aws_cdk/aws_cassandra/__init__.py +2 -2
- aws_cdk/aws_cloudfront/__init__.py +11 -0
- aws_cdk/aws_cloudtrail/__init__.py +4 -18
- aws_cdk/aws_cloudwatch/__init__.py +50 -50
- aws_cdk/aws_codebuild/__init__.py +9 -0
- aws_cdk/aws_config/__init__.py +2 -5
- aws_cdk/aws_datazone/__init__.py +287 -226
- aws_cdk/aws_detective/__init__.py +3 -3
- aws_cdk/aws_dynamodb/__init__.py +37 -0
- aws_cdk/aws_ec2/__init__.py +154 -12
- aws_cdk/aws_ecr/__init__.py +143 -0
- aws_cdk/aws_ecr_assets/__init__.py +115 -4
- aws_cdk/aws_ecs/__init__.py +51 -0
- aws_cdk/aws_eks/__init__.py +114 -0
- aws_cdk/aws_events/__init__.py +8 -11
- aws_cdk/aws_forecast/__init__.py +1 -1
- aws_cdk/aws_fsx/__init__.py +2 -2
- aws_cdk/aws_gamelift/__init__.py +6 -6
- aws_cdk/aws_identitystore/__init__.py +16 -16
- aws_cdk/aws_iotsitewise/__init__.py +623 -0
- aws_cdk/aws_kms/__init__.py +10 -11
- aws_cdk/aws_lakeformation/__init__.py +3 -3
- aws_cdk/aws_lambda/__init__.py +105 -4
- aws_cdk/aws_lambda_event_sources/__init__.py +65 -3
- aws_cdk/aws_lambda_nodejs/__init__.py +5 -24
- aws_cdk/aws_lex/__init__.py +981 -5
- aws_cdk/aws_mediaconnect/__init__.py +714 -290
- aws_cdk/aws_mwaa/__init__.py +9 -9
- aws_cdk/aws_networkfirewall/__init__.py +44 -0
- aws_cdk/aws_omics/__init__.py +216 -0
- aws_cdk/aws_quicksight/__init__.py +244 -39
- aws_cdk/aws_rds/__init__.py +102 -10
- aws_cdk/aws_route53/__init__.py +2 -2
- aws_cdk/aws_route53recoverycontrol/__init__.py +43 -2
- aws_cdk/aws_s3_assets/__init__.py +70 -1
- aws_cdk/aws_s3_deployment/__init__.py +4 -0
- aws_cdk/aws_sagemaker/__init__.py +6 -4
- aws_cdk/aws_scheduler_targets/__init__.py +4 -16
- aws_cdk/aws_securitylake/__init__.py +2 -2
- aws_cdk/aws_servicecatalog/__init__.py +4 -0
- aws_cdk/aws_sns/__init__.py +1 -1
- aws_cdk/aws_stepfunctions/__init__.py +23 -17
- aws_cdk/aws_stepfunctions_tasks/__init__.py +4 -0
- aws_cdk/aws_synthetics/__init__.py +9 -0
- aws_cdk/aws_systemsmanagersap/__init__.py +150 -0
- aws_cdk/aws_wafv2/__init__.py +464 -1138
- aws_cdk/cloud_assembly_schema/__init__.py +60 -10
- aws_cdk/cx_api/__init__.py +15 -0
- aws_cdk/pipelines/__init__.py +20 -2
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/METADATA +4 -4
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/RECORD +62 -62
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/WHEEL +1 -1
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.186.0.dist-info → aws_cdk_lib-2.187.0.dist-info}/top_level.txt +0 -0
|
@@ -109,7 +109,7 @@ class CfnGraph(
|
|
|
109
109
|
'''
|
|
110
110
|
:param scope: Scope in which this resource is defined.
|
|
111
111
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
112
|
-
:param auto_enable_members: Indicates whether to automatically enable new organization accounts as member accounts in the organization behavior graph. By default, this property is set to ``false`` . If you want to change the value of this property, you must be the Detective administrator for the organization. For more information on setting a Detective administrator account, see `AWS::Detective::OrganizationAdmin <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-organizationadmin.html>`_ Default: - false
|
|
112
|
+
:param auto_enable_members: Indicates whether to automatically enable new organization accounts as member accounts in the organization behavior graph. By default, this property is set to ``false`` . If you want to change the value of this property, you must be the Detective administrator for the organization. For more information on setting a Detective administrator account, see `AWS::Detective::OrganizationAdmin <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-organizationadmin.html>`_ . Default: - false
|
|
113
113
|
:param tags: The tag values to assign to the new behavior graph.
|
|
114
114
|
'''
|
|
115
115
|
if __debug__:
|
|
@@ -216,7 +216,7 @@ class CfnGraphProps:
|
|
|
216
216
|
) -> None:
|
|
217
217
|
'''Properties for defining a ``CfnGraph``.
|
|
218
218
|
|
|
219
|
-
:param auto_enable_members: Indicates whether to automatically enable new organization accounts as member accounts in the organization behavior graph. By default, this property is set to ``false`` . If you want to change the value of this property, you must be the Detective administrator for the organization. For more information on setting a Detective administrator account, see `AWS::Detective::OrganizationAdmin <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-organizationadmin.html>`_ Default: - false
|
|
219
|
+
:param auto_enable_members: Indicates whether to automatically enable new organization accounts as member accounts in the organization behavior graph. By default, this property is set to ``false`` . If you want to change the value of this property, you must be the Detective administrator for the organization. For more information on setting a Detective administrator account, see `AWS::Detective::OrganizationAdmin <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-organizationadmin.html>`_ . Default: - false
|
|
220
220
|
:param tags: The tag values to assign to the new behavior graph.
|
|
221
221
|
|
|
222
222
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html
|
|
@@ -252,7 +252,7 @@ class CfnGraphProps:
|
|
|
252
252
|
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
253
253
|
'''Indicates whether to automatically enable new organization accounts as member accounts in the organization behavior graph.
|
|
254
254
|
|
|
255
|
-
By default, this property is set to ``false`` . If you want to change the value of this property, you must be the Detective administrator for the organization. For more information on setting a Detective administrator account, see `AWS::Detective::OrganizationAdmin <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-organizationadmin.html>`_
|
|
255
|
+
By default, this property is set to ``false`` . If you want to change the value of this property, you must be the Detective administrator for the organization. For more information on setting a Detective administrator account, see `AWS::Detective::OrganizationAdmin <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-organizationadmin.html>`_ .
|
|
256
256
|
|
|
257
257
|
:default: - false
|
|
258
258
|
|
aws_cdk/aws_dynamodb/__init__.py
CHANGED
|
@@ -12273,6 +12273,7 @@ typing.cast(typing.Any, TableEncryptionV2).__jsii_proxy_class__ = lambda : _Tabl
|
|
|
12273
12273
|
"point_in_time_recovery_specification": "pointInTimeRecoverySpecification",
|
|
12274
12274
|
"read_capacity": "readCapacity",
|
|
12275
12275
|
"removal_policy": "removalPolicy",
|
|
12276
|
+
"replica_removal_policy": "replicaRemovalPolicy",
|
|
12276
12277
|
"replication_regions": "replicationRegions",
|
|
12277
12278
|
"replication_timeout": "replicationTimeout",
|
|
12278
12279
|
"resource_policy": "resourcePolicy",
|
|
@@ -12302,6 +12303,7 @@ class TableOptions(SchemaOptions):
|
|
|
12302
12303
|
point_in_time_recovery_specification: typing.Optional[typing.Union[PointInTimeRecoverySpecification, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
12303
12304
|
read_capacity: typing.Optional[jsii.Number] = None,
|
|
12304
12305
|
removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
12306
|
+
replica_removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
12305
12307
|
replication_regions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
12306
12308
|
replication_timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
12307
12309
|
resource_policy: typing.Optional[_PolicyDocument_3ac34393] = None,
|
|
@@ -12330,6 +12332,7 @@ class TableOptions(SchemaOptions):
|
|
|
12330
12332
|
:param point_in_time_recovery_specification: Whether point-in-time recovery is enabled and recoveryPeriodInDays is set. Default: - point in time recovery is not enabled.
|
|
12331
12333
|
:param read_capacity: The read capacity for the table. Careful if you add Global Secondary Indexes, as those will share the table's provisioned throughput. Can only be provided if billingMode is Provisioned. Default: 5
|
|
12332
12334
|
:param removal_policy: The removal policy to apply to the DynamoDB Table. Default: RemovalPolicy.RETAIN
|
|
12335
|
+
:param replica_removal_policy: The removal policy to apply to the DynamoDB replica tables. Default: undefined - use DynamoDB Table's removal policy
|
|
12333
12336
|
:param replication_regions: Regions where replica tables will be created. Default: - no replica tables are created
|
|
12334
12337
|
:param replication_timeout: The timeout for a table replication operation in a single region. Default: Duration.minutes(30)
|
|
12335
12338
|
:param resource_policy: Resource policy to assign to table. Default: - No resource policy statement
|
|
@@ -12389,6 +12392,7 @@ class TableOptions(SchemaOptions):
|
|
|
12389
12392
|
),
|
|
12390
12393
|
read_capacity=123,
|
|
12391
12394
|
removal_policy=cdk.RemovalPolicy.DESTROY,
|
|
12395
|
+
replica_removal_policy=cdk.RemovalPolicy.DESTROY,
|
|
12392
12396
|
replication_regions=["replicationRegions"],
|
|
12393
12397
|
replication_timeout=cdk.Duration.minutes(30),
|
|
12394
12398
|
resource_policy=policy_document,
|
|
@@ -12433,6 +12437,7 @@ class TableOptions(SchemaOptions):
|
|
|
12433
12437
|
check_type(argname="argument point_in_time_recovery_specification", value=point_in_time_recovery_specification, expected_type=type_hints["point_in_time_recovery_specification"])
|
|
12434
12438
|
check_type(argname="argument read_capacity", value=read_capacity, expected_type=type_hints["read_capacity"])
|
|
12435
12439
|
check_type(argname="argument removal_policy", value=removal_policy, expected_type=type_hints["removal_policy"])
|
|
12440
|
+
check_type(argname="argument replica_removal_policy", value=replica_removal_policy, expected_type=type_hints["replica_removal_policy"])
|
|
12436
12441
|
check_type(argname="argument replication_regions", value=replication_regions, expected_type=type_hints["replication_regions"])
|
|
12437
12442
|
check_type(argname="argument replication_timeout", value=replication_timeout, expected_type=type_hints["replication_timeout"])
|
|
12438
12443
|
check_type(argname="argument resource_policy", value=resource_policy, expected_type=type_hints["resource_policy"])
|
|
@@ -12471,6 +12476,8 @@ class TableOptions(SchemaOptions):
|
|
|
12471
12476
|
self._values["read_capacity"] = read_capacity
|
|
12472
12477
|
if removal_policy is not None:
|
|
12473
12478
|
self._values["removal_policy"] = removal_policy
|
|
12479
|
+
if replica_removal_policy is not None:
|
|
12480
|
+
self._values["replica_removal_policy"] = replica_removal_policy
|
|
12474
12481
|
if replication_regions is not None:
|
|
12475
12482
|
self._values["replication_regions"] = replication_regions
|
|
12476
12483
|
if replication_timeout is not None:
|
|
@@ -12652,6 +12659,15 @@ class TableOptions(SchemaOptions):
|
|
|
12652
12659
|
result = self._values.get("removal_policy")
|
|
12653
12660
|
return typing.cast(typing.Optional[_RemovalPolicy_9f93c814], result)
|
|
12654
12661
|
|
|
12662
|
+
@builtins.property
|
|
12663
|
+
def replica_removal_policy(self) -> typing.Optional[_RemovalPolicy_9f93c814]:
|
|
12664
|
+
'''The removal policy to apply to the DynamoDB replica tables.
|
|
12665
|
+
|
|
12666
|
+
:default: undefined - use DynamoDB Table's removal policy
|
|
12667
|
+
'''
|
|
12668
|
+
result = self._values.get("replica_removal_policy")
|
|
12669
|
+
return typing.cast(typing.Optional[_RemovalPolicy_9f93c814], result)
|
|
12670
|
+
|
|
12655
12671
|
@builtins.property
|
|
12656
12672
|
def replication_regions(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
12657
12673
|
'''Regions where replica tables will be created.
|
|
@@ -12984,6 +13000,7 @@ class TableOptionsV2:
|
|
|
12984
13000
|
"point_in_time_recovery_specification": "pointInTimeRecoverySpecification",
|
|
12985
13001
|
"read_capacity": "readCapacity",
|
|
12986
13002
|
"removal_policy": "removalPolicy",
|
|
13003
|
+
"replica_removal_policy": "replicaRemovalPolicy",
|
|
12987
13004
|
"replication_regions": "replicationRegions",
|
|
12988
13005
|
"replication_timeout": "replicationTimeout",
|
|
12989
13006
|
"resource_policy": "resourcePolicy",
|
|
@@ -13016,6 +13033,7 @@ class TableProps(TableOptions):
|
|
|
13016
13033
|
point_in_time_recovery_specification: typing.Optional[typing.Union[PointInTimeRecoverySpecification, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
13017
13034
|
read_capacity: typing.Optional[jsii.Number] = None,
|
|
13018
13035
|
removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
13036
|
+
replica_removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
13019
13037
|
replication_regions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
13020
13038
|
replication_timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
13021
13039
|
resource_policy: typing.Optional[_PolicyDocument_3ac34393] = None,
|
|
@@ -13045,6 +13063,7 @@ class TableProps(TableOptions):
|
|
|
13045
13063
|
:param point_in_time_recovery_specification: Whether point-in-time recovery is enabled and recoveryPeriodInDays is set. Default: - point in time recovery is not enabled.
|
|
13046
13064
|
:param read_capacity: The read capacity for the table. Careful if you add Global Secondary Indexes, as those will share the table's provisioned throughput. Can only be provided if billingMode is Provisioned. Default: 5
|
|
13047
13065
|
:param removal_policy: The removal policy to apply to the DynamoDB Table. Default: RemovalPolicy.RETAIN
|
|
13066
|
+
:param replica_removal_policy: The removal policy to apply to the DynamoDB replica tables. Default: undefined - use DynamoDB Table's removal policy
|
|
13048
13067
|
:param replication_regions: Regions where replica tables will be created. Default: - no replica tables are created
|
|
13049
13068
|
:param replication_timeout: The timeout for a table replication operation in a single region. Default: Duration.minutes(30)
|
|
13050
13069
|
:param resource_policy: Resource policy to assign to table. Default: - No resource policy statement
|
|
@@ -13110,6 +13129,7 @@ class TableProps(TableOptions):
|
|
|
13110
13129
|
check_type(argname="argument point_in_time_recovery_specification", value=point_in_time_recovery_specification, expected_type=type_hints["point_in_time_recovery_specification"])
|
|
13111
13130
|
check_type(argname="argument read_capacity", value=read_capacity, expected_type=type_hints["read_capacity"])
|
|
13112
13131
|
check_type(argname="argument removal_policy", value=removal_policy, expected_type=type_hints["removal_policy"])
|
|
13132
|
+
check_type(argname="argument replica_removal_policy", value=replica_removal_policy, expected_type=type_hints["replica_removal_policy"])
|
|
13113
13133
|
check_type(argname="argument replication_regions", value=replication_regions, expected_type=type_hints["replication_regions"])
|
|
13114
13134
|
check_type(argname="argument replication_timeout", value=replication_timeout, expected_type=type_hints["replication_timeout"])
|
|
13115
13135
|
check_type(argname="argument resource_policy", value=resource_policy, expected_type=type_hints["resource_policy"])
|
|
@@ -13151,6 +13171,8 @@ class TableProps(TableOptions):
|
|
|
13151
13171
|
self._values["read_capacity"] = read_capacity
|
|
13152
13172
|
if removal_policy is not None:
|
|
13153
13173
|
self._values["removal_policy"] = removal_policy
|
|
13174
|
+
if replica_removal_policy is not None:
|
|
13175
|
+
self._values["replica_removal_policy"] = replica_removal_policy
|
|
13154
13176
|
if replication_regions is not None:
|
|
13155
13177
|
self._values["replication_regions"] = replication_regions
|
|
13156
13178
|
if replication_timeout is not None:
|
|
@@ -13338,6 +13360,15 @@ class TableProps(TableOptions):
|
|
|
13338
13360
|
result = self._values.get("removal_policy")
|
|
13339
13361
|
return typing.cast(typing.Optional[_RemovalPolicy_9f93c814], result)
|
|
13340
13362
|
|
|
13363
|
+
@builtins.property
|
|
13364
|
+
def replica_removal_policy(self) -> typing.Optional[_RemovalPolicy_9f93c814]:
|
|
13365
|
+
'''The removal policy to apply to the DynamoDB replica tables.
|
|
13366
|
+
|
|
13367
|
+
:default: undefined - use DynamoDB Table's removal policy
|
|
13368
|
+
'''
|
|
13369
|
+
result = self._values.get("replica_removal_policy")
|
|
13370
|
+
return typing.cast(typing.Optional[_RemovalPolicy_9f93c814], result)
|
|
13371
|
+
|
|
13341
13372
|
@builtins.property
|
|
13342
13373
|
def replication_regions(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
13343
13374
|
'''Regions where replica tables will be created.
|
|
@@ -15637,6 +15668,7 @@ class Table(
|
|
|
15637
15668
|
point_in_time_recovery_specification: typing.Optional[typing.Union[PointInTimeRecoverySpecification, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
15638
15669
|
read_capacity: typing.Optional[jsii.Number] = None,
|
|
15639
15670
|
removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
15671
|
+
replica_removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
15640
15672
|
replication_regions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
15641
15673
|
replication_timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
15642
15674
|
resource_policy: typing.Optional[_PolicyDocument_3ac34393] = None,
|
|
@@ -15667,6 +15699,7 @@ class Table(
|
|
|
15667
15699
|
:param point_in_time_recovery_specification: Whether point-in-time recovery is enabled and recoveryPeriodInDays is set. Default: - point in time recovery is not enabled.
|
|
15668
15700
|
:param read_capacity: The read capacity for the table. Careful if you add Global Secondary Indexes, as those will share the table's provisioned throughput. Can only be provided if billingMode is Provisioned. Default: 5
|
|
15669
15701
|
:param removal_policy: The removal policy to apply to the DynamoDB Table. Default: RemovalPolicy.RETAIN
|
|
15702
|
+
:param replica_removal_policy: The removal policy to apply to the DynamoDB replica tables. Default: undefined - use DynamoDB Table's removal policy
|
|
15670
15703
|
:param replication_regions: Regions where replica tables will be created. Default: - no replica tables are created
|
|
15671
15704
|
:param replication_timeout: The timeout for a table replication operation in a single region. Default: Duration.minutes(30)
|
|
15672
15705
|
:param resource_policy: Resource policy to assign to table. Default: - No resource policy statement
|
|
@@ -15699,6 +15732,7 @@ class Table(
|
|
|
15699
15732
|
point_in_time_recovery_specification=point_in_time_recovery_specification,
|
|
15700
15733
|
read_capacity=read_capacity,
|
|
15701
15734
|
removal_policy=removal_policy,
|
|
15735
|
+
replica_removal_policy=replica_removal_policy,
|
|
15702
15736
|
replication_regions=replication_regions,
|
|
15703
15737
|
replication_timeout=replication_timeout,
|
|
15704
15738
|
resource_policy=resource_policy,
|
|
@@ -17216,6 +17250,7 @@ def _typecheckingstub__dadf5733fac70178ab246582a0b777b8c203659229753a8396594d751
|
|
|
17216
17250
|
point_in_time_recovery_specification: typing.Optional[typing.Union[PointInTimeRecoverySpecification, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
17217
17251
|
read_capacity: typing.Optional[jsii.Number] = None,
|
|
17218
17252
|
removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
17253
|
+
replica_removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
17219
17254
|
replication_regions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
17220
17255
|
replication_timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
17221
17256
|
resource_policy: typing.Optional[_PolicyDocument_3ac34393] = None,
|
|
@@ -17259,6 +17294,7 @@ def _typecheckingstub__00475a5e14af8c4c7049089f69b3d29ad81bc91e7e1f0a5a5b7b794a5
|
|
|
17259
17294
|
point_in_time_recovery_specification: typing.Optional[typing.Union[PointInTimeRecoverySpecification, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
17260
17295
|
read_capacity: typing.Optional[jsii.Number] = None,
|
|
17261
17296
|
removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
17297
|
+
replica_removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
17262
17298
|
replication_regions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
17263
17299
|
replication_timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
17264
17300
|
resource_policy: typing.Optional[_PolicyDocument_3ac34393] = None,
|
|
@@ -17497,6 +17533,7 @@ def _typecheckingstub__b92f0ed514f00b57a2a41d754e55fe495d22b05b0ad4711b80ce00457
|
|
|
17497
17533
|
point_in_time_recovery_specification: typing.Optional[typing.Union[PointInTimeRecoverySpecification, typing.Dict[builtins.str, typing.Any]]] = None,
|
|
17498
17534
|
read_capacity: typing.Optional[jsii.Number] = None,
|
|
17499
17535
|
removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
17536
|
+
replica_removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
17500
17537
|
replication_regions: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
17501
17538
|
replication_timeout: typing.Optional[_Duration_4839e8c3] = None,
|
|
17502
17539
|
resource_policy: typing.Optional[_PolicyDocument_3ac34393] = None,
|