aws-cdk-lib 2.201.0__py3-none-any.whl → 2.203.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 +70 -71
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.201.0.jsii.tgz → aws-cdk-lib@2.203.0.jsii.tgz} +0 -0
- aws_cdk/aws_accessanalyzer/__init__.py +310 -4
- aws_cdk/aws_aiops/__init__.py +964 -0
- aws_cdk/aws_amplify/__init__.py +127 -0
- aws_cdk/aws_arczonalshift/__init__.py +8 -8
- aws_cdk/aws_athena/__init__.py +12 -11
- aws_cdk/aws_b2bi/__init__.py +782 -3
- aws_cdk/aws_backup/__init__.py +22 -0
- aws_cdk/aws_batch/__init__.py +53 -1
- aws_cdk/aws_bedrock/__init__.py +123 -9
- aws_cdk/aws_cleanrooms/__init__.py +157 -154
- aws_cdk/aws_cloudformation/__init__.py +28 -28
- aws_cdk/aws_cloudfront/__init__.py +92 -57
- aws_cdk/aws_cloudfront/experimental/__init__.py +42 -3
- aws_cdk/aws_cloudwatch/__init__.py +228 -2
- aws_cdk/aws_connect/__init__.py +120 -8
- aws_cdk/aws_connectcampaignsv2/__init__.py +25 -4
- aws_cdk/aws_customerprofiles/__init__.py +150 -30
- aws_cdk/aws_datazone/__init__.py +23 -4
- aws_cdk/aws_deadline/__init__.py +4 -4
- aws_cdk/aws_dsql/__init__.py +148 -0
- aws_cdk/aws_ec2/__init__.py +321 -19
- aws_cdk/aws_ecr/__init__.py +3 -3
- aws_cdk/aws_ecs/__init__.py +48 -13
- aws_cdk/aws_efs/__init__.py +17 -6
- aws_cdk/aws_eks/__init__.py +180 -158
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +4 -2
- aws_cdk/aws_emrserverless/__init__.py +118 -0
- aws_cdk/aws_fsx/__init__.py +891 -0
- aws_cdk/aws_glue/__init__.py +58 -24
- aws_cdk/aws_iam/__init__.py +11 -11
- aws_cdk/aws_inspectorv2/__init__.py +442 -3
- aws_cdk/aws_kendra/__init__.py +10 -5
- aws_cdk/aws_kms/__init__.py +24 -12
- aws_cdk/aws_lambda/__init__.py +938 -36
- aws_cdk/aws_lambda_event_sources/__init__.py +638 -1
- aws_cdk/aws_lambda_nodejs/__init__.py +37 -3
- aws_cdk/aws_lex/__init__.py +703 -0
- aws_cdk/aws_logs/__init__.py +144 -0
- aws_cdk/aws_mediatailor/__init__.py +399 -0
- aws_cdk/aws_mpa/__init__.py +1475 -0
- aws_cdk/aws_msk/__init__.py +21 -2
- aws_cdk/aws_mwaa/__init__.py +45 -2
- aws_cdk/aws_networkfirewall/__init__.py +4 -2
- aws_cdk/aws_networkmanager/__init__.py +51 -3
- aws_cdk/aws_opsworkscm/__init__.py +44 -2
- aws_cdk/aws_rds/__init__.py +175 -42
- aws_cdk/aws_redshiftserverless/__init__.py +632 -0
- aws_cdk/aws_route53resolver/__init__.py +58 -10
- aws_cdk/aws_s3/__init__.py +19 -1
- aws_cdk/aws_s3tables/__init__.py +230 -0
- aws_cdk/aws_sagemaker/__init__.py +14 -10
- aws_cdk/aws_securityhub/__init__.py +2887 -56
- aws_cdk/aws_synthetics/__init__.py +21 -0
- aws_cdk/aws_vpclattice/__init__.py +6 -4
- aws_cdk/aws_wafv2/__init__.py +849 -18
- aws_cdk/aws_workspacesinstances/__init__.py +3243 -0
- aws_cdk/cloud_assembly_schema/__init__.py +200 -4
- aws_cdk/cx_api/__init__.py +29 -14
- aws_cdk/pipelines/__init__.py +178 -41
- aws_cdk/triggers/__init__.py +41 -4
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/METADATA +3 -3
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/RECORD +69 -66
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.201.0.dist-info → aws_cdk_lib-2.203.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_dsql/__init__.py
CHANGED
|
@@ -130,6 +130,7 @@ class CfnCluster(
|
|
|
130
130
|
|
|
131
131
|
cfn_cluster = dsql.CfnCluster(self, "MyCfnCluster",
|
|
132
132
|
deletion_protection_enabled=False,
|
|
133
|
+
kms_encryption_key="kmsEncryptionKey",
|
|
133
134
|
multi_region_properties=dsql.CfnCluster.MultiRegionPropertiesProperty(
|
|
134
135
|
clusters=["clusters"],
|
|
135
136
|
witness_region="witnessRegion"
|
|
@@ -147,6 +148,7 @@ class CfnCluster(
|
|
|
147
148
|
id: builtins.str,
|
|
148
149
|
*,
|
|
149
150
|
deletion_protection_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
151
|
+
kms_encryption_key: typing.Optional[builtins.str] = None,
|
|
150
152
|
multi_region_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnCluster.MultiRegionPropertiesProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
151
153
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
152
154
|
) -> None:
|
|
@@ -154,6 +156,7 @@ class CfnCluster(
|
|
|
154
156
|
:param scope: Scope in which this resource is defined.
|
|
155
157
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
156
158
|
:param deletion_protection_enabled: Whether deletion protection is enabled on this cluster.
|
|
159
|
+
:param kms_encryption_key: The KMS key that encrypts data on the cluster.
|
|
157
160
|
:param multi_region_properties: Defines the structure for multi-Region cluster configurations, containing the witness Region and peered cluster settings.
|
|
158
161
|
:param tags: A map of key and value pairs this cluster is tagged with.
|
|
159
162
|
'''
|
|
@@ -163,6 +166,7 @@ class CfnCluster(
|
|
|
163
166
|
check_type(argname="argument id", value=id, expected_type=type_hints["id"])
|
|
164
167
|
props = CfnClusterProps(
|
|
165
168
|
deletion_protection_enabled=deletion_protection_enabled,
|
|
169
|
+
kms_encryption_key=kms_encryption_key,
|
|
166
170
|
multi_region_properties=multi_region_properties,
|
|
167
171
|
tags=tags,
|
|
168
172
|
)
|
|
@@ -208,6 +212,15 @@ class CfnCluster(
|
|
|
208
212
|
'''
|
|
209
213
|
return typing.cast(builtins.str, jsii.get(self, "attrCreationTime"))
|
|
210
214
|
|
|
215
|
+
@builtins.property
|
|
216
|
+
@jsii.member(jsii_name="attrEncryptionDetails")
|
|
217
|
+
def attr_encryption_details(self) -> _IResolvable_da3f097b:
|
|
218
|
+
'''The encryption configuration details for the cluster.
|
|
219
|
+
|
|
220
|
+
:cloudformationAttribute: EncryptionDetails
|
|
221
|
+
'''
|
|
222
|
+
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrEncryptionDetails"))
|
|
223
|
+
|
|
211
224
|
@builtins.property
|
|
212
225
|
@jsii.member(jsii_name="attrIdentifier")
|
|
213
226
|
def attr_identifier(self) -> builtins.str:
|
|
@@ -285,6 +298,19 @@ class CfnCluster(
|
|
|
285
298
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
286
299
|
jsii.set(self, "deletionProtectionEnabled", value) # pyright: ignore[reportArgumentType]
|
|
287
300
|
|
|
301
|
+
@builtins.property
|
|
302
|
+
@jsii.member(jsii_name="kmsEncryptionKey")
|
|
303
|
+
def kms_encryption_key(self) -> typing.Optional[builtins.str]:
|
|
304
|
+
'''The KMS key that encrypts data on the cluster.'''
|
|
305
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "kmsEncryptionKey"))
|
|
306
|
+
|
|
307
|
+
@kms_encryption_key.setter
|
|
308
|
+
def kms_encryption_key(self, value: typing.Optional[builtins.str]) -> None:
|
|
309
|
+
if __debug__:
|
|
310
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8ae716ffcdd031c28de520d863a21a8cc04056fe6c3c1a6e658dd02ea3bae8eb)
|
|
311
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
312
|
+
jsii.set(self, "kmsEncryptionKey", value) # pyright: ignore[reportArgumentType]
|
|
313
|
+
|
|
288
314
|
@builtins.property
|
|
289
315
|
@jsii.member(jsii_name="multiRegionProperties")
|
|
290
316
|
def multi_region_properties(
|
|
@@ -316,6 +342,95 @@ class CfnCluster(
|
|
|
316
342
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
317
343
|
jsii.set(self, "tags", value) # pyright: ignore[reportArgumentType]
|
|
318
344
|
|
|
345
|
+
@jsii.data_type(
|
|
346
|
+
jsii_type="aws-cdk-lib.aws_dsql.CfnCluster.EncryptionDetailsProperty",
|
|
347
|
+
jsii_struct_bases=[],
|
|
348
|
+
name_mapping={
|
|
349
|
+
"encryption_status": "encryptionStatus",
|
|
350
|
+
"encryption_type": "encryptionType",
|
|
351
|
+
"kms_key_arn": "kmsKeyArn",
|
|
352
|
+
},
|
|
353
|
+
)
|
|
354
|
+
class EncryptionDetailsProperty:
|
|
355
|
+
def __init__(
|
|
356
|
+
self,
|
|
357
|
+
*,
|
|
358
|
+
encryption_status: typing.Optional[builtins.str] = None,
|
|
359
|
+
encryption_type: typing.Optional[builtins.str] = None,
|
|
360
|
+
kms_key_arn: typing.Optional[builtins.str] = None,
|
|
361
|
+
) -> None:
|
|
362
|
+
'''Configuration details about encryption for the cluster including the AWS KMS key ARN, encryption type, and encryption status.
|
|
363
|
+
|
|
364
|
+
:param encryption_status: The status of encryption for the cluster.
|
|
365
|
+
:param encryption_type: The type of encryption that protects the data on your cluster.
|
|
366
|
+
:param kms_key_arn: The ARN of the AWS KMS key that encrypts data in the cluster.
|
|
367
|
+
|
|
368
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dsql-cluster-encryptiondetails.html
|
|
369
|
+
:exampleMetadata: fixture=_generated
|
|
370
|
+
|
|
371
|
+
Example::
|
|
372
|
+
|
|
373
|
+
# The code below shows an example of how to instantiate this type.
|
|
374
|
+
# The values are placeholders you should change.
|
|
375
|
+
from aws_cdk import aws_dsql as dsql
|
|
376
|
+
|
|
377
|
+
encryption_details_property = dsql.CfnCluster.EncryptionDetailsProperty(
|
|
378
|
+
encryption_status="encryptionStatus",
|
|
379
|
+
encryption_type="encryptionType",
|
|
380
|
+
kms_key_arn="kmsKeyArn"
|
|
381
|
+
)
|
|
382
|
+
'''
|
|
383
|
+
if __debug__:
|
|
384
|
+
type_hints = typing.get_type_hints(_typecheckingstub__dd4156a8f1ca33d4dc585a1af5623fff8b945e08734aa29b92ad1fc93a6bccd0)
|
|
385
|
+
check_type(argname="argument encryption_status", value=encryption_status, expected_type=type_hints["encryption_status"])
|
|
386
|
+
check_type(argname="argument encryption_type", value=encryption_type, expected_type=type_hints["encryption_type"])
|
|
387
|
+
check_type(argname="argument kms_key_arn", value=kms_key_arn, expected_type=type_hints["kms_key_arn"])
|
|
388
|
+
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
389
|
+
if encryption_status is not None:
|
|
390
|
+
self._values["encryption_status"] = encryption_status
|
|
391
|
+
if encryption_type is not None:
|
|
392
|
+
self._values["encryption_type"] = encryption_type
|
|
393
|
+
if kms_key_arn is not None:
|
|
394
|
+
self._values["kms_key_arn"] = kms_key_arn
|
|
395
|
+
|
|
396
|
+
@builtins.property
|
|
397
|
+
def encryption_status(self) -> typing.Optional[builtins.str]:
|
|
398
|
+
'''The status of encryption for the cluster.
|
|
399
|
+
|
|
400
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dsql-cluster-encryptiondetails.html#cfn-dsql-cluster-encryptiondetails-encryptionstatus
|
|
401
|
+
'''
|
|
402
|
+
result = self._values.get("encryption_status")
|
|
403
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
404
|
+
|
|
405
|
+
@builtins.property
|
|
406
|
+
def encryption_type(self) -> typing.Optional[builtins.str]:
|
|
407
|
+
'''The type of encryption that protects the data on your cluster.
|
|
408
|
+
|
|
409
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dsql-cluster-encryptiondetails.html#cfn-dsql-cluster-encryptiondetails-encryptiontype
|
|
410
|
+
'''
|
|
411
|
+
result = self._values.get("encryption_type")
|
|
412
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
413
|
+
|
|
414
|
+
@builtins.property
|
|
415
|
+
def kms_key_arn(self) -> typing.Optional[builtins.str]:
|
|
416
|
+
'''The ARN of the AWS KMS key that encrypts data in the cluster.
|
|
417
|
+
|
|
418
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dsql-cluster-encryptiondetails.html#cfn-dsql-cluster-encryptiondetails-kmskeyarn
|
|
419
|
+
'''
|
|
420
|
+
result = self._values.get("kms_key_arn")
|
|
421
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
422
|
+
|
|
423
|
+
def __eq__(self, rhs: typing.Any) -> builtins.bool:
|
|
424
|
+
return isinstance(rhs, self.__class__) and rhs._values == self._values
|
|
425
|
+
|
|
426
|
+
def __ne__(self, rhs: typing.Any) -> builtins.bool:
|
|
427
|
+
return not (rhs == self)
|
|
428
|
+
|
|
429
|
+
def __repr__(self) -> str:
|
|
430
|
+
return "EncryptionDetailsProperty(%s)" % ", ".join(
|
|
431
|
+
k + "=" + repr(v) for k, v in self._values.items()
|
|
432
|
+
)
|
|
433
|
+
|
|
319
434
|
@jsii.data_type(
|
|
320
435
|
jsii_type="aws-cdk-lib.aws_dsql.CfnCluster.MultiRegionPropertiesProperty",
|
|
321
436
|
jsii_struct_bases=[],
|
|
@@ -396,6 +511,7 @@ class CfnCluster(
|
|
|
396
511
|
jsii_struct_bases=[],
|
|
397
512
|
name_mapping={
|
|
398
513
|
"deletion_protection_enabled": "deletionProtectionEnabled",
|
|
514
|
+
"kms_encryption_key": "kmsEncryptionKey",
|
|
399
515
|
"multi_region_properties": "multiRegionProperties",
|
|
400
516
|
"tags": "tags",
|
|
401
517
|
},
|
|
@@ -405,12 +521,14 @@ class CfnClusterProps:
|
|
|
405
521
|
self,
|
|
406
522
|
*,
|
|
407
523
|
deletion_protection_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
524
|
+
kms_encryption_key: typing.Optional[builtins.str] = None,
|
|
408
525
|
multi_region_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.MultiRegionPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
409
526
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
410
527
|
) -> None:
|
|
411
528
|
'''Properties for defining a ``CfnCluster``.
|
|
412
529
|
|
|
413
530
|
:param deletion_protection_enabled: Whether deletion protection is enabled on this cluster.
|
|
531
|
+
:param kms_encryption_key: The KMS key that encrypts data on the cluster.
|
|
414
532
|
:param multi_region_properties: Defines the structure for multi-Region cluster configurations, containing the witness Region and peered cluster settings.
|
|
415
533
|
:param tags: A map of key and value pairs this cluster is tagged with.
|
|
416
534
|
|
|
@@ -425,6 +543,7 @@ class CfnClusterProps:
|
|
|
425
543
|
|
|
426
544
|
cfn_cluster_props = dsql.CfnClusterProps(
|
|
427
545
|
deletion_protection_enabled=False,
|
|
546
|
+
kms_encryption_key="kmsEncryptionKey",
|
|
428
547
|
multi_region_properties=dsql.CfnCluster.MultiRegionPropertiesProperty(
|
|
429
548
|
clusters=["clusters"],
|
|
430
549
|
witness_region="witnessRegion"
|
|
@@ -438,11 +557,14 @@ class CfnClusterProps:
|
|
|
438
557
|
if __debug__:
|
|
439
558
|
type_hints = typing.get_type_hints(_typecheckingstub__c99b78beafe41f2e25cbcc0b8a8aff58ff66a77464bef06dbf9128ff75ebd08c)
|
|
440
559
|
check_type(argname="argument deletion_protection_enabled", value=deletion_protection_enabled, expected_type=type_hints["deletion_protection_enabled"])
|
|
560
|
+
check_type(argname="argument kms_encryption_key", value=kms_encryption_key, expected_type=type_hints["kms_encryption_key"])
|
|
441
561
|
check_type(argname="argument multi_region_properties", value=multi_region_properties, expected_type=type_hints["multi_region_properties"])
|
|
442
562
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
443
563
|
self._values: typing.Dict[builtins.str, typing.Any] = {}
|
|
444
564
|
if deletion_protection_enabled is not None:
|
|
445
565
|
self._values["deletion_protection_enabled"] = deletion_protection_enabled
|
|
566
|
+
if kms_encryption_key is not None:
|
|
567
|
+
self._values["kms_encryption_key"] = kms_encryption_key
|
|
446
568
|
if multi_region_properties is not None:
|
|
447
569
|
self._values["multi_region_properties"] = multi_region_properties
|
|
448
570
|
if tags is not None:
|
|
@@ -459,6 +581,15 @@ class CfnClusterProps:
|
|
|
459
581
|
result = self._values.get("deletion_protection_enabled")
|
|
460
582
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
461
583
|
|
|
584
|
+
@builtins.property
|
|
585
|
+
def kms_encryption_key(self) -> typing.Optional[builtins.str]:
|
|
586
|
+
'''The KMS key that encrypts data on the cluster.
|
|
587
|
+
|
|
588
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dsql-cluster.html#cfn-dsql-cluster-kmsencryptionkey
|
|
589
|
+
'''
|
|
590
|
+
result = self._values.get("kms_encryption_key")
|
|
591
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
592
|
+
|
|
462
593
|
@builtins.property
|
|
463
594
|
def multi_region_properties(
|
|
464
595
|
self,
|
|
@@ -503,6 +634,7 @@ def _typecheckingstub__b82b76673b1942e60f823768c857e13a61b0491cdd1ca21c1f2a574e9
|
|
|
503
634
|
id: builtins.str,
|
|
504
635
|
*,
|
|
505
636
|
deletion_protection_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
637
|
+
kms_encryption_key: typing.Optional[builtins.str] = None,
|
|
506
638
|
multi_region_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.MultiRegionPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
507
639
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
508
640
|
) -> None:
|
|
@@ -527,6 +659,12 @@ def _typecheckingstub__393f500a888707295be5db6ececab65a69f1c1889e02c7043d1d8ad0e
|
|
|
527
659
|
"""Type checking stubs"""
|
|
528
660
|
pass
|
|
529
661
|
|
|
662
|
+
def _typecheckingstub__8ae716ffcdd031c28de520d863a21a8cc04056fe6c3c1a6e658dd02ea3bae8eb(
|
|
663
|
+
value: typing.Optional[builtins.str],
|
|
664
|
+
) -> None:
|
|
665
|
+
"""Type checking stubs"""
|
|
666
|
+
pass
|
|
667
|
+
|
|
530
668
|
def _typecheckingstub__d1cd42de6387e3057eda85830c6674c4cac74a5be160e21869cc4c1b3274381c(
|
|
531
669
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnCluster.MultiRegionPropertiesProperty]],
|
|
532
670
|
) -> None:
|
|
@@ -539,6 +677,15 @@ def _typecheckingstub__c9eb2f89b2e4104fba43d8d14808715e2f3435951317df69258fecf9b
|
|
|
539
677
|
"""Type checking stubs"""
|
|
540
678
|
pass
|
|
541
679
|
|
|
680
|
+
def _typecheckingstub__dd4156a8f1ca33d4dc585a1af5623fff8b945e08734aa29b92ad1fc93a6bccd0(
|
|
681
|
+
*,
|
|
682
|
+
encryption_status: typing.Optional[builtins.str] = None,
|
|
683
|
+
encryption_type: typing.Optional[builtins.str] = None,
|
|
684
|
+
kms_key_arn: typing.Optional[builtins.str] = None,
|
|
685
|
+
) -> None:
|
|
686
|
+
"""Type checking stubs"""
|
|
687
|
+
pass
|
|
688
|
+
|
|
542
689
|
def _typecheckingstub__b9a11b947e8fa036630c80e949e1619ff609036ee5de58658c8157988d8c212f(
|
|
543
690
|
*,
|
|
544
691
|
clusters: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -550,6 +697,7 @@ def _typecheckingstub__b9a11b947e8fa036630c80e949e1619ff609036ee5de58658c8157988
|
|
|
550
697
|
def _typecheckingstub__c99b78beafe41f2e25cbcc0b8a8aff58ff66a77464bef06dbf9128ff75ebd08c(
|
|
551
698
|
*,
|
|
552
699
|
deletion_protection_enabled: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
700
|
+
kms_encryption_key: typing.Optional[builtins.str] = None,
|
|
553
701
|
multi_region_properties: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnCluster.MultiRegionPropertiesProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
554
702
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
555
703
|
) -> None:
|