aws-cdk-lib 2.139.1__py3-none-any.whl → 2.141.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 +8 -0
- aws_cdk/_jsii/__init__.py +1 -1
- aws_cdk/_jsii/{aws-cdk-lib@2.139.1.jsii.tgz → aws-cdk-lib@2.141.0.jsii.tgz} +0 -0
- aws_cdk/aws_acmpca/__init__.py +70 -56
- aws_cdk/aws_apigateway/__init__.py +126 -53
- aws_cdk/aws_applicationautoscaling/__init__.py +1 -4
- aws_cdk/aws_arczonalshift/__init__.py +49 -44
- aws_cdk/aws_bedrock/__init__.py +2829 -147
- aws_cdk/aws_cloudfront/__init__.py +51 -9
- aws_cdk/aws_cloudtrail/__init__.py +13 -4
- aws_cdk/aws_codecommit/__init__.py +72 -46
- aws_cdk/aws_connectcampaigns/__init__.py +34 -4
- aws_cdk/aws_datasync/__init__.py +96 -75
- aws_cdk/aws_dms/__init__.py +0 -269
- aws_cdk/aws_dynamodb/__init__.py +410 -0
- aws_cdk/aws_ec2/__init__.py +239 -84
- aws_cdk/aws_ecr/__init__.py +32 -7
- aws_cdk/aws_ecs/__init__.py +2 -4
- aws_cdk/aws_efs/__init__.py +16 -2
- aws_cdk/aws_eks/__init__.py +57 -0
- aws_cdk/aws_entityresolution/__init__.py +6 -2
- aws_cdk/aws_events/__init__.py +115 -0
- aws_cdk/aws_events_targets/__init__.py +15 -0
- aws_cdk/aws_fis/__init__.py +2 -1
- aws_cdk/aws_fms/__init__.py +7 -7
- aws_cdk/aws_gamelift/__init__.py +1984 -107
- aws_cdk/aws_globalaccelerator/__init__.py +20 -16
- aws_cdk/aws_iam/__init__.py +2 -2
- aws_cdk/aws_ivs/__init__.py +1 -3
- aws_cdk/aws_kinesis/__init__.py +21 -0
- aws_cdk/aws_kinesisvideo/__init__.py +6 -4
- aws_cdk/aws_kms/__init__.py +33 -6
- aws_cdk/aws_lambda/__init__.py +0 -9
- aws_cdk/aws_location/__init__.py +8 -4
- aws_cdk/aws_medialive/__init__.py +444 -3
- aws_cdk/aws_oam/__init__.py +45 -11
- aws_cdk/aws_omics/__init__.py +4 -4
- aws_cdk/aws_paymentcryptography/__init__.py +1155 -0
- aws_cdk/aws_personalize/__init__.py +8 -2
- aws_cdk/aws_pinpoint/__init__.py +7 -5
- aws_cdk/aws_qbusiness/__init__.py +5583 -0
- aws_cdk/aws_quicksight/__init__.py +10063 -1450
- aws_cdk/aws_rds/__init__.py +77 -5
- aws_cdk/aws_redshiftserverless/__init__.py +13 -9
- aws_cdk/aws_route53/__init__.py +350 -0
- aws_cdk/aws_route53profiles/__init__.py +1048 -0
- aws_cdk/aws_s3/__init__.py +1 -1
- aws_cdk/aws_sagemaker/__init__.py +30 -30
- aws_cdk/aws_ses/__init__.py +9 -9
- aws_cdk/aws_transfer/__init__.py +102 -37
- aws_cdk/aws_voiceid/__init__.py +2 -2
- aws_cdk/aws_workspacesweb/__init__.py +92 -6
- aws_cdk/custom_resources/__init__.py +23 -2
- aws_cdk/cx_api/__init__.py +16 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/METADATA +2 -2
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/RECORD +60 -57
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/LICENSE +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/NOTICE +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/WHEEL +0 -0
- {aws_cdk_lib-2.139.1.dist-info → aws_cdk_lib-2.141.0.dist-info}/top_level.txt +0 -0
aws_cdk/aws_rds/__init__.py
CHANGED
|
@@ -1292,6 +1292,7 @@ parameter_group = rds.ParameterGroup(self, "ParameterGroup",
|
|
|
1292
1292
|
engine=rds.DatabaseInstanceEngine.sql_server_ee(
|
|
1293
1293
|
version=rds.SqlServerEngineVersion.VER_11
|
|
1294
1294
|
),
|
|
1295
|
+
name="my-parameter-group",
|
|
1295
1296
|
parameters={
|
|
1296
1297
|
"locks": "100"
|
|
1297
1298
|
}
|
|
@@ -4543,7 +4544,7 @@ class CfnDBCluster(
|
|
|
4543
4544
|
:param snapshot_identifier: The identifier for the DB snapshot or DB cluster snapshot to restore from. You can use either the name or the Amazon Resource Name (ARN) to specify a DB cluster snapshot. However, you can use only the ARN to specify a DB snapshot. After you restore a DB cluster with a ``SnapshotIdentifier`` property, you must specify the same ``SnapshotIdentifier`` property for any future updates to the DB cluster. When you specify this property for an update, the DB cluster is not restored from the snapshot again, and the data in the database is not changed. However, if you don't specify the ``SnapshotIdentifier`` property, an empty DB cluster is created, and the original DB cluster is deleted. If you specify a property that is different from the previous snapshot restore property, a new DB cluster is restored from the specified ``SnapshotIdentifier`` property, and the original DB cluster is deleted. If you specify the ``SnapshotIdentifier`` property to restore a DB cluster (as opposed to specifying it for DB cluster updates), then don't specify the following properties: - ``GlobalClusterIdentifier`` - ``MasterUsername`` - ``MasterUserPassword`` - ``ReplicationSourceIdentifier`` - ``RestoreType`` - ``SourceDBClusterIdentifier`` - ``SourceRegion`` - ``StorageEncrypted`` (for an encrypted snapshot) - ``UseLatestRestorableTime`` Constraints: - Must match the identifier of an existing Snapshot. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
4544
4545
|
:param source_db_cluster_identifier: When restoring a DB cluster to a point in time, the identifier of the source DB cluster from which to restore. Constraints: - Must match the identifier of an existing DBCluster. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
4545
4546
|
:param source_region: The AWS Region which contains the source DB cluster when replicating a DB cluster. For example, ``us-east-1`` . Valid for: Aurora DB clusters only
|
|
4546
|
-
:param storage_encrypted: Indicates whether the DB cluster is encrypted. If you specify the ``KmsKeyId`` property, then you must enable encryption. If you specify the ``SourceDBClusterIdentifier`` property, don't specify this property. The value is inherited from the source DB cluster, and if the DB cluster is encrypted, the specified ``KmsKeyId`` property is used. If you specify the ``SnapshotIdentifier`` and the specified snapshot is encrypted, don't specify this property. The value is inherited from the snapshot, and the specified ``KmsKeyId`` property is used. If you specify the ``SnapshotIdentifier`` and the specified snapshot isn't encrypted, you can use this property to specify that the restored DB cluster is encrypted. Specify the ``KmsKeyId`` property for the KMS key to use for encryption. If you don't want the restored DB cluster to be encrypted, then don't set this property or set it to ``false`` . Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
4547
|
+
:param storage_encrypted: Indicates whether the DB cluster is encrypted. If you specify the ``KmsKeyId`` property, then you must enable encryption. If you specify the ``SourceDBClusterIdentifier`` property, don't specify this property. The value is inherited from the source DB cluster, and if the DB cluster is encrypted, the specified ``KmsKeyId`` property is used. If you specify the ``SnapshotIdentifier`` and the specified snapshot is encrypted, don't specify this property. The value is inherited from the snapshot, and the specified ``KmsKeyId`` property is used. If you specify the ``SnapshotIdentifier`` and the specified snapshot isn't encrypted, you can use this property to specify that the restored DB cluster is encrypted. Specify the ``KmsKeyId`` property for the KMS key to use for encryption. If you don't want the restored DB cluster to be encrypted, then don't set this property or set it to ``false`` . .. epigraph:: If you specify both the ``StorageEncrypted`` and ``SnapshotIdentifier`` properties without specifying the ``KmsKeyId`` property, then the restored DB cluster inherits the encryption settings from the DB snapshot that provide. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
4547
4548
|
:param storage_type: The storage type to associate with the DB cluster. For information on storage types for Aurora DB clusters, see `Storage configurations for Amazon Aurora DB clusters <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Overview.StorageReliability.html#aurora-storage-type>`_ . For information on storage types for Multi-AZ DB clusters, see `Settings for creating Multi-AZ DB clusters <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/create-multi-az-db-cluster.html#create-multi-az-db-cluster-settings>`_ . This setting is required to create a Multi-AZ DB cluster. When specified for a Multi-AZ DB cluster, a value for the ``Iops`` parameter is required. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: - Aurora DB clusters - ``aurora | aurora-iopt1`` - Multi-AZ DB clusters - ``io1 | io2 | gp3`` Default: - Aurora DB clusters - ``aurora`` - Multi-AZ DB clusters - ``io1`` .. epigraph:: When you create an Aurora DB cluster with the storage type set to ``aurora-iopt1`` , the storage type is returned in the response. The storage type isn't returned when you set it to ``aurora`` .
|
|
4548
4549
|
:param tags: An optional array of key-value pairs to apply to this DB cluster. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
4549
4550
|
:param use_latest_restorable_time: A value that indicates whether to restore the DB cluster to the latest restorable backup time. By default, the DB cluster is not restored to the latest restorable backup time. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
@@ -6611,7 +6612,7 @@ class CfnDBClusterProps:
|
|
|
6611
6612
|
:param snapshot_identifier: The identifier for the DB snapshot or DB cluster snapshot to restore from. You can use either the name or the Amazon Resource Name (ARN) to specify a DB cluster snapshot. However, you can use only the ARN to specify a DB snapshot. After you restore a DB cluster with a ``SnapshotIdentifier`` property, you must specify the same ``SnapshotIdentifier`` property for any future updates to the DB cluster. When you specify this property for an update, the DB cluster is not restored from the snapshot again, and the data in the database is not changed. However, if you don't specify the ``SnapshotIdentifier`` property, an empty DB cluster is created, and the original DB cluster is deleted. If you specify a property that is different from the previous snapshot restore property, a new DB cluster is restored from the specified ``SnapshotIdentifier`` property, and the original DB cluster is deleted. If you specify the ``SnapshotIdentifier`` property to restore a DB cluster (as opposed to specifying it for DB cluster updates), then don't specify the following properties: - ``GlobalClusterIdentifier`` - ``MasterUsername`` - ``MasterUserPassword`` - ``ReplicationSourceIdentifier`` - ``RestoreType`` - ``SourceDBClusterIdentifier`` - ``SourceRegion`` - ``StorageEncrypted`` (for an encrypted snapshot) - ``UseLatestRestorableTime`` Constraints: - Must match the identifier of an existing Snapshot. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
6612
6613
|
:param source_db_cluster_identifier: When restoring a DB cluster to a point in time, the identifier of the source DB cluster from which to restore. Constraints: - Must match the identifier of an existing DBCluster. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
6613
6614
|
:param source_region: The AWS Region which contains the source DB cluster when replicating a DB cluster. For example, ``us-east-1`` . Valid for: Aurora DB clusters only
|
|
6614
|
-
:param storage_encrypted: Indicates whether the DB cluster is encrypted. If you specify the ``KmsKeyId`` property, then you must enable encryption. If you specify the ``SourceDBClusterIdentifier`` property, don't specify this property. The value is inherited from the source DB cluster, and if the DB cluster is encrypted, the specified ``KmsKeyId`` property is used. If you specify the ``SnapshotIdentifier`` and the specified snapshot is encrypted, don't specify this property. The value is inherited from the snapshot, and the specified ``KmsKeyId`` property is used. If you specify the ``SnapshotIdentifier`` and the specified snapshot isn't encrypted, you can use this property to specify that the restored DB cluster is encrypted. Specify the ``KmsKeyId`` property for the KMS key to use for encryption. If you don't want the restored DB cluster to be encrypted, then don't set this property or set it to ``false`` . Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
6615
|
+
:param storage_encrypted: Indicates whether the DB cluster is encrypted. If you specify the ``KmsKeyId`` property, then you must enable encryption. If you specify the ``SourceDBClusterIdentifier`` property, don't specify this property. The value is inherited from the source DB cluster, and if the DB cluster is encrypted, the specified ``KmsKeyId`` property is used. If you specify the ``SnapshotIdentifier`` and the specified snapshot is encrypted, don't specify this property. The value is inherited from the snapshot, and the specified ``KmsKeyId`` property is used. If you specify the ``SnapshotIdentifier`` and the specified snapshot isn't encrypted, you can use this property to specify that the restored DB cluster is encrypted. Specify the ``KmsKeyId`` property for the KMS key to use for encryption. If you don't want the restored DB cluster to be encrypted, then don't set this property or set it to ``false`` . .. epigraph:: If you specify both the ``StorageEncrypted`` and ``SnapshotIdentifier`` properties without specifying the ``KmsKeyId`` property, then the restored DB cluster inherits the encryption settings from the DB snapshot that provide. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
6615
6616
|
:param storage_type: The storage type to associate with the DB cluster. For information on storage types for Aurora DB clusters, see `Storage configurations for Amazon Aurora DB clusters <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Overview.StorageReliability.html#aurora-storage-type>`_ . For information on storage types for Multi-AZ DB clusters, see `Settings for creating Multi-AZ DB clusters <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/create-multi-az-db-cluster.html#create-multi-az-db-cluster-settings>`_ . This setting is required to create a Multi-AZ DB cluster. When specified for a Multi-AZ DB cluster, a value for the ``Iops`` parameter is required. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters Valid Values: - Aurora DB clusters - ``aurora | aurora-iopt1`` - Multi-AZ DB clusters - ``io1 | io2 | gp3`` Default: - Aurora DB clusters - ``aurora`` - Multi-AZ DB clusters - ``io1`` .. epigraph:: When you create an Aurora DB cluster with the storage type set to ``aurora-iopt1`` , the storage type is returned in the response. The storage type isn't returned when you set it to ``aurora`` .
|
|
6616
6617
|
:param tags: An optional array of key-value pairs to apply to this DB cluster. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
6617
6618
|
:param use_latest_restorable_time: A value that indicates whether to restore the DB cluster to the latest restorable backup time. By default, the DB cluster is not restored to the latest restorable backup time. Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
@@ -7766,6 +7767,9 @@ class CfnDBClusterProps:
|
|
|
7766
7767
|
If you specify the ``SnapshotIdentifier`` and the specified snapshot is encrypted, don't specify this property. The value is inherited from the snapshot, and the specified ``KmsKeyId`` property is used.
|
|
7767
7768
|
|
|
7768
7769
|
If you specify the ``SnapshotIdentifier`` and the specified snapshot isn't encrypted, you can use this property to specify that the restored DB cluster is encrypted. Specify the ``KmsKeyId`` property for the KMS key to use for encryption. If you don't want the restored DB cluster to be encrypted, then don't set this property or set it to ``false`` .
|
|
7770
|
+
.. epigraph::
|
|
7771
|
+
|
|
7772
|
+
If you specify both the ``StorageEncrypted`` and ``SnapshotIdentifier`` properties without specifying the ``KmsKeyId`` property, then the restored DB cluster inherits the encryption settings from the DB snapshot that provide.
|
|
7769
7773
|
|
|
7770
7774
|
Valid for: Aurora DB clusters and Multi-AZ DB clusters
|
|
7771
7775
|
|
|
@@ -7918,6 +7922,7 @@ class CfnDBInstance(
|
|
|
7918
7922
|
feature_name="featureName",
|
|
7919
7923
|
role_arn="roleArn"
|
|
7920
7924
|
)],
|
|
7925
|
+
automatic_backup_replication_kms_key_id="automaticBackupReplicationKmsKeyId",
|
|
7921
7926
|
automatic_backup_replication_region="automaticBackupReplicationRegion",
|
|
7922
7927
|
auto_minor_version_upgrade=False,
|
|
7923
7928
|
availability_zone="availabilityZone",
|
|
@@ -8018,6 +8023,7 @@ class CfnDBInstance(
|
|
|
8018
8023
|
allocated_storage: typing.Optional[builtins.str] = None,
|
|
8019
8024
|
allow_major_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
8020
8025
|
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,
|
|
8026
|
+
automatic_backup_replication_kms_key_id: typing.Optional[builtins.str] = None,
|
|
8021
8027
|
automatic_backup_replication_region: typing.Optional[builtins.str] = None,
|
|
8022
8028
|
auto_minor_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
8023
8029
|
availability_zone: typing.Optional[builtins.str] = None,
|
|
@@ -8098,6 +8104,7 @@ class CfnDBInstance(
|
|
|
8098
8104
|
: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.
|
|
8099
8105
|
: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.
|
|
8100
8106
|
: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.
|
|
8107
|
+
: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`` .
|
|
8101
8108
|
:param automatic_backup_replication_region: The destination region for the backup replication of the DB instance. For more info, see `Replicating automated backups to another AWS Region <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html>`_ in the *Amazon RDS User Guide* .
|
|
8102
8109
|
:param auto_minor_version_upgrade: A value that indicates whether minor engine upgrades are applied automatically to the DB instance during the maintenance window. By default, minor engine upgrades are applied automatically.
|
|
8103
8110
|
:param availability_zone: The Availability Zone (AZ) where the database will be created. For information on AWS Regions and Availability Zones, see `Regions and Availability Zones <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html>`_ . For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: A random, system-chosen Availability Zone in the endpoint's AWS Region . Constraints: - The ``AvailabilityZone`` parameter can't be specified if the DB instance is a Multi-AZ deployment. - The specified Availability Zone must be in the same AWS Region as the current endpoint. Example: ``us-east-1d``
|
|
@@ -8167,7 +8174,7 @@ class CfnDBInstance(
|
|
|
8167
8174
|
:param tags: An optional array of key-value pairs to apply to this DB instance.
|
|
8168
8175
|
:param tde_credential_arn:
|
|
8169
8176
|
:param tde_credential_password:
|
|
8170
|
-
:param timezone: The time zone of the DB instance. The time zone parameter is currently supported only by `
|
|
8177
|
+
:param timezone: The time zone of the DB instance. The time zone parameter is currently supported only by `RDS for Db2 <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-time-zone>`_ and `RDS for SQL Server <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone>`_ .
|
|
8171
8178
|
:param use_default_processor_features: Specifies whether the DB instance class of the DB instance uses its default processor features. This setting doesn't apply to RDS Custom DB instances.
|
|
8172
8179
|
:param use_latest_restorable_time: Specifies whether the DB instance is restored from the latest backup time. By default, the DB instance isn't restored from the latest backup time. Constraints: - Can't be specified if the ``RestoreTime`` parameter is provided.
|
|
8173
8180
|
:param vpc_security_groups: A list of the VPC security group IDs to assign to the DB instance. The list can include both the physical IDs of existing VPC security groups and references to `AWS::EC2::SecurityGroup <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html>`_ resources created in the template. If you plan to update the resource, don't specify VPC security groups in a shared VPC. If you set ``VPCSecurityGroups`` , you must not set ```DBSecurityGroups`` <https://docs.aws.amazon.com//AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsecuritygroups>`_ , and vice versa. .. epigraph:: You can migrate a DB instance in your stack from an RDS DB security group to a VPC security group, but keep the following in mind: - You can't revert to using an RDS security group after you establish a VPC security group membership. - When you migrate your DB instance to VPC security groups, if your stack update rolls back because the DB instance update fails or because an update fails in another AWS CloudFormation resource, the rollback fails because it can't revert to an RDS security group. - To use the properties that are available when you use a VPC security group, you must recreate the DB instance. If you don't, AWS CloudFormation submits only the property values that are listed in the ```DBSecurityGroups`` <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsecuritygroups>`_ property. To avoid this situation, migrate your DB instance to using VPC security groups only when that is the only change in your stack template. *Amazon Aurora* Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. If specified, the setting must match the DB cluster setting.
|
|
@@ -8180,6 +8187,7 @@ class CfnDBInstance(
|
|
|
8180
8187
|
allocated_storage=allocated_storage,
|
|
8181
8188
|
allow_major_version_upgrade=allow_major_version_upgrade,
|
|
8182
8189
|
associated_roles=associated_roles,
|
|
8190
|
+
automatic_backup_replication_kms_key_id=automatic_backup_replication_kms_key_id,
|
|
8183
8191
|
automatic_backup_replication_region=automatic_backup_replication_region,
|
|
8184
8192
|
auto_minor_version_upgrade=auto_minor_version_upgrade,
|
|
8185
8193
|
availability_zone=availability_zone,
|
|
@@ -8438,6 +8446,22 @@ class CfnDBInstance(
|
|
|
8438
8446
|
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8439
8447
|
jsii.set(self, "associatedRoles", value)
|
|
8440
8448
|
|
|
8449
|
+
@builtins.property
|
|
8450
|
+
@jsii.member(jsii_name="automaticBackupReplicationKmsKeyId")
|
|
8451
|
+
def automatic_backup_replication_kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
8452
|
+
'''The AWS KMS key identifier for encryption of the replicated automated backups.'''
|
|
8453
|
+
return typing.cast(typing.Optional[builtins.str], jsii.get(self, "automaticBackupReplicationKmsKeyId"))
|
|
8454
|
+
|
|
8455
|
+
@automatic_backup_replication_kms_key_id.setter
|
|
8456
|
+
def automatic_backup_replication_kms_key_id(
|
|
8457
|
+
self,
|
|
8458
|
+
value: typing.Optional[builtins.str],
|
|
8459
|
+
) -> None:
|
|
8460
|
+
if __debug__:
|
|
8461
|
+
type_hints = typing.get_type_hints(_typecheckingstub__7de66731ee5fdd45e40db8d58e3041a46d64fff9265d6aa870ac5ff27419bb86)
|
|
8462
|
+
check_type(argname="argument value", value=value, expected_type=type_hints["value"])
|
|
8463
|
+
jsii.set(self, "automaticBackupReplicationKmsKeyId", value)
|
|
8464
|
+
|
|
8441
8465
|
@builtins.property
|
|
8442
8466
|
@jsii.member(jsii_name="automaticBackupReplicationRegion")
|
|
8443
8467
|
def automatic_backup_replication_region(self) -> typing.Optional[builtins.str]:
|
|
@@ -9923,6 +9947,7 @@ class CfnDBInstance(
|
|
|
9923
9947
|
"allocated_storage": "allocatedStorage",
|
|
9924
9948
|
"allow_major_version_upgrade": "allowMajorVersionUpgrade",
|
|
9925
9949
|
"associated_roles": "associatedRoles",
|
|
9950
|
+
"automatic_backup_replication_kms_key_id": "automaticBackupReplicationKmsKeyId",
|
|
9926
9951
|
"automatic_backup_replication_region": "automaticBackupReplicationRegion",
|
|
9927
9952
|
"auto_minor_version_upgrade": "autoMinorVersionUpgrade",
|
|
9928
9953
|
"availability_zone": "availabilityZone",
|
|
@@ -10005,6 +10030,7 @@ class CfnDBInstanceProps:
|
|
|
10005
10030
|
allocated_storage: typing.Optional[builtins.str] = None,
|
|
10006
10031
|
allow_major_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10007
10032
|
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,
|
|
10033
|
+
automatic_backup_replication_kms_key_id: typing.Optional[builtins.str] = None,
|
|
10008
10034
|
automatic_backup_replication_region: typing.Optional[builtins.str] = None,
|
|
10009
10035
|
auto_minor_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
10010
10036
|
availability_zone: typing.Optional[builtins.str] = None,
|
|
@@ -10084,6 +10110,7 @@ class CfnDBInstanceProps:
|
|
|
10084
10110
|
: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.
|
|
10085
10111
|
: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.
|
|
10086
10112
|
: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.
|
|
10113
|
+
: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`` .
|
|
10087
10114
|
:param automatic_backup_replication_region: The destination region for the backup replication of the DB instance. For more info, see `Replicating automated backups to another AWS Region <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html>`_ in the *Amazon RDS User Guide* .
|
|
10088
10115
|
:param auto_minor_version_upgrade: A value that indicates whether minor engine upgrades are applied automatically to the DB instance during the maintenance window. By default, minor engine upgrades are applied automatically.
|
|
10089
10116
|
:param availability_zone: The Availability Zone (AZ) where the database will be created. For information on AWS Regions and Availability Zones, see `Regions and Availability Zones <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html>`_ . For Amazon Aurora, each Aurora DB cluster hosts copies of its storage in three separate Availability Zones. Specify one of these Availability Zones. Aurora automatically chooses an appropriate Availability Zone if you don't specify one. Default: A random, system-chosen Availability Zone in the endpoint's AWS Region . Constraints: - The ``AvailabilityZone`` parameter can't be specified if the DB instance is a Multi-AZ deployment. - The specified Availability Zone must be in the same AWS Region as the current endpoint. Example: ``us-east-1d``
|
|
@@ -10153,7 +10180,7 @@ class CfnDBInstanceProps:
|
|
|
10153
10180
|
:param tags: An optional array of key-value pairs to apply to this DB instance.
|
|
10154
10181
|
:param tde_credential_arn:
|
|
10155
10182
|
:param tde_credential_password:
|
|
10156
|
-
:param timezone: The time zone of the DB instance. The time zone parameter is currently supported only by `
|
|
10183
|
+
:param timezone: The time zone of the DB instance. The time zone parameter is currently supported only by `RDS for Db2 <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-time-zone>`_ and `RDS for SQL Server <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone>`_ .
|
|
10157
10184
|
:param use_default_processor_features: Specifies whether the DB instance class of the DB instance uses its default processor features. This setting doesn't apply to RDS Custom DB instances.
|
|
10158
10185
|
:param use_latest_restorable_time: Specifies whether the DB instance is restored from the latest backup time. By default, the DB instance isn't restored from the latest backup time. Constraints: - Can't be specified if the ``RestoreTime`` parameter is provided.
|
|
10159
10186
|
:param vpc_security_groups: A list of the VPC security group IDs to assign to the DB instance. The list can include both the physical IDs of existing VPC security groups and references to `AWS::EC2::SecurityGroup <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-security-group.html>`_ resources created in the template. If you plan to update the resource, don't specify VPC security groups in a shared VPC. If you set ``VPCSecurityGroups`` , you must not set ```DBSecurityGroups`` <https://docs.aws.amazon.com//AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsecuritygroups>`_ , and vice versa. .. epigraph:: You can migrate a DB instance in your stack from an RDS DB security group to a VPC security group, but keep the following in mind: - You can't revert to using an RDS security group after you establish a VPC security group membership. - When you migrate your DB instance to VPC security groups, if your stack update rolls back because the DB instance update fails or because an update fails in another AWS CloudFormation resource, the rollback fails because it can't revert to an RDS security group. - To use the properties that are available when you use a VPC security group, you must recreate the DB instance. If you don't, AWS CloudFormation submits only the property values that are listed in the ```DBSecurityGroups`` <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-database-instance.html#cfn-rds-dbinstance-dbsecuritygroups>`_ property. To avoid this situation, migrate your DB instance to using VPC security groups only when that is the only change in your stack template. *Amazon Aurora* Not applicable. The associated list of EC2 VPC security groups is managed by the DB cluster. If specified, the setting must match the DB cluster setting.
|
|
@@ -10174,6 +10201,7 @@ class CfnDBInstanceProps:
|
|
|
10174
10201
|
feature_name="featureName",
|
|
10175
10202
|
role_arn="roleArn"
|
|
10176
10203
|
)],
|
|
10204
|
+
automatic_backup_replication_kms_key_id="automaticBackupReplicationKmsKeyId",
|
|
10177
10205
|
automatic_backup_replication_region="automaticBackupReplicationRegion",
|
|
10178
10206
|
auto_minor_version_upgrade=False,
|
|
10179
10207
|
availability_zone="availabilityZone",
|
|
@@ -10270,6 +10298,7 @@ class CfnDBInstanceProps:
|
|
|
10270
10298
|
check_type(argname="argument allocated_storage", value=allocated_storage, expected_type=type_hints["allocated_storage"])
|
|
10271
10299
|
check_type(argname="argument allow_major_version_upgrade", value=allow_major_version_upgrade, expected_type=type_hints["allow_major_version_upgrade"])
|
|
10272
10300
|
check_type(argname="argument associated_roles", value=associated_roles, expected_type=type_hints["associated_roles"])
|
|
10301
|
+
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"])
|
|
10273
10302
|
check_type(argname="argument automatic_backup_replication_region", value=automatic_backup_replication_region, expected_type=type_hints["automatic_backup_replication_region"])
|
|
10274
10303
|
check_type(argname="argument auto_minor_version_upgrade", value=auto_minor_version_upgrade, expected_type=type_hints["auto_minor_version_upgrade"])
|
|
10275
10304
|
check_type(argname="argument availability_zone", value=availability_zone, expected_type=type_hints["availability_zone"])
|
|
@@ -10350,6 +10379,8 @@ class CfnDBInstanceProps:
|
|
|
10350
10379
|
self._values["allow_major_version_upgrade"] = allow_major_version_upgrade
|
|
10351
10380
|
if associated_roles is not None:
|
|
10352
10381
|
self._values["associated_roles"] = associated_roles
|
|
10382
|
+
if automatic_backup_replication_kms_key_id is not None:
|
|
10383
|
+
self._values["automatic_backup_replication_kms_key_id"] = automatic_backup_replication_kms_key_id
|
|
10353
10384
|
if automatic_backup_replication_region is not None:
|
|
10354
10385
|
self._values["automatic_backup_replication_region"] = automatic_backup_replication_region
|
|
10355
10386
|
if auto_minor_version_upgrade is not None:
|
|
@@ -10597,6 +10628,17 @@ class CfnDBInstanceProps:
|
|
|
10597
10628
|
result = self._values.get("associated_roles")
|
|
10598
10629
|
return typing.cast(typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, CfnDBInstance.DBInstanceRoleProperty]]]], result)
|
|
10599
10630
|
|
|
10631
|
+
@builtins.property
|
|
10632
|
+
def automatic_backup_replication_kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
10633
|
+
'''The AWS KMS key identifier for encryption of the replicated automated backups.
|
|
10634
|
+
|
|
10635
|
+
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`` .
|
|
10636
|
+
|
|
10637
|
+
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-automaticbackupreplicationkmskeyid
|
|
10638
|
+
'''
|
|
10639
|
+
result = self._values.get("automatic_backup_replication_kms_key_id")
|
|
10640
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
10641
|
+
|
|
10600
10642
|
@builtins.property
|
|
10601
10643
|
def automatic_backup_replication_region(self) -> typing.Optional[builtins.str]:
|
|
10602
10644
|
'''The destination region for the backup replication of the DB instance.
|
|
@@ -11933,7 +11975,7 @@ class CfnDBInstanceProps:
|
|
|
11933
11975
|
def timezone(self) -> typing.Optional[builtins.str]:
|
|
11934
11976
|
'''The time zone of the DB instance.
|
|
11935
11977
|
|
|
11936
|
-
The time zone parameter is currently supported only by `
|
|
11978
|
+
The time zone parameter is currently supported only by `RDS for Db2 <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-time-zone>`_ and `RDS for SQL Server <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone>`_ .
|
|
11937
11979
|
|
|
11938
11980
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-timezone
|
|
11939
11981
|
'''
|
|
@@ -31641,6 +31683,7 @@ class ParameterGroup(
|
|
|
31641
31683
|
*,
|
|
31642
31684
|
engine: IEngine,
|
|
31643
31685
|
description: typing.Optional[builtins.str] = None,
|
|
31686
|
+
name: typing.Optional[builtins.str] = None,
|
|
31644
31687
|
parameters: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
31645
31688
|
removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
31646
31689
|
) -> None:
|
|
@@ -31649,6 +31692,7 @@ class ParameterGroup(
|
|
|
31649
31692
|
:param id: -
|
|
31650
31693
|
:param engine: The database engine for this parameter group.
|
|
31651
31694
|
:param description: Description for this parameter group. Default: a CDK generated description
|
|
31695
|
+
:param name: The name of this parameter group. Default: - CloudFormation-generated name
|
|
31652
31696
|
:param parameters: The parameters in this parameter group. Default: - None
|
|
31653
31697
|
:param removal_policy: The CloudFormation policy to apply when the instance is removed from the stack or replaced during an update. Default: - RemovalPolicy.DESTROY
|
|
31654
31698
|
'''
|
|
@@ -31659,6 +31703,7 @@ class ParameterGroup(
|
|
|
31659
31703
|
props = ParameterGroupProps(
|
|
31660
31704
|
engine=engine,
|
|
31661
31705
|
description=description,
|
|
31706
|
+
name=name,
|
|
31662
31707
|
parameters=parameters,
|
|
31663
31708
|
removal_policy=removal_policy,
|
|
31664
31709
|
)
|
|
@@ -31884,6 +31929,7 @@ class ParameterGroupInstanceConfig:
|
|
|
31884
31929
|
name_mapping={
|
|
31885
31930
|
"engine": "engine",
|
|
31886
31931
|
"description": "description",
|
|
31932
|
+
"name": "name",
|
|
31887
31933
|
"parameters": "parameters",
|
|
31888
31934
|
"removal_policy": "removalPolicy",
|
|
31889
31935
|
},
|
|
@@ -31894,6 +31940,7 @@ class ParameterGroupProps:
|
|
|
31894
31940
|
*,
|
|
31895
31941
|
engine: IEngine,
|
|
31896
31942
|
description: typing.Optional[builtins.str] = None,
|
|
31943
|
+
name: typing.Optional[builtins.str] = None,
|
|
31897
31944
|
parameters: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
31898
31945
|
removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
31899
31946
|
) -> None:
|
|
@@ -31901,6 +31948,7 @@ class ParameterGroupProps:
|
|
|
31901
31948
|
|
|
31902
31949
|
:param engine: The database engine for this parameter group.
|
|
31903
31950
|
:param description: Description for this parameter group. Default: a CDK generated description
|
|
31951
|
+
:param name: The name of this parameter group. Default: - CloudFormation-generated name
|
|
31904
31952
|
:param parameters: The parameters in this parameter group. Default: - None
|
|
31905
31953
|
:param removal_policy: The CloudFormation policy to apply when the instance is removed from the stack or replaced during an update. Default: - RemovalPolicy.DESTROY
|
|
31906
31954
|
|
|
@@ -31986,6 +32034,7 @@ class ParameterGroupProps:
|
|
|
31986
32034
|
type_hints = typing.get_type_hints(_typecheckingstub__7e65259e690ac4d6bb43c0be2f64c905b8bd37fdfc8b2aee040374a69c6919c4)
|
|
31987
32035
|
check_type(argname="argument engine", value=engine, expected_type=type_hints["engine"])
|
|
31988
32036
|
check_type(argname="argument description", value=description, expected_type=type_hints["description"])
|
|
32037
|
+
check_type(argname="argument name", value=name, expected_type=type_hints["name"])
|
|
31989
32038
|
check_type(argname="argument parameters", value=parameters, expected_type=type_hints["parameters"])
|
|
31990
32039
|
check_type(argname="argument removal_policy", value=removal_policy, expected_type=type_hints["removal_policy"])
|
|
31991
32040
|
self._values: typing.Dict[builtins.str, typing.Any] = {
|
|
@@ -31993,6 +32042,8 @@ class ParameterGroupProps:
|
|
|
31993
32042
|
}
|
|
31994
32043
|
if description is not None:
|
|
31995
32044
|
self._values["description"] = description
|
|
32045
|
+
if name is not None:
|
|
32046
|
+
self._values["name"] = name
|
|
31996
32047
|
if parameters is not None:
|
|
31997
32048
|
self._values["parameters"] = parameters
|
|
31998
32049
|
if removal_policy is not None:
|
|
@@ -32014,6 +32065,15 @@ class ParameterGroupProps:
|
|
|
32014
32065
|
result = self._values.get("description")
|
|
32015
32066
|
return typing.cast(typing.Optional[builtins.str], result)
|
|
32016
32067
|
|
|
32068
|
+
@builtins.property
|
|
32069
|
+
def name(self) -> typing.Optional[builtins.str]:
|
|
32070
|
+
'''The name of this parameter group.
|
|
32071
|
+
|
|
32072
|
+
:default: - CloudFormation-generated name
|
|
32073
|
+
'''
|
|
32074
|
+
result = self._values.get("name")
|
|
32075
|
+
return typing.cast(typing.Optional[builtins.str], result)
|
|
32076
|
+
|
|
32017
32077
|
@builtins.property
|
|
32018
32078
|
def parameters(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
|
|
32019
32079
|
'''The parameters in this parameter group.
|
|
@@ -36247,6 +36307,7 @@ class SqlServerEeInstanceEngineProps:
|
|
|
36247
36307
|
engine=rds.DatabaseInstanceEngine.sql_server_ee(
|
|
36248
36308
|
version=rds.SqlServerEngineVersion.VER_11
|
|
36249
36309
|
),
|
|
36310
|
+
name="my-parameter-group",
|
|
36250
36311
|
parameters={
|
|
36251
36312
|
"locks": "100"
|
|
36252
36313
|
}
|
|
@@ -36301,6 +36362,7 @@ class SqlServerEngineVersion(
|
|
|
36301
36362
|
engine=rds.DatabaseInstanceEngine.sql_server_ee(
|
|
36302
36363
|
version=rds.SqlServerEngineVersion.VER_11
|
|
36303
36364
|
),
|
|
36365
|
+
name="my-parameter-group",
|
|
36304
36366
|
parameters={
|
|
36305
36367
|
"locks": "100"
|
|
36306
36368
|
}
|
|
@@ -44369,6 +44431,7 @@ def _typecheckingstub__255b0779ca741853674876540bf77279f6293bea05de2cd18724d2b92
|
|
|
44369
44431
|
allocated_storage: typing.Optional[builtins.str] = None,
|
|
44370
44432
|
allow_major_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
44371
44433
|
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,
|
|
44434
|
+
automatic_backup_replication_kms_key_id: typing.Optional[builtins.str] = None,
|
|
44372
44435
|
automatic_backup_replication_region: typing.Optional[builtins.str] = None,
|
|
44373
44436
|
auto_minor_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
44374
44437
|
availability_zone: typing.Optional[builtins.str] = None,
|
|
@@ -44476,6 +44539,12 @@ def _typecheckingstub__4ce8e79d061f4d460ac08196091e00285779b468080063faf9f5f8f74
|
|
|
44476
44539
|
"""Type checking stubs"""
|
|
44477
44540
|
pass
|
|
44478
44541
|
|
|
44542
|
+
def _typecheckingstub__7de66731ee5fdd45e40db8d58e3041a46d64fff9265d6aa870ac5ff27419bb86(
|
|
44543
|
+
value: typing.Optional[builtins.str],
|
|
44544
|
+
) -> None:
|
|
44545
|
+
"""Type checking stubs"""
|
|
44546
|
+
pass
|
|
44547
|
+
|
|
44479
44548
|
def _typecheckingstub__570af392a4da1d3a00accc2e05674065be4ff1306321cb7944dc793fd8d479ad(
|
|
44480
44549
|
value: typing.Optional[builtins.str],
|
|
44481
44550
|
) -> None:
|
|
@@ -44960,6 +45029,7 @@ def _typecheckingstub__3bddb1be0bd1f1699e3a084c5859d94d8879ff15011f2f2eaac29ec16
|
|
|
44960
45029
|
allocated_storage: typing.Optional[builtins.str] = None,
|
|
44961
45030
|
allow_major_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
44962
45031
|
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,
|
|
45032
|
+
automatic_backup_replication_kms_key_id: typing.Optional[builtins.str] = None,
|
|
44963
45033
|
automatic_backup_replication_region: typing.Optional[builtins.str] = None,
|
|
44964
45034
|
auto_minor_version_upgrade: typing.Optional[typing.Union[builtins.bool, _IResolvable_da3f097b]] = None,
|
|
44965
45035
|
availability_zone: typing.Optional[builtins.str] = None,
|
|
@@ -46766,6 +46836,7 @@ def _typecheckingstub__dca000a45931b5c98666d6840c64a03368a633b520e82623c6e257298
|
|
|
46766
46836
|
*,
|
|
46767
46837
|
engine: IEngine,
|
|
46768
46838
|
description: typing.Optional[builtins.str] = None,
|
|
46839
|
+
name: typing.Optional[builtins.str] = None,
|
|
46769
46840
|
parameters: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
46770
46841
|
removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
46771
46842
|
) -> None:
|
|
@@ -46805,6 +46876,7 @@ def _typecheckingstub__7e65259e690ac4d6bb43c0be2f64c905b8bd37fdfc8b2aee040374a69
|
|
|
46805
46876
|
*,
|
|
46806
46877
|
engine: IEngine,
|
|
46807
46878
|
description: typing.Optional[builtins.str] = None,
|
|
46879
|
+
name: typing.Optional[builtins.str] = None,
|
|
46808
46880
|
parameters: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
|
|
46809
46881
|
removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
|
|
46810
46882
|
) -> None:
|
|
@@ -821,10 +821,11 @@ class CfnNamespace(
|
|
|
821
821
|
destination_kms_key_id: typing.Optional[builtins.str] = None,
|
|
822
822
|
snapshot_retention_period: typing.Optional[jsii.Number] = None,
|
|
823
823
|
) -> None:
|
|
824
|
-
'''
|
|
825
|
-
|
|
826
|
-
:param
|
|
827
|
-
:param
|
|
824
|
+
'''The object that you configure to copy snapshots from one namespace to a namespace in another AWS Region .
|
|
825
|
+
|
|
826
|
+
:param destination_region: The destination AWS Region to copy snapshots to.
|
|
827
|
+
:param destination_kms_key_id: The ID of the KMS key to use to encrypt your snapshots in the destination AWS Region .
|
|
828
|
+
:param snapshot_retention_period: The retention period of snapshots that are copied to the destination AWS Region .
|
|
828
829
|
|
|
829
830
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-namespace-snapshotcopyconfiguration.html
|
|
830
831
|
:exampleMetadata: fixture=_generated
|
|
@@ -858,7 +859,8 @@ class CfnNamespace(
|
|
|
858
859
|
|
|
859
860
|
@builtins.property
|
|
860
861
|
def destination_region(self) -> builtins.str:
|
|
861
|
-
'''
|
|
862
|
+
'''The destination AWS Region to copy snapshots to.
|
|
863
|
+
|
|
862
864
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-namespace-snapshotcopyconfiguration.html#cfn-redshiftserverless-namespace-snapshotcopyconfiguration-destinationregion
|
|
863
865
|
'''
|
|
864
866
|
result = self._values.get("destination_region")
|
|
@@ -867,7 +869,8 @@ class CfnNamespace(
|
|
|
867
869
|
|
|
868
870
|
@builtins.property
|
|
869
871
|
def destination_kms_key_id(self) -> typing.Optional[builtins.str]:
|
|
870
|
-
'''
|
|
872
|
+
'''The ID of the KMS key to use to encrypt your snapshots in the destination AWS Region .
|
|
873
|
+
|
|
871
874
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-namespace-snapshotcopyconfiguration.html#cfn-redshiftserverless-namespace-snapshotcopyconfiguration-destinationkmskeyid
|
|
872
875
|
'''
|
|
873
876
|
result = self._values.get("destination_kms_key_id")
|
|
@@ -875,7 +878,8 @@ class CfnNamespace(
|
|
|
875
878
|
|
|
876
879
|
@builtins.property
|
|
877
880
|
def snapshot_retention_period(self) -> typing.Optional[jsii.Number]:
|
|
878
|
-
'''
|
|
881
|
+
'''The retention period of snapshots that are copied to the destination AWS Region .
|
|
882
|
+
|
|
879
883
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-namespace-snapshotcopyconfiguration.html#cfn-redshiftserverless-namespace-snapshotcopyconfiguration-snapshotretentionperiod
|
|
880
884
|
'''
|
|
881
885
|
result = self._values.get("snapshot_retention_period")
|
|
@@ -2094,7 +2098,7 @@ class CfnWorkgroup(
|
|
|
2094
2098
|
'''The collection of computing resources from which an endpoint is created.
|
|
2095
2099
|
|
|
2096
2100
|
:param base_capacity: The base data warehouse capacity of the workgroup in Redshift Processing Units (RPUs).
|
|
2097
|
-
:param config_parameters: An array of parameters to set for advanced control over a database. The options are ``auto_mv`` , ``datestyle`` , ``enable_case_sensitive_identifier`` , ``enable_user_activity_logging`` , ``query_group`` , ``search_path`` , ``require_ssl`` , and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see `Query monitoring metrics for Amazon Redshift Serverless <https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless>`_ .
|
|
2101
|
+
:param config_parameters: An array of parameters to set for advanced control over a database. The options are ``auto_mv`` , ``datestyle`` , ``enable_case_sensitive_identifier`` , ``enable_user_activity_logging`` , ``query_group`` , ``search_path`` , ``require_ssl`` , ``use_fips_ssl`` , and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see `Query monitoring metrics for Amazon Redshift Serverless <https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless>`_ .
|
|
2098
2102
|
:param creation_date: The creation date of the workgroup.
|
|
2099
2103
|
:param endpoint: The endpoint that is created from the workgroup.
|
|
2100
2104
|
:param enhanced_vpc_routing: The value that specifies whether to enable enhanced virtual private cloud (VPC) routing, which forces Amazon Redshift Serverless to route traffic through your VPC.
|
|
@@ -2211,7 +2215,7 @@ class CfnWorkgroup(
|
|
|
2211
2215
|
) -> typing.Optional[typing.Union[_IResolvable_da3f097b, typing.List[typing.Union[_IResolvable_da3f097b, "CfnWorkgroup.ConfigParameterProperty"]]]]:
|
|
2212
2216
|
'''An array of parameters to set for advanced control over a database.
|
|
2213
2217
|
|
|
2214
|
-
The options are ``auto_mv`` , ``datestyle`` , ``enable_case_sensitive_identifier`` , ``enable_user_activity_logging`` , ``query_group`` , ``search_path`` , ``require_ssl`` , and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see `Query monitoring metrics for Amazon Redshift Serverless <https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless>`_ .
|
|
2218
|
+
The options are ``auto_mv`` , ``datestyle`` , ``enable_case_sensitive_identifier`` , ``enable_user_activity_logging`` , ``query_group`` , ``search_path`` , ``require_ssl`` , ``use_fips_ssl`` , and query monitoring metrics that let you define performance boundaries. For more information about query monitoring rules and available metrics, see `Query monitoring metrics for Amazon Redshift Serverless <https://docs.aws.amazon.com/redshift/latest/dg/cm-c-wlm-query-monitoring-rules.html#cm-c-wlm-query-monitoring-metrics-serverless>`_ .
|
|
2215
2219
|
|
|
2216
2220
|
:see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-redshiftserverless-workgroup-workgroup.html#cfn-redshiftserverless-workgroup-workgroup-configparameters
|
|
2217
2221
|
'''
|