aws-cdk-lib 2.140.0__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.

Files changed (33) hide show
  1. aws_cdk/_jsii/__init__.py +1 -1
  2. aws_cdk/_jsii/{aws-cdk-lib@2.140.0.jsii.tgz → aws-cdk-lib@2.141.0.jsii.tgz} +0 -0
  3. aws_cdk/aws_bedrock/__init__.py +51 -41
  4. aws_cdk/aws_cloudtrail/__init__.py +13 -4
  5. aws_cdk/aws_connectcampaigns/__init__.py +2 -2
  6. aws_cdk/aws_datasync/__init__.py +51 -56
  7. aws_cdk/aws_dynamodb/__init__.py +410 -0
  8. aws_cdk/aws_ec2/__init__.py +90 -40
  9. aws_cdk/aws_ecr/__init__.py +32 -7
  10. aws_cdk/aws_entityresolution/__init__.py +6 -2
  11. aws_cdk/aws_fms/__init__.py +7 -7
  12. aws_cdk/aws_gamelift/__init__.py +261 -160
  13. aws_cdk/aws_ivs/__init__.py +1 -3
  14. aws_cdk/aws_kms/__init__.py +11 -5
  15. aws_cdk/aws_location/__init__.py +8 -4
  16. aws_cdk/aws_oam/__init__.py +45 -11
  17. aws_cdk/aws_omics/__init__.py +4 -4
  18. aws_cdk/aws_paymentcryptography/__init__.py +128 -48
  19. aws_cdk/aws_pinpoint/__init__.py +7 -5
  20. aws_cdk/aws_qbusiness/__init__.py +620 -294
  21. aws_cdk/aws_quicksight/__init__.py +103 -40
  22. aws_cdk/aws_rds/__init__.py +38 -8
  23. aws_cdk/aws_route53profiles/__init__.py +49 -49
  24. aws_cdk/aws_sagemaker/__init__.py +30 -30
  25. aws_cdk/aws_ses/__init__.py +9 -9
  26. aws_cdk/aws_transfer/__init__.py +4 -4
  27. aws_cdk/aws_voiceid/__init__.py +2 -2
  28. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.141.0.dist-info}/METADATA +1 -1
  29. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.141.0.dist-info}/RECORD +33 -33
  30. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.141.0.dist-info}/LICENSE +0 -0
  31. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.141.0.dist-info}/NOTICE +0 -0
  32. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.141.0.dist-info}/WHEEL +0 -0
  33. {aws_cdk_lib-2.140.0.dist-info → aws_cdk_lib-2.141.0.dist-info}/top_level.txt +0 -0
@@ -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
 
