aws-cdk-lib 2.132.1__py3-none-any.whl → 2.134.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 +9 -1
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.132.1.jsii.tgz → aws-cdk-lib@2.134.0.jsii.tgz} +0 -0
- aws_cdk/aws_amplify/__init__.py +12 -10
- aws_cdk/aws_apigatewayv2/__init__.py +112 -6
- aws_cdk/aws_apigatewayv2_integrations/__init__.py +155 -3
- aws_cdk/aws_appconfig/__init__.py +186 -8
- aws_cdk/aws_appintegrations/__init__.py +551 -0
- aws_cdk/aws_applicationautoscaling/__init__.py +6 -6
- aws_cdk/aws_appsync/__init__.py +71 -0
- aws_cdk/aws_autoscaling/__init__.py +10 -14
- aws_cdk/aws_b2bi/__init__.py +2 -42
- aws_cdk/aws_backup/__init__.py +23 -12
- aws_cdk/aws_batch/__init__.py +2150 -1078
- aws_cdk/aws_bedrock/__init__.py +197 -2
- aws_cdk/aws_cloudformation/__init__.py +1 -1
- aws_cdk/aws_cloudfront/__init__.py +4 -4
- aws_cdk/aws_cloudtrail/__init__.py +44 -14
- aws_cdk/aws_cloudwatch/__init__.py +20 -4
- aws_cdk/aws_codeartifact/__init__.py +812 -2
- aws_cdk/aws_codebuild/__init__.py +32 -10
- aws_cdk/aws_codepipeline/__init__.py +33 -11
- aws_cdk/aws_cognito/__init__.py +49 -44
- aws_cdk/aws_connect/__init__.py +256 -0
- aws_cdk/aws_controltower/__init__.py +4 -4
- aws_cdk/aws_datasync/__init__.py +393 -13
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_docdbelastic/__init__.py +117 -0
- aws_cdk/aws_dynamodb/__init__.py +416 -5
- aws_cdk/aws_ec2/__init__.py +590 -134
- aws_cdk/aws_ecs/__init__.py +29 -20
- aws_cdk/aws_ecs_patterns/__init__.py +52 -12
- aws_cdk/aws_eks/__init__.py +27 -25
- aws_cdk/aws_elasticloadbalancing/__init__.py +6 -9
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +363 -62
- aws_cdk/aws_emr/__init__.py +7 -4
- aws_cdk/aws_entityresolution/__init__.py +91 -64
- aws_cdk/aws_fsx/__init__.py +7 -7
- aws_cdk/aws_glue/__init__.py +137 -3
- aws_cdk/aws_iam/__init__.py +9 -10
- aws_cdk/aws_internetmonitor/__init__.py +85 -0
- aws_cdk/aws_iotsitewise/__init__.py +208 -198
- aws_cdk/aws_iotwireless/__init__.py +6 -5
- aws_cdk/aws_kafkaconnect/__init__.py +1237 -162
- aws_cdk/aws_kendra/__init__.py +34 -24
- aws_cdk/aws_kinesisanalytics/__init__.py +37 -37
- aws_cdk/aws_kinesisanalyticsv2/__init__.py +37 -37
- aws_cdk/aws_kinesisfirehose/__init__.py +6 -2
- aws_cdk/aws_lambda/__init__.py +16 -16
- aws_cdk/aws_msk/__init__.py +88 -0
- aws_cdk/aws_opensearchservice/__init__.py +61 -18
- aws_cdk/aws_pinpoint/__init__.py +42 -0
- aws_cdk/aws_rds/__init__.py +1292 -216
- aws_cdk/aws_redshift/__init__.py +6 -3
- aws_cdk/aws_redshiftserverless/__init__.py +0 -157
- aws_cdk/aws_sagemaker/__init__.py +29 -9
- aws_cdk/aws_shield/__init__.py +7 -8
- aws_cdk/aws_ssm/__init__.py +15 -12
- aws_cdk/aws_stepfunctions_tasks/__init__.py +476 -0
- aws_cdk/aws_synthetics/__init__.py +74 -14
- aws_cdk/aws_transfer/__init__.py +4 -3
- aws_cdk/aws_wafv2/__init__.py +516 -42
- aws_cdk/cx_api/__init__.py +34 -0
- {aws_cdk_lib-2.132.1.dist-info → aws_cdk_lib-2.134.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.132.1.dist-info → aws_cdk_lib-2.134.0.dist-info}/RECORD +69 -69
- {aws_cdk_lib-2.132.1.dist-info → aws_cdk_lib-2.134.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.132.1.dist-info → aws_cdk_lib-2.134.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.132.1.dist-info → aws_cdk_lib-2.134.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.132.1.dist-info → aws_cdk_lib-2.134.0.dist-info}/top_level.txt +0 -0
|
@@ -77,8 +77,11 @@ class CfnCluster(
|
|
|
77
77
|
|
|
78
78
|
# the properties below are optional
|
|
79
79
|
admin_user_password="adminUserPassword",
|
|
80
|
+
backup_retention_period=123,
|
|
80
81
|
kms_key_id="kmsKeyId",
|
|
82
|
+
preferred_backup_window="preferredBackupWindow",
|
|
81
83
|
preferred_maintenance_window="preferredMaintenanceWindow",
|
|
84
|
+
shard_instance_count=123,
|
|
82
85
|
subnet_ids=["subnetIds"],
|
|
83
86
|
tags=[CfnTag(
|
|
84
87
|
key="key",
|
|
@@ -99,8 +102,11 @@ class CfnCluster(
|
|
|
99
102
|
shard_capacity: jsii.Number,
|
|
100
103
|
shard_count: jsii.Number,
|
|
101
104
|
admin_user_password: typing.Optional[builtins.str] = None,
|
|
105
|
+
backup_retention_period: typing.Optional[jsii.Number] = None,
|
|
102
106
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
107
|
+
preferred_backup_window: typing.Optional[builtins.str] = None,
|
|
103
108
|
preferred_maintenance_window: typing.Optional[builtins.str] = None,
|
|
109
|
+
shard_instance_count: typing.Optional[jsii.Number] = None,
|
|
104
110
|
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
105
111
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
106
112
|
vpc_security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -114,8 +120,11 @@ class CfnCluster(
|
|
|
114
120
|
:param shard_capacity: The number of vCPUs assigned to each elastic cluster shard. Maximum is 64. Allowed values are 2, 4, 8, 16, 32, 64.
|
|
115
121
|
:param shard_count: The number of shards assigned to the elastic cluster. Maximum is 32.
|
|
116
122
|
:param admin_user_password: The password for the Elastic DocumentDB cluster administrator and can contain any printable ASCII characters. *Constraints* : - Must contain from 8 to 100 characters. - Cannot contain a forward slash (/), double quote ("), or the "at" symbol (@). - A valid ``AdminUserName`` entry is also required.
|
|
123
|
+
:param backup_retention_period:
|
|
117
124
|
:param kms_key_id: The KMS key identifier to use to encrypt the new elastic cluster. The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a cluster using the same Amazon account that owns this KMS encryption key, you can use the KMS key alias instead of the ARN as the KMS encryption key. If an encryption key is not specified, Amazon DocumentDB uses the default encryption key that KMS creates for your account. Your account has a different default encryption key for each Amazon Region.
|
|
125
|
+
:param preferred_backup_window:
|
|
118
126
|
:param preferred_maintenance_window: The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). *Format* : ``ddd:hh24:mi-ddd:hh24:mi`` *Default* : a 30-minute window selected at random from an 8-hour block of time for each AWS Region , occurring on a random day of the week. *Valid days* : Mon, Tue, Wed, Thu, Fri, Sat, Sun *Constraints* : Minimum 30-minute window.
|
|
127
|
+
:param shard_instance_count:
|
|
119
128
|
:param subnet_ids: The Amazon EC2 subnet IDs for the new elastic cluster.
|
|
120
129
|
:param tags: The tags to be assigned to the new elastic cluster.
|
|
121
130
|
:param vpc_security_group_ids: A list of EC2 VPC security groups to associate with the new elastic cluster.
|
|
@@ -131,8 +140,11 @@ class CfnCluster(
|
|
|
131
140
|
shard_capacity=shard_capacity,
|
|
132
141
|
shard_count=shard_count,
|
|
133
142
|
admin_user_password=admin_user_password,
|
|
143
|
+
backup_retention_period=backup_retention_period,
|
|
134
144
|
kms_key_id=kms_key_id,
|
|
145
|
+
preferred_backup_window=preferred_backup_window,
|
|
135
146
|
preferred_maintenance_window=preferred_maintenance_window,
|
|
147
|
+
shard_instance_count=shard_instance_count,
|
|
136
148
|
subnet_ids=subnet_ids,
|
|
137
149
|
tags=tags,
|
|
138
150
|
vpc_security_group_ids=vpc_security_group_ids,
|
|
@@ -279,6 +291,18 @@ class CfnCluster(
|
|
|
279
291
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
280
292
|
jsii.set(self, "adminUserPassword", value)
|
|
281
293
|
|
|
294
|
+
@builtins.property
|
|
295
|
+
@jsii.member(jsii_name="backupRetentionPeriod")
|
|
296
|
+
def backup_retention_period(self) -> typing.Optional[jsii.Number]:
|
|
297
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "backupRetentionPeriod"))
|
|
298
|
+
|
|
299
|
+
@backup_retention_period.setter
|
|
300
|
+
def backup_retention_period(self, value: typing.Optional[jsii.Number]) -> None:
|
|
301
|
+
if __debug__:
|
|
302
|
+
type_hints = typing.get_type_hints(_typecheckingstub__d81338ed2d2b35425bdc6b440d859bf6f7104c7d3e66fb0b6a4b0b6ed4baaf00)
|
|
303
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
304
|
+
jsii.set(self, "backupRetentionPeriod", value)
|
|
305
|
+
|
|
282
306
|
@builtins.property
|
|
283
307
|
@jsii.member(jsii_name="kmsKeyId")
|
|
284
308
|
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
@@ -292,6 +316,18 @@ class CfnCluster(
|
|
|
292
316
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
293
317
|
jsii.set(self, "kmsKeyId", value)
|
|
294
318
|
|
|
319
|
+
@builtins.property
|
|
320
|
+
@jsii.member(jsii_name="preferredBackupWindow")
|
|
321
|
+
def preferred_backup_window(self) -> typing.Optional[builtins.str]:
|
|
322
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "preferredBackupWindow"))
|
|
323
|
+
|
|
324
|
+
@preferred_backup_window.setter
|
|
325
|
+
def preferred_backup_window(self, value: typing.Optional[builtins.str]) -> None:
|
|
326
|
+
if __debug__:
|
|
327
|
+
type_hints = typing.get_type_hints(_typecheckingstub__8c4acb4ae8cd439155ec33ec8e279ea4474d4a87642ef3d269a76e5647be02bf)
|
|
328
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
329
|
+
jsii.set(self, "preferredBackupWindow", value)
|
|
330
|
+
|
|
295
331
|
@builtins.property
|
|
296
332
|
@jsii.member(jsii_name="preferredMaintenanceWindow")
|
|
297
333
|
def preferred_maintenance_window(self) -> typing.Optional[builtins.str]:
|
|
@@ -308,6 +344,18 @@ class CfnCluster(
|
|
|
308
344
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
309
345
|
jsii.set(self, "preferredMaintenanceWindow", value)
|
|
310
346
|
|
|
347
|
+
@builtins.property
|
|
348
|
+
@jsii.member(jsii_name="shardInstanceCount")
|
|
349
|
+
def shard_instance_count(self) -> typing.Optional[jsii.Number]:
|
|
350
|
+
return typing.cast(typing.Optional[jsii.Number], jsii.get(self, "shardInstanceCount"))
|
|
351
|
+
|
|
352
|
+
@shard_instance_count.setter
|
|
353
|
+
def shard_instance_count(self, value: typing.Optional[jsii.Number]) -> None:
|
|
354
|
+
if __debug__:
|
|
355
|
+
type_hints = typing.get_type_hints(_typecheckingstub__2081e1f0fbadf01af64a49f199c20e8ba4209c58b855709e74d727666c656b34)
|
|
356
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
357
|
+
jsii.set(self, "shardInstanceCount", value)
|
|
358
|
+
|
|
311
359
|
@builtins.property
|
|
312
360
|
@jsii.member(jsii_name="subnetIds")
|
|
313
361
|
def subnet_ids(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
@@ -361,8 +409,11 @@ class CfnCluster(
|
|
|
361
409
|
"shard_capacity": "shardCapacity",
|
|
362
410
|
"shard_count": "shardCount",
|
|
363
411
|
"admin_user_password": "adminUserPassword",
|
|
412
|
+
"backup_retention_period": "backupRetentionPeriod",
|
|
364
413
|
"kms_key_id": "kmsKeyId",
|
|
414
|
+
"preferred_backup_window": "preferredBackupWindow",
|
|
365
415
|
"preferred_maintenance_window": "preferredMaintenanceWindow",
|
|
416
|
+
"shard_instance_count": "shardInstanceCount",
|
|
366
417
|
"subnet_ids": "subnetIds",
|
|
367
418
|
"tags": "tags",
|
|
368
419
|
"vpc_security_group_ids": "vpcSecurityGroupIds",
|
|
@@ -378,8 +429,11 @@ class CfnClusterProps:
|
|
|
378
429
|
shard_capacity: jsii.Number,
|
|
379
430
|
shard_count: jsii.Number,
|
|
380
431
|
admin_user_password: typing.Optional[builtins.str] = None,
|
|
432
|
+
backup_retention_period: typing.Optional[jsii.Number] = None,
|
|
381
433
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
434
|
+
preferred_backup_window: typing.Optional[builtins.str] = None,
|
|
382
435
|
preferred_maintenance_window: typing.Optional[builtins.str] = None,
|
|
436
|
+
shard_instance_count: typing.Optional[jsii.Number] = None,
|
|
383
437
|
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
384
438
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
385
439
|
vpc_security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -392,8 +446,11 @@ class CfnClusterProps:
|
|
|
392
446
|
:param shard_capacity: The number of vCPUs assigned to each elastic cluster shard. Maximum is 64. Allowed values are 2, 4, 8, 16, 32, 64.
|
|
393
447
|
:param shard_count: The number of shards assigned to the elastic cluster. Maximum is 32.
|
|
394
448
|
:param admin_user_password: The password for the Elastic DocumentDB cluster administrator and can contain any printable ASCII characters. *Constraints* : - Must contain from 8 to 100 characters. - Cannot contain a forward slash (/), double quote ("), or the "at" symbol (@). - A valid ``AdminUserName`` entry is also required.
|
|
449
|
+
:param backup_retention_period:
|
|
395
450
|
:param kms_key_id: The KMS key identifier to use to encrypt the new elastic cluster. The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a cluster using the same Amazon account that owns this KMS encryption key, you can use the KMS key alias instead of the ARN as the KMS encryption key. If an encryption key is not specified, Amazon DocumentDB uses the default encryption key that KMS creates for your account. Your account has a different default encryption key for each Amazon Region.
|
|
451
|
+
:param preferred_backup_window:
|
|
396
452
|
:param preferred_maintenance_window: The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC). *Format* : ``ddd:hh24:mi-ddd:hh24:mi`` *Default* : a 30-minute window selected at random from an 8-hour block of time for each AWS Region , occurring on a random day of the week. *Valid days* : Mon, Tue, Wed, Thu, Fri, Sat, Sun *Constraints* : Minimum 30-minute window.
|
|
453
|
+
:param shard_instance_count:
|
|
397
454
|
:param subnet_ids: The Amazon EC2 subnet IDs for the new elastic cluster.
|
|
398
455
|
:param tags: The tags to be assigned to the new elastic cluster.
|
|
399
456
|
:param vpc_security_group_ids: A list of EC2 VPC security groups to associate with the new elastic cluster.
|
|
@@ -416,8 +473,11 @@ class CfnClusterProps:
|
|
|
416
473
|
|
|
417
474
|
# the properties below are optional
|
|
418
475
|
admin_user_password="adminUserPassword",
|
|
476
|
+
backup_retention_period=123,
|
|
419
477
|
kms_key_id="kmsKeyId",
|
|
478
|
+
preferred_backup_window="preferredBackupWindow",
|
|
420
479
|
preferred_maintenance_window="preferredMaintenanceWindow",
|
|
480
|
+
shard_instance_count=123,
|
|
421
481
|
subnet_ids=["subnetIds"],
|
|
422
482
|
tags=[CfnTag(
|
|
423
483
|
key="key",
|
|
@@ -434,8 +494,11 @@ class CfnClusterProps:
|
|
|
434
494
|
check_type(argname="argument shard_capacity", value=shard_capacity, expected_type=type_hints["shard_capacity"])
|
|
435
495
|
check_type(argname="argument shard_count", value=shard_count, expected_type=type_hints["shard_count"])
|
|
436
496
|
check_type(argname="argument admin_user_password", value=admin_user_password, expected_type=type_hints["admin_user_password"])
|
|
497
|
+
check_type(argname="argument backup_retention_period", value=backup_retention_period, expected_type=type_hints["backup_retention_period"])
|
|
437
498
|
check_type(argname="argument kms_key_id", value=kms_key_id, expected_type=type_hints["kms_key_id"])
|
|
499
|
+
check_type(argname="argument preferred_backup_window", value=preferred_backup_window, expected_type=type_hints["preferred_backup_window"])
|
|
438
500
|
check_type(argname="argument preferred_maintenance_window", value=preferred_maintenance_window, expected_type=type_hints["preferred_maintenance_window"])
|
|
501
|
+
check_type(argname="argument shard_instance_count", value=shard_instance_count, expected_type=type_hints["shard_instance_count"])
|
|
439
502
|
check_type(argname="argument subnet_ids", value=subnet_ids, expected_type=type_hints["subnet_ids"])
|
|
440
503
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
441
504
|
check_type(argname="argument vpc_security_group_ids", value=vpc_security_group_ids, expected_type=type_hints["vpc_security_group_ids"])
|
|
@@ -448,10 +511,16 @@ class CfnClusterProps:
|
|
|
448
511
|
}
|
|
449
512
|
if admin_user_password is not None:
|
|
450
513
|
self._values["admin_user_password"] = admin_user_password
|
|
514
|
+
if backup_retention_period is not None:
|
|
515
|
+
self._values["backup_retention_period"] = backup_retention_period
|
|
451
516
|
if kms_key_id is not None:
|
|
452
517
|
self._values["kms_key_id"] = kms_key_id
|
|
518
|
+
if preferred_backup_window is not None:
|
|
519
|
+
self._values["preferred_backup_window"] = preferred_backup_window
|
|
453
520
|
if preferred_maintenance_window is not None:
|
|
454
521
|
self._values["preferred_maintenance_window"] = preferred_maintenance_window
|
|
522
|
+
if shard_instance_count is not None:
|
|
523
|
+
self._values["shard_instance_count"] = shard_instance_count
|
|
455
524
|
if subnet_ids is not None:
|
|
456
525
|
self._values["subnet_ids"] = subnet_ids
|
|
457
526
|
if tags is not None:
|
|
@@ -544,6 +613,14 @@ class CfnClusterProps:
|
|
|
544
613
|
result = self._values.get("admin_user_password")
|
|
545
614
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
546
615
|
|
|
616
|
+
@builtins.property
|
|
617
|
+
def backup_retention_period(self) -> typing.Optional[jsii.Number]:
|
|
618
|
+
'''
|
|
619
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdbelastic-cluster.html#cfn-docdbelastic-cluster-backupretentionperiod
|
|
620
|
+
'''
|
|
621
|
+
result = self._values.get("backup_retention_period")
|
|
622
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
623
|
+
|
|
547
624
|
@builtins.property
|
|
548
625
|
def kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
549
626
|
'''The KMS key identifier to use to encrypt the new elastic cluster.
|
|
@@ -557,6 +634,14 @@ class CfnClusterProps:
|
|
|
557
634
|
result = self._values.get("kms_key_id")
|
|
558
635
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
559
636
|
|
|
637
|
+
@builtins.property
|
|
638
|
+
def preferred_backup_window(self) -> typing.Optional[builtins.str]:
|
|
639
|
+
'''
|
|
640
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdbelastic-cluster.html#cfn-docdbelastic-cluster-preferredbackupwindow
|
|
641
|
+
'''
|
|
642
|
+
result = self._values.get("preferred_backup_window")
|
|
643
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
644
|
+
|
|
560
645
|
@builtins.property
|
|
561
646
|
def preferred_maintenance_window(self) -> typing.Optional[builtins.str]:
|
|
562
647
|
'''The weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
|
|
@@ -574,6 +659,14 @@ class CfnClusterProps:
|
|
|
574
659
|
result = self._values.get("preferred_maintenance_window")
|
|
575
660
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
576
661
|
|
|
662
|
+
@builtins.property
|
|
663
|
+
def shard_instance_count(self) -> typing.Optional[jsii.Number]:
|
|
664
|
+
'''
|
|
665
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdbelastic-cluster.html#cfn-docdbelastic-cluster-shardinstancecount
|
|
666
|
+
'''
|
|
667
|
+
result = self._values.get("shard_instance_count")
|
|
668
|
+
return typing.cast(typing.Optional[jsii.Number], result)
|
|
669
|
+
|
|
577
670
|
@builtins.property
|
|
578
671
|
def subnet_ids(self) -> typing.Optional[typing.List[builtins.str]]:
|
|
579
672
|
'''The Amazon EC2 subnet IDs for the new elastic cluster.
|
|
@@ -630,8 +723,11 @@ def _typecheckingstub__d18e65300a117432acf21688bd5e6ea35e026a31a5e4e4867ff7ee2d8
|
|
|
630
723
|
shard_capacity: jsii.Number,
|
|
631
724
|
shard_count: jsii.Number,
|
|
632
725
|
admin_user_password: typing.Optional[builtins.str] = None,
|
|
726
|
+
backup_retention_period: typing.Optional[jsii.Number] = None,
|
|
633
727
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
728
|
+
preferred_backup_window: typing.Optional[builtins.str] = None,
|
|
634
729
|
preferred_maintenance_window: typing.Optional[builtins.str] = None,
|
|
730
|
+
shard_instance_count: typing.Optional[jsii.Number] = None,
|
|
635
731
|
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
636
732
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
637
733
|
vpc_security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
@@ -687,18 +783,36 @@ def _typecheckingstub__470579f0ad58114a88b5ed48276c3b18996b7302a73c462a28c5fe499
|
|
|
687
783
|
"""Type checking stubs"""
|
|
688
784
|
pass
|
|
689
785
|
|
|
786
|
+
def _typecheckingstub__d81338ed2d2b35425bdc6b440d859bf6f7104c7d3e66fb0b6a4b0b6ed4baaf00(
|
|
787
|
+
value: typing.Optional[jsii.Number],
|
|
788
|
+
) -> None:
|
|
789
|
+
"""Type checking stubs"""
|
|
790
|
+
pass
|
|
791
|
+
|
|
690
792
|
def _typecheckingstub__0953a51d1454415947e4ab62061cf85963bc67eaf8b442f55611367c42e51638(
|
|
691
793
|
value: typing.Optional[builtins.str],
|
|
692
794
|
) -> None:
|
|
693
795
|
"""Type checking stubs"""
|
|
694
796
|
pass
|
|
695
797
|
|
|
798
|
+
def _typecheckingstub__8c4acb4ae8cd439155ec33ec8e279ea4474d4a87642ef3d269a76e5647be02bf(
|
|
799
|
+
value: typing.Optional[builtins.str],
|
|
800
|
+
) -> None:
|
|
801
|
+
"""Type checking stubs"""
|
|
802
|
+
pass
|
|
803
|
+
|
|
696
804
|
def _typecheckingstub__0ffa8d3c73f9cb8dbb10a83c94105842d5c99d4532516cfb2e94ac10a5760cd3(
|
|
697
805
|
value: typing.Optional[builtins.str],
|
|
698
806
|
) -> None:
|
|
699
807
|
"""Type checking stubs"""
|
|
700
808
|
pass
|
|
701
809
|
|
|
810
|
+
def _typecheckingstub__2081e1f0fbadf01af64a49f199c20e8ba4209c58b855709e74d727666c656b34(
|
|
811
|
+
value: typing.Optional[jsii.Number],
|
|
812
|
+
) -> None:
|
|
813
|
+
"""Type checking stubs"""
|
|
814
|
+
pass
|
|
815
|
+
|
|
702
816
|
def _typecheckingstub__c59fae2991fdf99f407d97835ea06b1afbfc6a97c5607c1b1b36dfc5aad6bb97(
|
|
703
817
|
value: typing.Optional[typing.List[builtins.str]],
|
|
704
818
|
) -> None:
|
|
@@ -725,8 +839,11 @@ def _typecheckingstub__2b5fe934af328fd508365294b2de9cfcaa71e04fad229d22243ec4156
|
|
|
725
839
|
shard_capacity: jsii.Number,
|
|
726
840
|
shard_count: jsii.Number,
|
|
727
841
|
admin_user_password: typing.Optional[builtins.str] = None,
|
|
842
|
+
backup_retention_period: typing.Optional[jsii.Number] = None,
|
|
728
843
|
kms_key_id: typing.Optional[builtins.str] = None,
|
|
844
|
+
preferred_backup_window: typing.Optional[builtins.str] = None,
|
|
729
845
|
preferred_maintenance_window: typing.Optional[builtins.str] = None,
|
|
846
|
+
shard_instance_count: typing.Optional[jsii.Number] = None,
|
|
730
847
|
subnet_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|
|
731
848
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
732
849
|
vpc_security_group_ids: typing.Optional[typing.Sequence[builtins.str]] = None,
|