aws-cdk-lib 2.179.0__py3-none-any.whl → 2.180.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 +14 -6
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.179.0.jsii.tgz → aws-cdk-lib@2.180.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +47 -0
- aws_cdk/aws_apigateway/__init__.py +6 -6
- aws_cdk/aws_appsync/__init__.py +4 -3
- aws_cdk/aws_backup/__init__.py +89 -0
- aws_cdk/aws_batch/__init__.py +89 -50
- aws_cdk/aws_bedrock/__init__.py +506 -62
- aws_cdk/aws_cloudfront/__init__.py +1046 -155
- aws_cdk/aws_cloudfront_origins/__init__.py +1338 -144
- aws_cdk/aws_cloudtrail/__init__.py +4 -8
- aws_cdk/aws_cloudwatch/__init__.py +1 -1
- aws_cdk/aws_codebuild/__init__.py +2 -2
- aws_cdk/aws_codepipeline/__init__.py +24 -0
- aws_cdk/aws_codepipeline_actions/__init__.py +28 -1
- aws_cdk/aws_codestar/__init__.py +2 -1
- aws_cdk/aws_cognito/__init__.py +0 -9
- aws_cdk/aws_connect/__init__.py +257 -0
- aws_cdk/aws_datasync/__init__.py +279 -50
- aws_cdk/aws_deadline/__init__.py +683 -6
- aws_cdk/aws_directoryservice/__init__.py +9 -4
- aws_cdk/aws_dlm/__init__.py +2 -2
- aws_cdk/aws_dms/__init__.py +3 -3
- aws_cdk/aws_dynamodb/__init__.py +0 -54
- aws_cdk/aws_ec2/__init__.py +377 -121
- aws_cdk/aws_ecs/__init__.py +20 -35
- aws_cdk/aws_efs/__init__.py +1 -1
- aws_cdk/aws_eks/__init__.py +5 -3
- aws_cdk/aws_elasticloadbalancingv2/__init__.py +13 -27
- aws_cdk/aws_emrcontainers/__init__.py +44 -1
- aws_cdk/aws_events/__init__.py +8 -11
- aws_cdk/aws_fms/__init__.py +5 -5
- aws_cdk/aws_fsx/__init__.py +5 -4
- aws_cdk/aws_glue/__init__.py +161 -0
- aws_cdk/aws_groundstation/__init__.py +23 -1
- aws_cdk/aws_iam/__init__.py +12 -12
- aws_cdk/aws_iot/__init__.py +7 -0
- aws_cdk/aws_ivs/__init__.py +17 -8
- aws_cdk/aws_kinesis/__init__.py +689 -35
- aws_cdk/aws_lambda/__init__.py +10 -15
- aws_cdk/aws_lambda_event_sources/__init__.py +175 -2
- aws_cdk/aws_medialive/__init__.py +314 -4
- aws_cdk/aws_opensearchserverless/__init__.py +19 -0
- aws_cdk/aws_rds/__init__.py +78 -58
- aws_cdk/aws_s3/__init__.py +278 -0
- aws_cdk/aws_s3objectlambda/__init__.py +2 -2
- aws_cdk/aws_ses/__init__.py +228 -8
- aws_cdk/aws_ssm/__init__.py +4 -5
- aws_cdk/aws_stepfunctions/__init__.py +301 -70
- aws_cdk/aws_stepfunctions_tasks/__init__.py +142 -142
- aws_cdk/aws_supportapp/__init__.py +7 -7
- aws_cdk/aws_transfer/__init__.py +820 -2
- aws_cdk/aws_wafv2/__init__.py +17 -9
- aws_cdk/custom_resources/__init__.py +23 -26
- aws_cdk/cx_api/__init__.py +16 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/METADATA +1 -1
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/RECORD +62 -62
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.179.0.dist-info → aws_cdk_lib-2.180.0.dist-info}/top_level.txt +0 -0
|
@@ -982,6 +982,7 @@ class CfnSecurityConfig(
|
|
|
982
982
|
|
|
983
983
|
# the properties below are optional
|
|
984
984
|
group_attribute="groupAttribute",
|
|
985
|
+
open_search_serverless_entity_id="openSearchServerlessEntityId",
|
|
985
986
|
session_timeout=123,
|
|
986
987
|
user_attribute="userAttribute"
|
|
987
988
|
),
|
|
@@ -1317,6 +1318,7 @@ class CfnSecurityConfig(
|
|
|
1317
1318
|
name_mapping={
|
|
1318
1319
|
"metadata": "metadata",
|
|
1319
1320
|
"group_attribute": "groupAttribute",
|
|
1321
|
+
"open_search_serverless_entity_id": "openSearchServerlessEntityId",
|
|
1320
1322
|
"session_timeout": "sessionTimeout",
|
|
1321
1323
|
"user_attribute": "userAttribute",
|
|
1322
1324
|
},
|
|
@@ -1327,6 +1329,7 @@ class CfnSecurityConfig(
|
|
|
1327
1329
|
*,
|
|
1328
1330
|
metadata: builtins.str,
|
|
1329
1331
|
group_attribute: typing.Optional[builtins.str] = None,
|
|
1332
|
+
open_search_serverless_entity_id: typing.Optional[builtins.str] = None,
|
|
1330
1333
|
session_timeout: typing.Optional[jsii.Number] = None,
|
|
1331
1334
|
user_attribute: typing.Optional[builtins.str] = None,
|
|
1332
1335
|
) -> None:
|
|
@@ -1334,6 +1337,7 @@ class CfnSecurityConfig(
|
|
|
1334
1337
|
|
|
1335
1338
|
:param metadata: The XML IdP metadata file generated from your identity provider.
|
|
1336
1339
|
:param group_attribute: The group attribute for this SAML integration.
|
|
1340
|
+
:param open_search_serverless_entity_id: Custom entity id attribute to override default entity id for this saml integration.
|
|
1337
1341
|
:param session_timeout: The session timeout, in minutes. Default is 60 minutes (12 hours).
|
|
1338
1342
|
:param user_attribute: A user attribute for this SAML integration.
|
|
1339
1343
|
|
|
@@ -1351,6 +1355,7 @@ class CfnSecurityConfig(
|
|
|
1351
1355
|
|
|
1352
1356
|
# the properties below are optional
|
|
1353
1357
|
group_attribute="groupAttribute",
|
|
1358
|
+
open_search_serverless_entity_id="openSearchServerlessEntityId",
|
|
1354
1359
|
session_timeout=123,
|
|
1355
1360
|
user_attribute="userAttribute"
|
|
1356
1361
|
)
|
|
@@ -1359,6 +1364,7 @@ class CfnSecurityConfig(
|
|
|
1359
1364
|
type_hints = typing.get_type_hints(_typecheckingstub__0390198d9b44e1b80737604ac5328dbfc7481d5b1ba8f915caa2e8c2a8028a9c)
|
|
1360
1365
|
check_type(argname="argument metadata", value=metadata, expected_type=type_hints["metadata"])
|
|
1361
1366
|
check_type(argname="argument group_attribute", value=group_attribute, expected_type=type_hints["group_attribute"])
|
|
1367
|
+
check_type(argname="argument open_search_serverless_entity_id", value=open_search_serverless_entity_id, expected_type=type_hints["open_search_serverless_entity_id"])
|
|
1362
1368
|
check_type(argname="argument session_timeout", value=session_timeout, expected_type=type_hints["session_timeout"])
|
|
1363
1369
|
check_type(argname="argument user_attribute", value=user_attribute, expected_type=type_hints["user_attribute"])
|
|
1364
1370
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -1366,6 +1372,8 @@ class CfnSecurityConfig(
|
|
|
1366
1372
|
}
|
|
1367
1373
|
if group_attribute is not None:
|
|
1368
1374
|
self._values["group_attribute"] = group_attribute
|
|
1375
|
+
if open_search_serverless_entity_id is not None:
|
|
1376
|
+
self._values["open_search_serverless_entity_id"] = open_search_serverless_entity_id
|
|
1369
1377
|
if session_timeout is not None:
|
|
1370
1378
|
self._values["session_timeout"] = session_timeout
|
|
1371
1379
|
if user_attribute is not None:
|
|
@@ -1390,6 +1398,15 @@ class CfnSecurityConfig(
|
|
|
1390
1398
|
result = self._values.get("group_attribute")
|
|
1391
1399
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
1392
1400
|
|
|
1401
|
+
@builtins.property
|
|
1402
|
+
def open_search_serverless_entity_id(self) -> typing.Optional[builtins.str]:
|
|
1403
|
+
'''Custom entity id attribute to override default entity id for this saml integration.
|
|
1404
|
+
|
|
1405
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-samlconfigoptions.html#cfn-opensearchserverless-securityconfig-samlconfigoptions-opensearchserverlessentityid
|
|
1406
|
+
'''
|
|
1407
|
+
result = self._values.get("open_search_serverless_entity_id")
|
|
1408
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
1409
|
+
|
|
1393
1410
|
@builtins.property
|
|
1394
1411
|
def session_timeout(self) -> typing.Optional[jsii.Number]:
|
|
1395
1412
|
'''The session timeout, in minutes.
|
|
@@ -1478,6 +1495,7 @@ class CfnSecurityConfigProps:
|
|
|
1478
1495
|
|
|
1479
1496
|
# the properties below are optional
|
|
1480
1497
|
group_attribute="groupAttribute",
|
|
1498
|
+
open_search_serverless_entity_id="openSearchServerlessEntityId",
|
|
1481
1499
|
session_timeout=123,
|
|
1482
1500
|
user_attribute="userAttribute"
|
|
1483
1501
|
),
|
|
@@ -2367,6 +2385,7 @@ def _typecheckingstub__0390198d9b44e1b80737604ac5328dbfc7481d5b1ba8f915caa2e8c2a
|
|
|
2367
2385
|
*,
|
|
2368
2386
|
metadata: builtins.str,
|
|
2369
2387
|
group_attribute: typing.Optional[builtins.str] = None,
|
|
2388
|
+
open_search_serverless_entity_id: typing.Optional[builtins.str] = None,
|
|
2370
2389
|
session_timeout: typing.Optional[jsii.Number] = None,
|
|
2371
2390
|
user_attribute: typing.Optional[builtins.str] = None,
|
|
2372
2391
|
) -> None:
|
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -2981,6 +2981,12 @@ class AuroraMysqlEngineVersion(
|
|
|
2981
2981
|
'''Version "8.0.mysql_aurora.3.08.0".'''
|
|
2982
2982
|
return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_3_08_0"))
|
|
2983
2983
|
|
|
2984
|
+
@jsii.python.classproperty
|
|
2985
|
+
@jsii.member(jsii_name="VER_3_08_1")
|
|
2986
|
+
def VER_3_08_1(cls) -> "AuroraMysqlEngineVersion":
|
|
2987
|
+
'''Version "8.0.mysql_aurora.3.08.1".'''
|
|
2988
|
+
return typing.cast("AuroraMysqlEngineVersion", jsii.sget(cls, "VER_3_08_1"))
|
|
2989
|
+
|
|
2984
2990
|
@jsii.python.classproperty
|
|
2985
2991
|
@jsii.member(jsii_name="VER_5_7_12")
|
|
2986
2992
|
def VER_5_7_12(cls) -> "AuroraMysqlEngineVersion":
|
|
@@ -8686,6 +8692,7 @@ class CfnDBInstance(
|
|
|
8686
8692
|
cfn_dBInstance = rds.CfnDBInstance(self, "MyCfnDBInstance",
|
|
8687
8693
|
allocated_storage="allocatedStorage",
|
|
8688
8694
|
allow_major_version_upgrade=False,
|
|
8695
|
+
apply_immediately=False,
|
|
8689
8696
|
associated_roles=[rds.CfnDBInstance.DBInstanceRoleProperty(
|
|
8690
8697
|
feature_name="featureName",
|
|
8691
8698
|
role_arn="roleArn"
|
|
@@ -8792,6 +8799,7 @@ class CfnDBInstance(
|
|
|
8792
8799
|
*,
|
|
8793
8800
|
allocated_storage: typing.Optional[builtins.str] = None,
|
|
8794
8801
|
allow_major_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
8802
|
+
apply_immediately: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
8795
8803
|
associated_roles: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union["CfnDBInstance.DBInstanceRoleProperty", typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
8796
8804
|
automatic_backup_replication_kms_key_id: typing.Optional[builtins.str] = None,
|
|
8797
8805
|
automatic_backup_replication_region: typing.Optional[builtins.str] = None,
|
|
@@ -8875,6 +8883,7 @@ class CfnDBInstance(
|
|
|
8875
8883
|
:param id: Construct identifier for this resource (unique in its scope).
|
|
8876
8884
|
:param allocated_storage: The amount of storage in gibibytes (GiB) to be initially allocated for the database instance. .. epigraph:: If any value is set in the ``Iops`` parameter, ``AllocatedStorage`` must be at least 100 GiB, which corresponds to the minimum Iops value of 1,000. If you increase the ``Iops`` value (in 1,000 IOPS increments), then you must also increase the ``AllocatedStorage`` value (in 100-GiB increments). *Amazon Aurora* Not applicable. Aurora cluster volumes automatically grow as the amount of data in your database increases, though you are only charged for the space that you use in an Aurora cluster volume. *Db2* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp3): Must be an integer from 20 to 64000. - Provisioned IOPS storage (io1): Must be an integer from 100 to 64000. *MySQL* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp2): Must be an integer from 20 to 65536. - Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. - Magnetic storage (standard): Must be an integer from 5 to 3072. *MariaDB* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp2): Must be an integer from 20 to 65536. - Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. - Magnetic storage (standard): Must be an integer from 5 to 3072. *PostgreSQL* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp2): Must be an integer from 20 to 65536. - Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. - Magnetic storage (standard): Must be an integer from 5 to 3072. *Oracle* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp2): Must be an integer from 20 to 65536. - Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. - Magnetic storage (standard): Must be an integer from 10 to 3072. *SQL Server* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp2): - Enterprise and Standard editions: Must be an integer from 20 to 16384. - Web and Express editions: Must be an integer from 20 to 16384. - Provisioned IOPS storage (io1): - Enterprise and Standard editions: Must be an integer from 20 to 16384. - Web and Express editions: Must be an integer from 20 to 16384. - Magnetic storage (standard): - Enterprise and Standard editions: Must be an integer from 20 to 1024. - Web and Express editions: Must be an integer from 20 to 1024.
|
|
8877
8885
|
:param allow_major_version_upgrade: A value that indicates whether major version upgrades are allowed. Changing this parameter doesn't result in an outage and the change is asynchronously applied as soon as possible. Constraints: Major version upgrades must be allowed when specifying a value for the ``EngineVersion`` parameter that is a different major version than the DB instance's current version.
|
|
8886
|
+
:param apply_immediately: Specifies whether changes to the DB instance and any pending modifications are applied immediately, regardless of the ``PreferredMaintenanceWindow`` setting. If set to ``false`` , changes are applied during the next maintenance window. Until RDS applies the changes, the DB instance remains in a drift state. As a result, the configuration doesn't fully reflect the requested modifications and temporarily diverges from the intended state. In addition to the settings described in `Modifying a DB instance <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Modifying.html>`_ , this property also determines whether the DB instance reboots when a static parameter is modified in the associated DB parameter group. Default: ``true``
|
|
8878
8887
|
:param associated_roles: The AWS Identity and Access Management (IAM) roles associated with the DB instance. *Amazon Aurora* Not applicable. The associated roles are managed by the DB cluster.
|
|
8879
8888
|
:param automatic_backup_replication_kms_key_id: The AWS KMS key identifier for encryption of the replicated automated backups. The KMS key ID is the Amazon Resource Name (ARN) for the KMS encryption key in the destination AWS Region , for example, ``arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE`` .
|
|
8880
8889
|
:param automatic_backup_replication_region: The AWS Region associated with the automated backup.
|
|
@@ -8960,6 +8969,7 @@ class CfnDBInstance(
|
|
|
8960
8969
|
props = CfnDBInstanceProps(
|
|
8961
8970
|
allocated_storage=allocated_storage,
|
|
8962
8971
|
allow_major_version_upgrade=allow_major_version_upgrade,
|
|
8972
|
+
apply_immediately=apply_immediately,
|
|
8963
8973
|
associated_roles=associated_roles,
|
|
8964
8974
|
automatic_backup_replication_kms_key_id=automatic_backup_replication_kms_key_id,
|
|
8965
8975
|
automatic_backup_replication_region=automatic_backup_replication_region,
|
|
@@ -9215,6 +9225,24 @@ class CfnDBInstance(
|
|
|
9215
9225
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
9216
9226
|
jsii.set(self, "allowMajorVersionUpgrade", value) # pyright: ignore[reportArgumentType]
|
|
9217
9227
|
|
|
9228
|
+
@builtins.property
|
|
9229
|
+
@jsii.member(jsii_name="applyImmediately")
|
|
9230
|
+
def apply_immediately(
|
|
9231
|
+
self,
|
|
9232
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
9233
|
+
'''Specifies whether changes to the DB instance and any pending modifications are applied immediately, regardless of the ``PreferredMaintenanceWindow`` setting.'''
|
|
9234
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], jsii.get(self, "applyImmediately"))
|
|
9235
|
+
|
|
9236
|
+
@apply_immediately.setter
|
|
9237
|
+
def apply_immediately(
|
|
9238
|
+
self,
|
|
9239
|
+
value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
|
|
9240
|
+
) -> None:
|
|
9241
|
+
if __debug__:
|
|
9242
|
+
type_hints = typing.get_type_hints(_typecheckingstub__541ae79271b3863f62364d17706d85a7c492cd2e7587446eabdb62da45fc95fe)
|
|
9243
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
9244
|
+
jsii.set(self, "applyImmediately", value) # pyright: ignore[reportArgumentType]
|
|
9245
|
+
|
|
9218
9246
|
@builtins.property
|
|
9219
9247
|
@jsii.member(jsii_name="associatedRoles")
|
|
9220
9248
|
def associated_roles(
|
|
@@ -10758,6 +10786,7 @@ class CfnDBInstance(
|
|
|
10758
10786
|
name_mapping={
|
|
10759
10787
|
"allocated_storage": "allocatedStorage",
|
|
10760
10788
|
"allow_major_version_upgrade": "allowMajorVersionUpgrade",
|
|
10789
|
+
"apply_immediately": "applyImmediately",
|
|
10761
10790
|
"associated_roles": "associatedRoles",
|
|
10762
10791
|
"automatic_backup_replication_kms_key_id": "automaticBackupReplicationKmsKeyId",
|
|
10763
10792
|
"automatic_backup_replication_region": "automaticBackupReplicationRegion",
|
|
@@ -10843,6 +10872,7 @@ class CfnDBInstanceProps:
|
|
|
10843
10872
|
*,
|
|
10844
10873
|
allocated_storage: typing.Optional[builtins.str] = None,
|
|
10845
10874
|
allow_major_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10875
|
+
apply_immediately: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10846
10876
|
associated_roles: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDBInstance.DBInstanceRoleProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
10847
10877
|
automatic_backup_replication_kms_key_id: typing.Optional[builtins.str] = None,
|
|
10848
10878
|
automatic_backup_replication_region: typing.Optional[builtins.str] = None,
|
|
@@ -10925,6 +10955,7 @@ class CfnDBInstanceProps:
|
|
|
10925
10955
|
|
|
10926
10956
|
:param allocated_storage: The amount of storage in gibibytes (GiB) to be initially allocated for the database instance. .. epigraph:: If any value is set in the ``Iops`` parameter, ``AllocatedStorage`` must be at least 100 GiB, which corresponds to the minimum Iops value of 1,000. If you increase the ``Iops`` value (in 1,000 IOPS increments), then you must also increase the ``AllocatedStorage`` value (in 100-GiB increments). *Amazon Aurora* Not applicable. Aurora cluster volumes automatically grow as the amount of data in your database increases, though you are only charged for the space that you use in an Aurora cluster volume. *Db2* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp3): Must be an integer from 20 to 64000. - Provisioned IOPS storage (io1): Must be an integer from 100 to 64000. *MySQL* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp2): Must be an integer from 20 to 65536. - Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. - Magnetic storage (standard): Must be an integer from 5 to 3072. *MariaDB* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp2): Must be an integer from 20 to 65536. - Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. - Magnetic storage (standard): Must be an integer from 5 to 3072. *PostgreSQL* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp2): Must be an integer from 20 to 65536. - Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. - Magnetic storage (standard): Must be an integer from 5 to 3072. *Oracle* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp2): Must be an integer from 20 to 65536. - Provisioned IOPS storage (io1): Must be an integer from 100 to 65536. - Magnetic storage (standard): Must be an integer from 10 to 3072. *SQL Server* Constraints to the amount of storage for each storage type are the following: - General Purpose (SSD) storage (gp2): - Enterprise and Standard editions: Must be an integer from 20 to 16384. - Web and Express editions: Must be an integer from 20 to 16384. - Provisioned IOPS storage (io1): - Enterprise and Standard editions: Must be an integer from 20 to 16384. - Web and Express editions: Must be an integer from 20 to 16384. - Magnetic storage (standard): - Enterprise and Standard editions: Must be an integer from 20 to 1024. - Web and Express editions: Must be an integer from 20 to 1024.
|
|
10927
10957
|
:param allow_major_version_upgrade: A value that indicates whether major version upgrades are allowed. Changing this parameter doesn't result in an outage and the change is asynchronously applied as soon as possible. Constraints: Major version upgrades must be allowed when specifying a value for the ``EngineVersion`` parameter that is a different major version than the DB instance's current version.
|
|
10958
|
+
:param apply_immediately: Specifies whether changes to the DB instance and any pending modifications are applied immediately, regardless of the ``PreferredMaintenanceWindow`` setting. If set to ``false`` , changes are applied during the next maintenance window. Until RDS applies the changes, the DB instance remains in a drift state. As a result, the configuration doesn't fully reflect the requested modifications and temporarily diverges from the intended state. In addition to the settings described in `Modifying a DB instance <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Modifying.html>`_ , this property also determines whether the DB instance reboots when a static parameter is modified in the associated DB parameter group. Default: ``true``
|
|
10928
10959
|
:param associated_roles: The AWS Identity and Access Management (IAM) roles associated with the DB instance. *Amazon Aurora* Not applicable. The associated roles are managed by the DB cluster.
|
|
10929
10960
|
:param automatic_backup_replication_kms_key_id: The AWS KMS key identifier for encryption of the replicated automated backups. The KMS key ID is the Amazon Resource Name (ARN) for the KMS encryption key in the destination AWS Region , for example, ``arn:aws:kms:us-east-1:123456789012:key/AKIAIOSFODNN7EXAMPLE`` .
|
|
10930
10961
|
:param automatic_backup_replication_region: The AWS Region associated with the automated backup.
|
|
@@ -11015,6 +11046,7 @@ class CfnDBInstanceProps:
|
|
|
11015
11046
|
cfn_dBInstance_props = rds.CfnDBInstanceProps(
|
|
11016
11047
|
allocated_storage="allocatedStorage",
|
|
11017
11048
|
allow_major_version_upgrade=False,
|
|
11049
|
+
apply_immediately=False,
|
|
11018
11050
|
associated_roles=[rds.CfnDBInstance.DBInstanceRoleProperty(
|
|
11019
11051
|
feature_name="featureName",
|
|
11020
11052
|
role_arn="roleArn"
|
|
@@ -11117,6 +11149,7 @@ class CfnDBInstanceProps:
|
|
|
11117
11149
|
type_hints = typing.get_type_hints(_typecheckingstub__3bddb1be0bd1f1699e3a084c5859d94d8879ff15011f2f2eaac29ec16f6eaebc)
|
|
11118
11150
|
check_type(argname="argument allocated_storage", value=allocated_storage, expected_type=type_hints["allocated_storage"])
|
|
11119
11151
|
check_type(argname="argument allow_major_version_upgrade", value=allow_major_version_upgrade, expected_type=type_hints["allow_major_version_upgrade"])
|
|
11152
|
+
check_type(argname="argument apply_immediately", value=apply_immediately, expected_type=type_hints["apply_immediately"])
|
|
11120
11153
|
check_type(argname="argument associated_roles", value=associated_roles, expected_type=type_hints["associated_roles"])
|
|
11121
11154
|
check_type(argname="argument automatic_backup_replication_kms_key_id", value=automatic_backup_replication_kms_key_id, expected_type=type_hints["automatic_backup_replication_kms_key_id"])
|
|
11122
11155
|
check_type(argname="argument automatic_backup_replication_region", value=automatic_backup_replication_region, expected_type=type_hints["automatic_backup_replication_region"])
|
|
@@ -11199,6 +11232,8 @@ class CfnDBInstanceProps:
|
|
|
11199
11232
|
self._values["allocated_storage"] = allocated_storage
|
|
11200
11233
|
if allow_major_version_upgrade is not None:
|
|
11201
11234
|
self._values["allow_major_version_upgrade"] = allow_major_version_upgrade
|
|
11235
|
+
if apply_immediately is not None:
|
|
11236
|
+
self._values["apply_immediately"] = apply_immediately
|
|
11202
11237
|
if associated_roles is not None:
|
|
11203
11238
|
self._values["associated_roles"] = associated_roles
|
|
11204
11239
|
if automatic_backup_replication_kms_key_id is not None:
|
|
@@ -11439,6 +11474,23 @@ class CfnDBInstanceProps:
|
|
|
11439
11474
|
result = self._values.get("allow_major_version_upgrade")
|
|
11440
11475
|
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
11441
11476
|
|
|
11477
|
+
@builtins.property
|
|
11478
|
+
def apply_immediately(
|
|
11479
|
+
self,
|
|
11480
|
+
) -> typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]]:
|
|
11481
|
+
'''Specifies whether changes to the DB instance and any pending modifications are applied immediately, regardless of the ``PreferredMaintenanceWindow`` setting.
|
|
11482
|
+
|
|
11483
|
+
If set to ``false`` , changes are applied during the next maintenance window. Until RDS applies the changes, the DB instance remains in a drift state. As a result, the configuration doesn't fully reflect the requested modifications and temporarily diverges from the intended state.
|
|
11484
|
+
|
|
11485
|
+
In addition to the settings described in `Modifying a DB instance <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.DBInstance.Modifying.html>`_ , this property also determines whether the DB instance reboots when a static parameter is modified in the associated DB parameter group.
|
|
11486
|
+
|
|
11487
|
+
Default: ``true``
|
|
11488
|
+
|
|
11489
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-applyimmediately
|
|
11490
|
+
'''
|
|
11491
|
+
result = self._values.get("apply_immediately")
|
|
11492
|
+
return typing.cast(typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]], result)
|
|
11493
|
+
|
|
11442
11494
|
@builtins.property
|
|
11443
11495
|
def associated_roles(
|
|
11444
11496
|
self,
|
|
@@ -12976,7 +13028,7 @@ class CfnDBParameterGroup(
|
|
|
12976
13028
|
:param description: Provides the customer-specified description for this DB parameter group.
|
|
12977
13029
|
:param family: The DB parameter group family name. A DB parameter group can be associated with one and only one DB parameter group family, and can be applied only to a DB instance running a database engine and engine version compatible with that DB parameter group family. To list all of the available parameter group families for a DB engine, use the following command: ``aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`` For example, to list all of the available parameter group families for the MySQL DB engine, use the following command: ``aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine mysql`` .. epigraph:: The output contains duplicates. The following are the valid DB engine values: - ``aurora-mysql`` - ``aurora-postgresql`` - ``db2-ae`` - ``db2-se`` - ``mysql`` - ``oracle-ee`` - ``oracle-ee-cdb`` - ``oracle-se2`` - ``oracle-se2-cdb`` - ``postgres`` - ``sqlserver-ee`` - ``sqlserver-se`` - ``sqlserver-ex`` - ``sqlserver-web``
|
|
12978
13030
|
:param db_parameter_group_name: The name of the DB parameter group. Constraints: - Must be 1 to 255 letters, numbers, or hyphens. - First character must be a letter - Can't end with a hyphen or contain two consecutive hyphens If you don't specify a value for ``DBParameterGroupName`` property, a name is automatically created for the DB parameter group. .. epigraph:: This value is stored as a lowercase string.
|
|
12979
|
-
:param parameters:
|
|
13031
|
+
:param parameters: A mapping of parameter names and values for the parameter update. You must specify at least one parameter name and value. For more information about parameter groups, see `Working with parameter groups <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithParamGroups.html>`_ in the *Amazon RDS User Guide* , or `Working with parameter groups <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html>`_ in the *Amazon Aurora User Guide* . .. epigraph:: AWS CloudFormation doesn't support specifying an apply method for each individual parameter. The default apply method for each parameter is used.
|
|
12980
13032
|
:param tags: Tags to assign to the DB parameter group.
|
|
12981
13033
|
'''
|
|
12982
13034
|
if __debug__:
|
|
@@ -13085,7 +13137,7 @@ class CfnDBParameterGroup(
|
|
|
13085
13137
|
@builtins.property
|
|
13086
13138
|
@jsii.member(jsii_name="parameters")
|
|
13087
13139
|
def parameters(self) -> typing.Any:
|
|
13088
|
-
'''
|
|
13140
|
+
'''A mapping of parameter names and values for the parameter update.'''
|
|
13089
13141
|
return typing.cast(typing.Any, jsii.get(self, "parameters"))
|
|
13090
13142
|
|
|
13091
13143
|
@parameters.setter
|
|
@@ -13135,7 +13187,7 @@ class CfnDBParameterGroupProps:
|
|
|
13135
13187
|
:param description: Provides the customer-specified description for this DB parameter group.
|
|
13136
13188
|
:param family: The DB parameter group family name. A DB parameter group can be associated with one and only one DB parameter group family, and can be applied only to a DB instance running a database engine and engine version compatible with that DB parameter group family. To list all of the available parameter group families for a DB engine, use the following command: ``aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine <engine>`` For example, to list all of the available parameter group families for the MySQL DB engine, use the following command: ``aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily" --engine mysql`` .. epigraph:: The output contains duplicates. The following are the valid DB engine values: - ``aurora-mysql`` - ``aurora-postgresql`` - ``db2-ae`` - ``db2-se`` - ``mysql`` - ``oracle-ee`` - ``oracle-ee-cdb`` - ``oracle-se2`` - ``oracle-se2-cdb`` - ``postgres`` - ``sqlserver-ee`` - ``sqlserver-se`` - ``sqlserver-ex`` - ``sqlserver-web``
|
|
13137
13189
|
:param db_parameter_group_name: The name of the DB parameter group. Constraints: - Must be 1 to 255 letters, numbers, or hyphens. - First character must be a letter - Can't end with a hyphen or contain two consecutive hyphens If you don't specify a value for ``DBParameterGroupName`` property, a name is automatically created for the DB parameter group. .. epigraph:: This value is stored as a lowercase string.
|
|
13138
|
-
:param parameters:
|
|
13190
|
+
:param parameters: A mapping of parameter names and values for the parameter update. You must specify at least one parameter name and value. For more information about parameter groups, see `Working with parameter groups <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithParamGroups.html>`_ in the *Amazon RDS User Guide* , or `Working with parameter groups <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html>`_ in the *Amazon Aurora User Guide* . .. epigraph:: AWS CloudFormation doesn't support specifying an apply method for each individual parameter. The default apply method for each parameter is used.
|
|
13139
13191
|
:param tags: Tags to assign to the DB parameter group.
|
|
13140
13192
|
|
|
13141
13193
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbparametergroup.html
|
|
@@ -13252,7 +13304,7 @@ class CfnDBParameterGroupProps:
|
|
|
13252
13304
|
|
|
13253
13305
|
@builtins.property
|
|
13254
13306
|
def parameters(self) -> typing.Any:
|
|
13255
|
-
'''
|
|
13307
|
+
'''A mapping of parameter names and values for the parameter update.
|
|
13256
13308
|
|
|
13257
13309
|
You must specify at least one parameter name and value.
|
|
13258
13310
|
|
|
@@ -16894,9 +16946,6 @@ class CfnGlobalCluster(
|
|
|
16894
16946
|
engine_lifecycle_support="engineLifecycleSupport",
|
|
16895
16947
|
engine_version="engineVersion",
|
|
16896
16948
|
global_cluster_identifier="globalClusterIdentifier",
|
|
16897
|
-
global_endpoint=rds.CfnGlobalCluster.GlobalEndpointProperty(
|
|
16898
|
-
address="address"
|
|
16899
|
-
),
|
|
16900
16949
|
source_db_cluster_identifier="sourceDbClusterIdentifier",
|
|
16901
16950
|
storage_encrypted=False,
|
|
16902
16951
|
tags=[CfnTag(
|
|
@@ -16916,7 +16965,6 @@ class CfnGlobalCluster(
|
|
|
16916
16965
|
engine_lifecycle_support: typing.Optional[builtins.str] = None,
|
|
16917
16966
|
engine_version: typing.Optional[builtins.str] = None,
|
|
16918
16967
|
global_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
16919
|
-
global_endpoint: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union["CfnGlobalCluster.GlobalEndpointProperty", typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
16920
16968
|
source_db_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
16921
16969
|
storage_encrypted: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
16922
16970
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -16929,7 +16977,6 @@ class CfnGlobalCluster(
|
|
|
16929
16977
|
:param engine_lifecycle_support: The life cycle type for this global database cluster. .. epigraph:: By default, this value is set to ``open-source-rds-extended-support`` , which enrolls your global cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to ``open-source-rds-extended-support-disabled`` . In this case, creating the global cluster will fail if the DB major version is past its end of standard support date. This setting only applies to Aurora PostgreSQL-based global databases. You can use this setting to enroll your global cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your global cluster past the end of standard support for that engine version. For more information, see `Using Amazon RDS Extended Support <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html>`_ in the *Amazon Aurora User Guide* . Valid Values: ``open-source-rds-extended-support | open-source-rds-extended-support-disabled`` Default: ``open-source-rds-extended-support``
|
|
16930
16978
|
:param engine_version: The engine version to use for this global database cluster. Constraints: - Can't be specified if ``SourceDBClusterIdentifier`` is specified. In this case, Amazon Aurora uses the engine version of the source DB cluster.
|
|
16931
16979
|
:param global_cluster_identifier: The cluster identifier for this global database cluster. This parameter is stored as a lowercase string.
|
|
16932
|
-
:param global_endpoint: The writer endpoint for the new global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.
|
|
16933
16980
|
:param source_db_cluster_identifier: The Amazon Resource Name (ARN) to use as the primary cluster of the global database. If you provide a value for this parameter, don't specify values for the following settings because Amazon Aurora uses the values from the specified source DB cluster: - ``DatabaseName`` - ``Engine`` - ``EngineVersion`` - ``StorageEncrypted``
|
|
16934
16981
|
:param storage_encrypted: Specifies whether to enable storage encryption for the new global database cluster. Constraints: - Can't be specified if ``SourceDBClusterIdentifier`` is specified. In this case, Amazon Aurora uses the setting from the source DB cluster.
|
|
16935
16982
|
:param tags: Metadata assigned to an Amazon RDS resource consisting of a key-value pair. For more information, see `Tagging Amazon RDS resources <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html>`_ in the *Amazon RDS User Guide* or `Tagging Amazon Aurora and Amazon RDS resources <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html>`_ in the *Amazon Aurora User Guide* .
|
|
@@ -16944,7 +16991,6 @@ class CfnGlobalCluster(
|
|
|
16944
16991
|
engine_lifecycle_support=engine_lifecycle_support,
|
|
16945
16992
|
engine_version=engine_version,
|
|
16946
16993
|
global_cluster_identifier=global_cluster_identifier,
|
|
16947
|
-
global_endpoint=global_endpoint,
|
|
16948
16994
|
source_db_cluster_identifier=source_db_cluster_identifier,
|
|
16949
16995
|
storage_encrypted=storage_encrypted,
|
|
16950
16996
|
tags=tags,
|
|
@@ -16982,6 +17028,14 @@ class CfnGlobalCluster(
|
|
|
16982
17028
|
'''The CloudFormation resource type name for this resource class.'''
|
|
16983
17029
|
return typing.cast(builtins.str, jsii.sget(cls, "CFN_RESOURCE_TYPE_NAME"))
|
|
16984
17030
|
|
|
17031
|
+
@builtins.property
|
|
17032
|
+
@jsii.member(jsii_name="attrGlobalEndpoint")
|
|
17033
|
+
def attr_global_endpoint(self) -> _IResolvable_da3f097b:
|
|
17034
|
+
'''
|
|
17035
|
+
:cloudformationAttribute: GlobalEndpoint
|
|
17036
|
+
'''
|
|
17037
|
+
return typing.cast(_IResolvable_da3f097b, jsii.get(self, "attrGlobalEndpoint"))
|
|
17038
|
+
|
|
16985
17039
|
@builtins.property
|
|
16986
17040
|
@jsii.member(jsii_name="cdkTagManager")
|
|
16987
17041
|
def cdk_tag_manager(self) -> _TagManager_0a598cb3:
|
|
@@ -17063,24 +17117,6 @@ class CfnGlobalCluster(
|
|
|
17063
17117
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
17064
17118
|
jsii.set(self, "globalClusterIdentifier", value) # pyright: ignore[reportArgumentType]
|
|
17065
17119
|
|
|
17066
|
-
@builtins.property
|
|
17067
|
-
@jsii.member(jsii_name="globalEndpoint")
|
|
17068
|
-
def global_endpoint(
|
|
17069
|
-
self,
|
|
17070
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnGlobalCluster.GlobalEndpointProperty"]]:
|
|
17071
|
-
'''The writer endpoint for the new global database cluster.'''
|
|
17072
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnGlobalCluster.GlobalEndpointProperty"]], jsii.get(self, "globalEndpoint"))
|
|
17073
|
-
|
|
17074
|
-
@global_endpoint.setter
|
|
17075
|
-
def global_endpoint(
|
|
17076
|
-
self,
|
|
17077
|
-
value: typing.Optional[typing.Union[_IResolvable_da3f097b, "CfnGlobalCluster.GlobalEndpointProperty"]],
|
|
17078
|
-
) -> None:
|
|
17079
|
-
if __debug__:
|
|
17080
|
-
type_hints = typing.get_type_hints(_typecheckingstub__7b1b1a8e034b0a4e155f1c4e96d4c9dd770043cd6a95e96f303770a5dff27e85)
|
|
17081
|
-
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
17082
|
-
jsii.set(self, "globalEndpoint", value) # pyright: ignore[reportArgumentType]
|
|
17083
|
-
|
|
17084
17120
|
@builtins.property
|
|
17085
17121
|
@jsii.member(jsii_name="sourceDbClusterIdentifier")
|
|
17086
17122
|
def source_db_cluster_identifier(self) -> typing.Optional[builtins.str]:
|
|
@@ -17193,7 +17229,6 @@ class CfnGlobalCluster(
|
|
|
17193
17229
|
"engine_lifecycle_support": "engineLifecycleSupport",
|
|
17194
17230
|
"engine_version": "engineVersion",
|
|
17195
17231
|
"global_cluster_identifier": "globalClusterIdentifier",
|
|
17196
|
-
"global_endpoint": "globalEndpoint",
|
|
17197
17232
|
"source_db_cluster_identifier": "sourceDbClusterIdentifier",
|
|
17198
17233
|
"storage_encrypted": "storageEncrypted",
|
|
17199
17234
|
"tags": "tags",
|
|
@@ -17208,7 +17243,6 @@ class CfnGlobalClusterProps:
|
|
|
17208
17243
|
engine_lifecycle_support: typing.Optional[builtins.str] = None,
|
|
17209
17244
|
engine_version: typing.Optional[builtins.str] = None,
|
|
17210
17245
|
global_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
17211
|
-
global_endpoint: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnGlobalCluster.GlobalEndpointProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
17212
17246
|
source_db_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
17213
17247
|
storage_encrypted: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
17214
17248
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -17220,7 +17254,6 @@ class CfnGlobalClusterProps:
|
|
|
17220
17254
|
:param engine_lifecycle_support: The life cycle type for this global database cluster. .. epigraph:: By default, this value is set to ``open-source-rds-extended-support`` , which enrolls your global cluster into Amazon RDS Extended Support. At the end of standard support, you can avoid charges for Extended Support by setting the value to ``open-source-rds-extended-support-disabled`` . In this case, creating the global cluster will fail if the DB major version is past its end of standard support date. This setting only applies to Aurora PostgreSQL-based global databases. You can use this setting to enroll your global cluster into Amazon RDS Extended Support. With RDS Extended Support, you can run the selected major engine version on your global cluster past the end of standard support for that engine version. For more information, see `Using Amazon RDS Extended Support <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html>`_ in the *Amazon Aurora User Guide* . Valid Values: ``open-source-rds-extended-support | open-source-rds-extended-support-disabled`` Default: ``open-source-rds-extended-support``
|
|
17221
17255
|
:param engine_version: The engine version to use for this global database cluster. Constraints: - Can't be specified if ``SourceDBClusterIdentifier`` is specified. In this case, Amazon Aurora uses the engine version of the source DB cluster.
|
|
17222
17256
|
:param global_cluster_identifier: The cluster identifier for this global database cluster. This parameter is stored as a lowercase string.
|
|
17223
|
-
:param global_endpoint: The writer endpoint for the new global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.
|
|
17224
17257
|
:param source_db_cluster_identifier: The Amazon Resource Name (ARN) to use as the primary cluster of the global database. If you provide a value for this parameter, don't specify values for the following settings because Amazon Aurora uses the values from the specified source DB cluster: - ``DatabaseName`` - ``Engine`` - ``EngineVersion`` - ``StorageEncrypted``
|
|
17225
17258
|
:param storage_encrypted: Specifies whether to enable storage encryption for the new global database cluster. Constraints: - Can't be specified if ``SourceDBClusterIdentifier`` is specified. In this case, Amazon Aurora uses the setting from the source DB cluster.
|
|
17226
17259
|
:param tags: Metadata assigned to an Amazon RDS resource consisting of a key-value pair. For more information, see `Tagging Amazon RDS resources <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html>`_ in the *Amazon RDS User Guide* or `Tagging Amazon Aurora and Amazon RDS resources <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html>`_ in the *Amazon Aurora User Guide* .
|
|
@@ -17240,9 +17273,6 @@ class CfnGlobalClusterProps:
|
|
|
17240
17273
|
engine_lifecycle_support="engineLifecycleSupport",
|
|
17241
17274
|
engine_version="engineVersion",
|
|
17242
17275
|
global_cluster_identifier="globalClusterIdentifier",
|
|
17243
|
-
global_endpoint=rds.CfnGlobalCluster.GlobalEndpointProperty(
|
|
17244
|
-
address="address"
|
|
17245
|
-
),
|
|
17246
17276
|
source_db_cluster_identifier="sourceDbClusterIdentifier",
|
|
17247
17277
|
storage_encrypted=False,
|
|
17248
17278
|
tags=[CfnTag(
|
|
@@ -17258,7 +17288,6 @@ class CfnGlobalClusterProps:
|
|
|
17258
17288
|
check_type(argname="argument engine_lifecycle_support", value=engine_lifecycle_support, expected_type=type_hints["engine_lifecycle_support"])
|
|
17259
17289
|
check_type(argname="argument engine_version", value=engine_version, expected_type=type_hints["engine_version"])
|
|
17260
17290
|
check_type(argname="argument global_cluster_identifier", value=global_cluster_identifier, expected_type=type_hints["global_cluster_identifier"])
|
|
17261
|
-
check_type(argname="argument global_endpoint", value=global_endpoint, expected_type=type_hints["global_endpoint"])
|
|
17262
17291
|
check_type(argname="argument source_db_cluster_identifier", value=source_db_cluster_identifier, expected_type=type_hints["source_db_cluster_identifier"])
|
|
17263
17292
|
check_type(argname="argument storage_encrypted", value=storage_encrypted, expected_type=type_hints["storage_encrypted"])
|
|
17264
17293
|
check_type(argname="argument tags", value=tags, expected_type=type_hints["tags"])
|
|
@@ -17273,8 +17302,6 @@ class CfnGlobalClusterProps:
|
|
|
17273
17302
|
self._values["engine_version"] = engine_version
|
|
17274
17303
|
if global_cluster_identifier is not None:
|
|
17275
17304
|
self._values["global_cluster_identifier"] = global_cluster_identifier
|
|
17276
|
-
if global_endpoint is not None:
|
|
17277
|
-
self._values["global_endpoint"] = global_endpoint
|
|
17278
17305
|
if source_db_cluster_identifier is not None:
|
|
17279
17306
|
self._values["source_db_cluster_identifier"] = source_db_cluster_identifier
|
|
17280
17307
|
if storage_encrypted is not None:
|
|
@@ -17355,19 +17382,6 @@ class CfnGlobalClusterProps:
|
|
|
17355
17382
|
result = self._values.get("global_cluster_identifier")
|
|
17356
17383
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
17357
17384
|
|
|
17358
|
-
@builtins.property
|
|
17359
|
-
def global_endpoint(
|
|
17360
|
-
self,
|
|
17361
|
-
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, CfnGlobalCluster.GlobalEndpointProperty]]:
|
|
17362
|
-
'''The writer endpoint for the new global database cluster.
|
|
17363
|
-
|
|
17364
|
-
This endpoint always points to the writer DB instance in the current primary cluster.
|
|
17365
|
-
|
|
17366
|
-
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#cfn-rds-globalcluster-globalendpoint
|
|
17367
|
-
'''
|
|
17368
|
-
result = self._values.get("global_endpoint")
|
|
17369
|
-
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, CfnGlobalCluster.GlobalEndpointProperty]], result)
|
|
17370
|
-
|
|
17371
17385
|
@builtins.property
|
|
17372
17386
|
def source_db_cluster_identifier(self) -> typing.Optional[builtins.str]:
|
|
17373
17387
|
'''The Amazon Resource Name (ARN) to use as the primary cluster of the global database.
|
|
@@ -35849,6 +35863,12 @@ class PostgresEngineVersion(
|
|
|
35849
35863
|
'''Version "16.6".'''
|
|
35850
35864
|
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_6"))
|
|
35851
35865
|
|
|
35866
|
+
@jsii.python.classproperty
|
|
35867
|
+
@jsii.member(jsii_name="VER_16_7")
|
|
35868
|
+
def VER_16_7(cls) -> "PostgresEngineVersion":
|
|
35869
|
+
'''Version "16.7".'''
|
|
35870
|
+
return typing.cast("PostgresEngineVersion", jsii.sget(cls, "VER_16_7"))
|
|
35871
|
+
|
|
35852
35872
|
@jsii.python.classproperty
|
|
35853
35873
|
@jsii.member(jsii_name="VER_17")
|
|
35854
35874
|
def VER_17(cls) -> "PostgresEngineVersion":
|
|
@@ -47599,6 +47619,7 @@ def _typecheckingstub__255b0779ca741853674876540bf77279f6293bea05de2cd18724d2b92
|
|
|
47599
47619
|
*,
|
|
47600
47620
|
allocated_storage: typing.Optional[builtins.str] = None,
|
|
47601
47621
|
allow_major_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
47622
|
+
apply_immediately: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
47602
47623
|
associated_roles: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDBInstance.DBInstanceRoleProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
47603
47624
|
automatic_backup_replication_kms_key_id: typing.Optional[builtins.str] = None,
|
|
47604
47625
|
automatic_backup_replication_region: typing.Optional[builtins.str] = None,
|
|
@@ -47704,6 +47725,12 @@ def _typecheckingstub__57716fbcac28344145554895630d9e7d3ed16ff833d836025eba0e855
|
|
|
47704
47725
|
"""Type checking stubs"""
|
|
47705
47726
|
pass
|
|
47706
47727
|
|
|
47728
|
+
def _typecheckingstub__541ae79271b3863f62364d17706d85a7c492cd2e7587446eabdb62da45fc95fe(
|
|
47729
|
+
value: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]],
|
|
47730
|
+
) -> None:
|
|
47731
|
+
"""Type checking stubs"""
|
|
47732
|
+
pass
|
|
47733
|
+
|
|
47707
47734
|
def _typecheckingstub__4ce8e79d061f4d460ac08196091e00285779b468080063faf9f5f8f7466a94f4(
|
|
47708
47735
|
value: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDBInstance.DBInstanceRoleProperty]]]],
|
|
47709
47736
|
) -> None:
|
|
@@ -48211,6 +48238,7 @@ def _typecheckingstub__3bddb1be0bd1f1699e3a084c5859d94d8879ff15011f2f2eaac29ec16
|
|
|
48211
48238
|
*,
|
|
48212
48239
|
allocated_storage: typing.Optional[builtins.str] = None,
|
|
48213
48240
|
allow_major_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
48241
|
+
apply_immediately: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
48214
48242
|
associated_roles: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Sequence[typing.Union[_IResolvable_da3f097b, typing.Union[CfnDBInstance.DBInstanceRoleProperty, typing.Dict[builtins.str, typing.Any]]]]]] = None,
|
|
48215
48243
|
automatic_backup_replication_kms_key_id: typing.Optional[builtins.str] = None,
|
|
48216
48244
|
automatic_backup_replication_region: typing.Optional[builtins.str] = None,
|
|
@@ -49007,7 +49035,6 @@ def _typecheckingstub__1611fa62b935d4f304c9fd8befd7c639fa3cc4898c7c6d9f86feb2d66
|
|
|
49007
49035
|
engine_lifecycle_support: typing.Optional[builtins.str] = None,
|
|
49008
49036
|
engine_version: typing.Optional[builtins.str] = None,
|
|
49009
49037
|
global_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
49010
|
-
global_endpoint: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnGlobalCluster.GlobalEndpointProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
49011
49038
|
source_db_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
49012
49039
|
storage_encrypted: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
49013
49040
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
@@ -49057,12 +49084,6 @@ def _typecheckingstub__8c0878c8feb5b0667b16ebe0d996cc33dadb0920b96e5594e9cf1b8cc
|
|
|
49057
49084
|
"""Type checking stubs"""
|
|
49058
49085
|
pass
|
|
49059
49086
|
|
|
49060
|
-
def _typecheckingstub__7b1b1a8e034b0a4e155f1c4e96d4c9dd770043cd6a95e96f303770a5dff27e85(
|
|
49061
|
-
value: typing.Optional[typing.Union[_IResolvable_da3f097b, CfnGlobalCluster.GlobalEndpointProperty]],
|
|
49062
|
-
) -> None:
|
|
49063
|
-
"""Type checking stubs"""
|
|
49064
|
-
pass
|
|
49065
|
-
|
|
49066
49087
|
def _typecheckingstub__2b8b99331248625e609d8c61fdd2aeead968468cd83f1da2306ce25de200e221(
|
|
49067
49088
|
value: typing.Optional[builtins.str],
|
|
49068
49089
|
) -> None:
|
|
@@ -49095,7 +49116,6 @@ def _typecheckingstub__ef2e57f0cb9427badb90bc7e1248f0f26bc8de21a104bb924da973366
|
|
|
49095
49116
|
engine_lifecycle_support: typing.Optional[builtins.str] = None,
|
|
49096
49117
|
engine_version: typing.Optional[builtins.str] = None,
|
|
49097
49118
|
global_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
49098
|
-
global_endpoint: typing.Optional[typing.Union[_IResolvable_da3f097b, typing.Union[CfnGlobalCluster.GlobalEndpointProperty, typing.Dict[builtins.str, typing.Any]]]] = None,
|
|
49099
49119
|
source_db_cluster_identifier: typing.Optional[builtins.str] = None,
|
|
49100
49120
|
storage_encrypted: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
49101
49121
|
tags: typing.Optional[typing.Sequence[typing.Union[_CfnTag_f6864754, typing.Dict[builtins.str, typing.Any]]]] = None,
|