@@ -8100,7 +8104,7 @@ class CfnDBInstance(
8100
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.
8101
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.
8102
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.
8103
- :param automatic_backup_replication_kms_key_id:
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`` .
8104
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* .
8105
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.
8106
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``
@@ -8170,7 +8174,7 @@ class CfnDBInstance(
8170
8174
  :param tags: An optional array of key-value pairs to apply to this DB instance.
8171
8175
  :param tde_credential_arn:
8172
8176
  :param tde_credential_password:
8173
- :param timezone: The time zone of the DB instance. The time zone parameter is currently supported only by `Microsoft SQL Server <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone>`_ .
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>`_ .
8174
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.
8175
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.
8176
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.
@@ -8445,6 +8449,7 @@ class CfnDBInstance(
8445
8449
  @builtins.property
8446
8450
  @jsii.member(jsii_name="automaticBackupReplicationKmsKeyId")
8447
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.'''
8448
8453
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "automaticBackupReplicationKmsKeyId"))
8449
8454
 
8450
8455
  @automatic_backup_replication_kms_key_id.setter
@@ -10105,7 +10110,7 @@ class CfnDBInstanceProps:
10105
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.
10106
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.
10107
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.
10108
- :param automatic_backup_replication_kms_key_id:
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`` .
10109
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* .
10110
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.
10111
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``
@@ -10175,7 +10180,7 @@ class CfnDBInstanceProps:
10175
10180
  :param tags: An optional array of key-value pairs to apply to this DB instance.
10176
10181
  :param tde_credential_arn:
10177
10182
  :param tde_credential_password:
10178
- :param timezone: The time zone of the DB instance. The time zone parameter is currently supported only by `Microsoft SQL Server <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone>`_ .
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>`_ .
10179
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.
10180
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.
10181
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.
@@ -10625,7 +10630,10 @@ class CfnDBInstanceProps:
10625
10630
 
10626
10631
  @builtins.property
10627
10632
  def automatic_backup_replication_kms_key_id(self) -> typing.Optional[builtins.str]:
10628
- '''
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
+
10629
10637
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-automaticbackupreplicationkmskeyid
10630
10638
  '''
10631
10639
  result = self._values.get("automatic_backup_replication_kms_key_id")
@@ -11967,7 +11975,7 @@ class CfnDBInstanceProps:
11967
11975
  def timezone(self) -> typing.Optional[builtins.str]:
11968
11976
  '''The time zone of the DB instance.
11969
11977
 
11970
- The time zone parameter is currently supported only by `Microsoft SQL Server <https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone>`_ .
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>`_ .
11971
11979
 
11972
11980
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-timezone
11973
11981
  '''
@@ -31675,6 +31683,7 @@ class ParameterGroup(
31675
31683
  *,
31676
31684
  engine: IEngine,
31677
31685
  description: typing.Optional[builtins.str] = None,
31686
+ name: typing.Optional[builtins.str] = None,
31678
31687
  parameters: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
31679
31688
  removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
31680
31689
  ) -> None:
@@ -31683,6 +31692,7 @@ class ParameterGroup(
31683
31692
  :param id: -
31684
31693
  :param engine: The database engine for this parameter group.
31685
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
31686
31696
  :param parameters: The parameters in this parameter group. Default: - None
31687
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
31688
31698
  '''
@@ -31693,6 +31703,7 @@ class ParameterGroup(
31693
31703
  props = ParameterGroupProps(
31694
31704
  engine=engine,
31695
31705
  description=description,
31706
+ name=name,
31696
31707
  parameters=parameters,
31697
31708
  removal_policy=removal_policy,
31698
31709
  )
@@ -31918,6 +31929,7 @@ class ParameterGroupInstanceConfig:
31918
31929
  name_mapping={
31919
31930
  "engine": "engine",
31920
31931
  "description": "description",
31932
+ "name": "name",
31921
31933
  "parameters": "parameters",
31922
31934
  "removal_policy": "removalPolicy",
31923
31935
  },
@@ -31928,6 +31940,7 @@ class ParameterGroupProps:
31928
31940
  *,
31929
31941
  engine: IEngine,
31930
31942
  description: typing.Optional[builtins.str] = None,
31943
+ name: typing.Optional[builtins.str] = None,
31931
31944
  parameters: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
31932
31945
  removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
31933
31946
  ) -> None:
@@ -31935,6 +31948,7 @@ class ParameterGroupProps:
31935
31948
 
31936
31949
  :param engine: The database engine for this parameter group.
31937
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
31938
31952
  :param parameters: The parameters in this parameter group. Default: - None
31939
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
31940
31954
 
@@ -32020,6 +32034,7 @@ class ParameterGroupProps:
32020
32034
  type_hints = typing.get_type_hints(_typecheckingstub__7e65259e690ac4d6bb43c0be2f64c905b8bd37fdfc8b2aee040374a69c6919c4)
32021
32035
  check_type(argname="argument engine", value=engine, expected_type=type_hints["engine"])
32022
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"])
32023
32038
  check_type(argname="argument parameters", value=parameters, expected_type=type_hints["parameters"])
32024
32039
  check_type(argname="argument removal_policy", value=removal_policy, expected_type=type_hints["removal_policy"])
32025
32040
  self._values: typing.Dict[builtins.str, typing.Any] = {
@@ -32027,6 +32042,8 @@ class ParameterGroupProps:
32027
32042
  }
32028
32043
  if description is not None:
32029
32044
  self._values["description"] = description
32045
+ if name is not None:
32046
+ self._values["name"] = name
32030
32047
  if parameters is not None:
32031
32048
  self._values["parameters"] = parameters
32032
32049
  if removal_policy is not None:
@@ -32048,6 +32065,15 @@ class ParameterGroupProps:
32048
32065
  result = self._values.get("description")
32049
32066
  return typing.cast(typing.Optional[builtins.str], result)
32050
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
+
32051
32077
  @builtins.property
32052
32078
  def parameters(self) -> typing.Optional[typing.Mapping[builtins.str, builtins.str]]:
32053
32079
  '''The parameters in this parameter group.
@@ -36281,6 +36307,7 @@ class SqlServerEeInstanceEngineProps:
36281
36307
  engine=rds.DatabaseInstanceEngine.sql_server_ee(
36282
36308
  version=rds.SqlServerEngineVersion.VER_11
36283
36309
  ),
36310
+ name="my-parameter-group",
36284
36311
  parameters={
36285
36312
  "locks": "100"
36286
36313
  }
@@ -36335,6 +36362,7 @@ class SqlServerEngineVersion(
36335
36362
  engine=rds.DatabaseInstanceEngine.sql_server_ee(
36336
36363
  version=rds.SqlServerEngineVersion.VER_11
36337
36364
  ),
36365
+ name="my-parameter-group",
36338
36366
  parameters={
36339
36367
  "locks": "100"
36340
36368
  }
@@ -46808,6 +46836,7 @@ def _typecheckingstub__dca000a45931b5c98666d6840c64a03368a633b520e82623c6e257298
46808
46836
  *,
46809
46837
  engine: IEngine,
46810
46838
  description: typing.Optional[builtins.str] = None,
46839
+ name: typing.Optional[builtins.str] = None,
46811
46840
  parameters: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
46812
46841
  removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
46813
46842
  ) -> None:
@@ -46847,6 +46876,7 @@ def _typecheckingstub__7e65259e690ac4d6bb43c0be2f64c905b8bd37fdfc8b2aee040374a69
46847
46876
  *,
46848
46877
  engine: IEngine,
46849
46878
  description: typing.Optional[builtins.str] = None,
46879
+ name: typing.Optional[builtins.str] = None,
46850
46880
  parameters: typing.Optional[typing.Mapping[builtins.str, builtins.str]] = None,
46851
46881
  removal_policy: typing.Optional[_RemovalPolicy_9f93c814] = None,
46852
46882
  ) -> None:
@@ -69,7 +69,7 @@ class CfnProfile(
69
69
  metaclass=jsii.JSIIMeta,
70
70
  jsii_type="aws-cdk-lib.aws_route53profiles.CfnProfile",
71
71
  ):
72
- '''Resource Type definition for AWS::Route53Profiles::Profile.
72
+ '''A complex type that includes settings for a Route 53 Profile.
73
73
 
74
74
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html
75
75
  :cloudformationResource: AWS::Route53Profiles::Profile
@@ -103,8 +103,8 @@ class CfnProfile(
103
103
  '''
104
104
  :param scope: Scope in which this resource is defined.
105
105
  :param id: Construct identifier for this resource (unique in its scope).
106
- :param name: The name of the profile.
107
- :param tags: An array of key-value pairs to apply to this resource.
106
+ :param name: Name of the Profile.
107
+ :param tags: A list of the tag keys and values that you want to associate with the profile.
108
108
  '''
109
109
  if __debug__:
110
110
  type_hints = typing.get_type_hints(_typecheckingstub__a4c1f071f0e4e35c37cfd1564e9529ed7a07645071498a571c8b23339ff2d0f7)
@@ -147,7 +147,7 @@ class CfnProfile(
147
147
  @builtins.property
148
148
  @jsii.member(jsii_name="attrArn")
149
149
  def attr_arn(self) -> builtins.str:
150
- '''The Amazon Resource Name (ARN) of the resolver profile.
150
+ '''The Amazon Resource Name (ARN) of the Profile.
151
151
 
152
152
  :cloudformationAttribute: Arn
153
153
  '''
@@ -156,7 +156,7 @@ class CfnProfile(
156
156
  @builtins.property
157
157
  @jsii.member(jsii_name="attrClientToken")
158
158
  def attr_client_token(self) -> builtins.str:
159
- '''The id of the creator request.
159
+ '''The ``ClientToken`` value that was assigned when the Profile was created.
160
160
 
161
161
  :cloudformationAttribute: ClientToken
162
162
  '''
@@ -165,7 +165,7 @@ class CfnProfile(
165
165
  @builtins.property
166
166
  @jsii.member(jsii_name="attrId")
167
167
  def attr_id(self) -> builtins.str:
168
- '''The ID of the profile.
168
+ '''ID of the Profile.
169
169
 
170
170
  :cloudformationAttribute: Id
171
171
  '''
@@ -185,7 +185,7 @@ class CfnProfile(
185
185
  @builtins.property
186
186
  @jsii.member(jsii_name="name")
187
187
  def name(self) -> builtins.str:
188
- '''The name of the profile.'''
188
+ '''Name of the Profile.'''
189
189
  return typing.cast(builtins.str, jsii.get(self, "name"))
190
190
 
191
191
  @name.setter
@@ -198,7 +198,7 @@ class CfnProfile(
198
198
  @builtins.property
199
199
  @jsii.member(jsii_name="tags")
200
200
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
201
- '''An array of key-value pairs to apply to this resource.'''
201
+ '''A list of the tag keys and values that you want to associate with the profile.'''
202
202
  return typing.cast(typing.Optional[typing.List[_CfnTag_f6864754]], jsii.get(self, "tags"))
203
203
 
204
204
  @tags.setter
@@ -215,7 +215,7 @@ class CfnProfileAssociation(
215
215
  metaclass=jsii.JSIIMeta,
216
216
  jsii_type="aws-cdk-lib.aws_route53profiles.CfnProfileAssociation",
217
217
  ):
218
- '''Resource Type definition for AWS::Route53Profiles::ProfileAssociation.
218
+ '''An association between a Route 53 Profile and a VPC.
219
219
 
220
220
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileassociation.html
221
221
  :cloudformationResource: AWS::Route53Profiles::ProfileAssociation
@@ -255,10 +255,10 @@ class CfnProfileAssociation(
255
255
  '''
256
256
  :param scope: Scope in which this resource is defined.
257
257
  :param id: Construct identifier for this resource (unique in its scope).
258
- :param name: The name of an association between a Profile and a VPC.
259
- :param profile_id: The ID of the profile that you associated with the resource that is specified by ResourceId.
260
- :param resource_id: The resource that you associated the profile with.
261
- :param arn: The Amazon Resource Name (ARN) of the profile association.
258
+ :param name: Name of the Profile association.
259
+ :param profile_id: ID of the Profile.
260
+ :param resource_id: The Amazon Resource Name (ARN) of the VPC.
261
+ :param arn: The Amazon Resource Name (ARN) of the profile association to a VPC.
262
262
  :param tags: An array of key-value pairs to apply to this resource.
263
263
  '''
264
264
  if __debug__:
@@ -308,7 +308,7 @@ class CfnProfileAssociation(
308
308
  @builtins.property
309
309
  @jsii.member(jsii_name="attrId")
310
310
  def attr_id(self) -> builtins.str:
311
- '''Primary Identifier for Profile Association.
311
+ '''ID of the Profile association.
312
312
 
313
313
  :cloudformationAttribute: Id
314
314
  '''
@@ -328,7 +328,7 @@ class CfnProfileAssociation(
328
328
  @builtins.property
329
329
  @jsii.member(jsii_name="name")
330
330
  def name(self) -> builtins.str:
331
- '''The name of an association between a Profile and a VPC.'''
331
+ '''Name of the Profile association.'''
332
332
  return typing.cast(builtins.str, jsii.get(self, "name"))
333
333
 
334
334
  @name.setter
@@ -341,7 +341,7 @@ class CfnProfileAssociation(
341
341
  @builtins.property
342
342
  @jsii.member(jsii_name="profileId")
343
343
  def profile_id(self) -> builtins.str:
344
- '''The ID of the profile that you associated with the resource that is specified by ResourceId.'''
344
+ '''ID of the Profile.'''
345
345
  return typing.cast(builtins.str, jsii.get(self, "profileId"))
346
346
 
347
347
  @profile_id.setter
@@ -354,7 +354,7 @@ class CfnProfileAssociation(
354
354
  @builtins.property
355
355
  @jsii.member(jsii_name="resourceId")
356
356
  def resource_id(self) -> builtins.str:
357
- '''The resource that you associated the profile with.'''
357
+ '''The Amazon Resource Name (ARN) of the VPC.'''
358
358
  return typing.cast(builtins.str, jsii.get(self, "resourceId"))
359
359
 
360
360
  @resource_id.setter
@@ -367,7 +367,7 @@ class CfnProfileAssociation(
367
367
  @builtins.property
368
368
  @jsii.member(jsii_name="arn")
369
369
  def arn(self) -> typing.Optional[builtins.str]:
370
- '''The Amazon Resource Name (ARN) of the profile association.'''
370
+ '''The Amazon Resource Name (ARN) of the profile association to a VPC.'''
371
371
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "arn"))
372
372
 
373
373
  @arn.setter
@@ -414,10 +414,10 @@ class CfnProfileAssociationProps:
414
414
  ) -> None:
415
415
  '''Properties for defining a ``CfnProfileAssociation``.
416
416
 
417
- :param name: The name of an association between a Profile and a VPC.
418
- :param profile_id: The ID of the profile that you associated with the resource that is specified by ResourceId.
419
- :param resource_id: The resource that you associated the profile with.
420
- :param arn: The Amazon Resource Name (ARN) of the profile association.
417
+ :param name: Name of the Profile association.
418
+ :param profile_id: ID of the Profile.
419
+ :param resource_id: The Amazon Resource Name (ARN) of the VPC.
420
+ :param arn: The Amazon Resource Name (ARN) of the profile association to a VPC.
421
421
  :param tags: An array of key-value pairs to apply to this resource.
422
422
 
423
423
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileassociation.html
@@ -461,7 +461,7 @@ class CfnProfileAssociationProps:
461
461
 
462
462
  @builtins.property
463
463
  def name(self) -> builtins.str:
464
- '''The name of an association between a Profile and a VPC.
464
+ '''Name of the Profile association.
465
465
 
466
466
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileassociation.html#cfn-route53profiles-profileassociation-name
467
467
  '''
@@ -471,7 +471,7 @@ class CfnProfileAssociationProps:
471
471
 
472
472
  @builtins.property
473
473
  def profile_id(self) -> builtins.str:
474
- '''The ID of the profile that you associated with the resource that is specified by ResourceId.
474
+ '''ID of the Profile.
475
475
 
476
476
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileassociation.html#cfn-route53profiles-profileassociation-profileid
477
477
  '''
@@ -481,7 +481,7 @@ class CfnProfileAssociationProps:
481
481
 
482
482
  @builtins.property
483
483
  def resource_id(self) -> builtins.str:
484
- '''The resource that you associated the profile with.
484
+ '''The Amazon Resource Name (ARN) of the VPC.
485
485
 
486
486
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileassociation.html#cfn-route53profiles-profileassociation-resourceid
487
487
  '''
@@ -491,7 +491,7 @@ class CfnProfileAssociationProps:
491
491
 
492
492
  @builtins.property
493
493
  def arn(self) -> typing.Optional[builtins.str]:
494
- '''The Amazon Resource Name (ARN) of the profile association.
494
+ '''The Amazon Resource Name (ARN) of the profile association to a VPC.
495
495
 
496
496
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileassociation.html#cfn-route53profiles-profileassociation-arn
497
497
  '''
@@ -533,8 +533,8 @@ class CfnProfileProps:
533
533
  ) -> None:
534
534
  '''Properties for defining a ``CfnProfile``.
535
535
 
536
- :param name: The name of the profile.
537
- :param tags: An array of key-value pairs to apply to this resource.
536
+ :param name: Name of the Profile.
537
+ :param tags: A list of the tag keys and values that you want to associate with the profile.
538
538
 
539
539
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html
540
540
  :exampleMetadata: fixture=_generated
@@ -567,7 +567,7 @@ class CfnProfileProps:
567
567
 
568
568
  @builtins.property
569
569
  def name(self) -> builtins.str:
570
- '''The name of the profile.
570
+ '''Name of the Profile.
571
571
 
572
572
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html#cfn-route53profiles-profile-name
573
573
  '''
@@ -577,7 +577,7 @@ class CfnProfileProps:
577
577
 
578
578
  @builtins.property
579
579
  def tags(self) -> typing.Optional[typing.List[_CfnTag_f6864754]]:
580
- '''An array of key-value pairs to apply to this resource.
580
+ '''A list of the tag keys and values that you want to associate with the profile.
581
581
 
582
582
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html#cfn-route53profiles-profile-tags
583
583
  '''
@@ -602,7 +602,7 @@ class CfnProfileResourceAssociation(
602
602
  metaclass=jsii.JSIIMeta,
603
603
  jsii_type="aws-cdk-lib.aws_route53profiles.CfnProfileResourceAssociation",
604
604
  ):
605
- '''Resource Type definition for AWS::Route53Profiles::ProfileResourceAssociation.
605
+ '''The association between a Route 53 Profile and resources.
606
606
 
607
607
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileresourceassociation.html
608
608
  :cloudformationResource: AWS::Route53Profiles::ProfileResourceAssociation
@@ -637,10 +637,10 @@ class CfnProfileResourceAssociation(
637
637
  '''
638
638
  :param scope: Scope in which this resource is defined.
639
639
  :param id: Construct identifier for this resource (unique in its scope).
640
- :param name: The name of an association between the Profile and resource.
641
- :param profile_id: The ID of the profile that you associated the resource to that is specified by ResourceArn.
642
- :param resource_arn: The arn of the resource that you associated to the Profile.
643
- :param resource_properties: A JSON-formatted string with key-value pairs specifying the properties of the associated resource.
640
+ :param name: Name of the Profile resource association.
641
+ :param profile_id: Profile ID of the Profile that the resources are associated with.
642
+ :param resource_arn: The Amazon Resource Name (ARN) of the resource association.
643
+ :param resource_properties: If the DNS resource is a DNS Firewall rule group, this indicates the priority.
644
644
  '''
645
645
  if __debug__:
646
646
  type_hints = typing.get_type_hints(_typecheckingstub__654d8dd5618d66fa0625633f46d77099c9357744b521399d4e1e34d078669be8)
@@ -688,7 +688,7 @@ class CfnProfileResourceAssociation(
688
688
  @builtins.property
689
689
  @jsii.member(jsii_name="attrId")
690
690
  def attr_id(self) -> builtins.str:
691
- '''Primary Identifier for Profile Resource Association.
691
+ '''ID of the Profile resource association.
692
692
 
693
693
  :cloudformationAttribute: Id
694
694
  '''
@@ -697,7 +697,7 @@ class CfnProfileResourceAssociation(
697
697
  @builtins.property
698
698
  @jsii.member(jsii_name="attrResourceType")
699
699
  def attr_resource_type(self) -> builtins.str:
700
- '''The type of the resource associated to the Profile.
700
+ '''Resource type, such as a private hosted zone, or DNS Firewall rule group.
701
701
 
702
702
  :cloudformationAttribute: ResourceType
703
703
  '''
@@ -711,7 +711,7 @@ class CfnProfileResourceAssociation(
711
711
  @builtins.property
712
712
  @jsii.member(jsii_name="name")
713
713
  def name(self) -> builtins.str:
714
- '''The name of an association between the Profile and resource.'''
714
+ '''Name of the Profile resource association.'''
715
715
  return typing.cast(builtins.str, jsii.get(self, "name"))
716
716
 
717
717
  @name.setter
@@ -724,7 +724,7 @@ class CfnProfileResourceAssociation(
724
724
  @builtins.property
725
725
  @jsii.member(jsii_name="profileId")
726
726
  def profile_id(self) -> builtins.str:
727
- '''The ID of the profile that you associated the resource to that is specified by ResourceArn.'''
727
+ '''Profile ID of the Profile that the resources are associated with.'''
728
728
  return typing.cast(builtins.str, jsii.get(self, "profileId"))
729
729
 
730
730
  @profile_id.setter
@@ -737,7 +737,7 @@ class CfnProfileResourceAssociation(
737
737
  @builtins.property
738
738
  @jsii.member(jsii_name="resourceArn")
739
739
  def resource_arn(self) -> builtins.str:
740
- '''The arn of the resource that you associated to the Profile.'''
740
+ '''The Amazon Resource Name (ARN) of the resource association.'''
741
741
  return typing.cast(builtins.str, jsii.get(self, "resourceArn"))
742
742
 
743
743
  @resource_arn.setter
@@ -750,7 +750,7 @@ class CfnProfileResourceAssociation(
750
750
  @builtins.property
751
751
  @jsii.member(jsii_name="resourceProperties")
752
752
  def resource_properties(self) -> typing.Optional[builtins.str]:
753
- '''A JSON-formatted string with key-value pairs specifying the properties of the associated resource.'''
753
+ '''If the DNS resource is a DNS Firewall rule group, this indicates the priority.'''
754
754
  return typing.cast(typing.Optional[builtins.str], jsii.get(self, "resourceProperties"))
755
755
 
756
756
  @resource_properties.setter
@@ -782,10 +782,10 @@ class CfnProfileResourceAssociationProps:
782
782
  ) -> None:
783
783
  '''Properties for defining a ``CfnProfileResourceAssociation``.
784
784
 
785
- :param name: The name of an association between the Profile and resource.
786
- :param profile_id: The ID of the profile that you associated the resource to that is specified by ResourceArn.
787
- :param resource_arn: The arn of the resource that you associated to the Profile.
788
- :param resource_properties: A JSON-formatted string with key-value pairs specifying the properties of the associated resource.
785
+ :param name: Name of the Profile resource association.
786
+ :param profile_id: Profile ID of the Profile that the resources are associated with.
787
+ :param resource_arn: The Amazon Resource Name (ARN) of the resource association.
788
+ :param resource_properties: If the DNS resource is a DNS Firewall rule group, this indicates the priority.
789
789
 
790
790
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileresourceassociation.html
791
791
  :exampleMetadata: fixture=_generated
@@ -821,7 +821,7 @@ class CfnProfileResourceAssociationProps:
821
821
 
822
822
  @builtins.property
823
823
  def name(self) -> builtins.str:
824
- '''The name of an association between the Profile and resource.
824
+ '''Name of the Profile resource association.
825
825
 
826
826
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileresourceassociation.html#cfn-route53profiles-profileresourceassociation-name
827
827
  '''
@@ -831,7 +831,7 @@ class CfnProfileResourceAssociationProps:
831
831
 
832
832
  @builtins.property
833
833
  def profile_id(self) -> builtins.str:
834
- '''The ID of the profile that you associated the resource to that is specified by ResourceArn.
834
+ '''Profile ID of the Profile that the resources are associated with.
835
835
 
836
836
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileresourceassociation.html#cfn-route53profiles-profileresourceassociation-profileid
837
837
  '''
@@ -841,7 +841,7 @@ class CfnProfileResourceAssociationProps:
841
841
 
842
842
  @builtins.property
843
843
  def resource_arn(self) -> builtins.str:
844
- '''The arn of the resource that you associated to the Profile.
844
+ '''The Amazon Resource Name (ARN) of the resource association.
845
845
 
846
846
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileresourceassociation.html#cfn-route53profiles-profileresourceassociation-resourcearn
847
847
  '''
@@ -851,7 +851,7 @@ class CfnProfileResourceAssociationProps:
851
851
 
852
852
  @builtins.property
853
853
  def resource_properties(self) -> typing.Optional[builtins.str]:
854
- '''A JSON-formatted string with key-value pairs specifying the properties of the associated resource.
854
+ '''If the DNS resource is a DNS Firewall rule group, this indicates the priority.
855
855
 
856
856
  :see: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileresourceassociation.html#cfn-route53profiles-profileresourceassociation-resourceproperties
857
857
  '''