aws-sdk 2.1411.0 → 2.1412.0

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.
package/clients/rds.d.ts CHANGED
@@ -238,11 +238,11 @@ declare class RDS extends Service {
238
238
  */
239
239
  createEventSubscription(callback?: (err: AWSError, data: RDS.Types.CreateEventSubscriptionResult) => void): Request<RDS.Types.CreateEventSubscriptionResult, AWSError>;
240
240
  /**
241
- * Creates an Aurora global database spread across multiple Amazon Web Services Regions. The global database contains a single primary cluster with read-write capability, and a read-only secondary cluster that receives data from the primary cluster through high-speed replication performed by the Aurora storage subsystem. You can create a global database that is initially empty, and then add a primary cluster and a secondary cluster to it. Or you can specify an existing Aurora cluster during the create operation, and this cluster becomes the primary cluster of the global database. This action applies only to Aurora DB clusters.
241
+ * Creates an Aurora global database spread across multiple Amazon Web Services Regions. The global database contains a single primary cluster with read-write capability, and a read-only secondary cluster that receives data from the primary cluster through high-speed replication performed by the Aurora storage subsystem. You can create a global database that is initially empty, and then add a primary cluster and a secondary cluster to it. Or you can specify an existing Aurora cluster during the create operation, and this cluster becomes the primary cluster of the global database. This operation applies only to Aurora DB clusters.
242
242
  */
243
243
  createGlobalCluster(params: RDS.Types.CreateGlobalClusterMessage, callback?: (err: AWSError, data: RDS.Types.CreateGlobalClusterResult) => void): Request<RDS.Types.CreateGlobalClusterResult, AWSError>;
244
244
  /**
245
- * Creates an Aurora global database spread across multiple Amazon Web Services Regions. The global database contains a single primary cluster with read-write capability, and a read-only secondary cluster that receives data from the primary cluster through high-speed replication performed by the Aurora storage subsystem. You can create a global database that is initially empty, and then add a primary cluster and a secondary cluster to it. Or you can specify an existing Aurora cluster during the create operation, and this cluster becomes the primary cluster of the global database. This action applies only to Aurora DB clusters.
245
+ * Creates an Aurora global database spread across multiple Amazon Web Services Regions. The global database contains a single primary cluster with read-write capability, and a read-only secondary cluster that receives data from the primary cluster through high-speed replication performed by the Aurora storage subsystem. You can create a global database that is initially empty, and then add a primary cluster and a secondary cluster to it. Or you can specify an existing Aurora cluster during the create operation, and this cluster becomes the primary cluster of the global database. This operation applies only to Aurora DB clusters.
246
246
  */
247
247
  createGlobalCluster(callback?: (err: AWSError, data: RDS.Types.CreateGlobalClusterResult) => void): Request<RDS.Types.CreateGlobalClusterResult, AWSError>;
248
248
  /**
@@ -2059,7 +2059,7 @@ declare namespace RDS {
2059
2059
  }
2060
2060
  export interface CreateDBInstanceMessage {
2061
2061
  /**
2062
- * The meaning of this parameter differs depending on the database engine. Amazon Aurora MySQL Amazon Aurora PostgreSQL Amazon RDS Custom for Oracle Amazon RDS Custom for SQL Server RDS for MariaDB RDS for MySQL RDS for Oracle RDS for PostgreSQL RDS for SQL Server The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If you don't specify a value, Amazon RDS doesn't create a database in the DB cluster. Constraints: Must contain 1 to 64 alphanumeric characters. Can't be a word reserved by the database engine. The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. Default: postgres Constraints: Must contain 1 to 63 alphanumeric characters. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0 to 9). Can't be a word reserved by the database engine. The Oracle System ID (SID) of the created RDS Custom DB instance. Default: ORCL Constraints: Must contain 1 to 8 alphanumeric characters. Must contain a letter. Can't be a word reserved by the database engine. Not applicable. Must be null. The name of the database to create when the DB instance is created. If you don't specify a value, Amazon RDS doesn't create a database in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the database engine. The name of the database to create when the DB instance is created. If you don't specify a value, Amazon RDS doesn't create a database in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the database engine. The Oracle System ID (SID) of the created DB instance. Default: ORCL Constraints: Can't be longer than 8 characters. Can't be a word reserved by the database engine, such as the string NULL. The name of the database to create when the DB instance is created. Default: postgres Constraints: Must contain 1 to 63 letters, numbers, or underscores. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the database engine. Not applicable. Must be null.
2062
+ * The meaning of this parameter differs depending on the database engine. Amazon Aurora MySQL The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If you don't specify a value, Amazon RDS doesn't create a database in the DB cluster. Constraints: Must contain 1 to 64 alphanumeric characters. Can't be a word reserved by the database engine. Amazon Aurora PostgreSQL The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. Default: postgres Constraints: Must contain 1 to 63 alphanumeric characters. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0 to 9). Can't be a word reserved by the database engine. Amazon RDS Custom for Oracle The Oracle System ID (SID) of the created RDS Custom DB instance. Default: ORCL Constraints: Must contain 1 to 8 alphanumeric characters. Must contain a letter. Can't be a word reserved by the database engine. Amazon RDS Custom for SQL Server Not applicable. Must be null. RDS for MariaDB The name of the database to create when the DB instance is created. If you don't specify a value, Amazon RDS doesn't create a database in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the database engine. RDS for MySQL The name of the database to create when the DB instance is created. If you don't specify a value, Amazon RDS doesn't create a database in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the database engine. RDS for Oracle The Oracle System ID (SID) of the created DB instance. Default: ORCL Constraints: Can't be longer than 8 characters. Can't be a word reserved by the database engine, such as the string NULL. RDS for PostgreSQL The name of the database to create when the DB instance is created. Default: postgres Constraints: Must contain 1 to 63 letters, numbers, or underscores. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the database engine. RDS for SQL Server Not applicable. Must be null.
2063
2063
  */
2064
2064
  DBName?: String;
2065
2065
  /**
@@ -2067,7 +2067,7 @@ declare namespace RDS {
2067
2067
  */
2068
2068
  DBInstanceIdentifier: String;
2069
2069
  /**
2070
- * The amount of storage in gibibytes (GiB) to allocate for the DB instance. This setting doesn't apply to Amazon Aurora DB instances. 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. Amazon RDS Custom RDS for MariaDB RDS for MySQL RDS for Oracle RDS for PostgreSQL RDS for SQL Server Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server. Provisioned IOPS storage (io1): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server. Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): 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. Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): 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. Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): 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. Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): 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. Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): 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 100 to 16384. Web and Express editions: Must be an integer from 100 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.
2070
+ * The amount of storage in gibibytes (GiB) to allocate for the DB instance. This setting doesn't apply to Amazon Aurora DB instances. 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. Amazon RDS Custom Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server. Provisioned IOPS storage (io1): Must be an integer from 40 to 65536 for RDS Custom for Oracle, 16384 for RDS Custom for SQL Server. RDS for MariaDB Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): 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. RDS for MySQL Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): 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. RDS for Oracle Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): 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. RDS for PostgreSQL Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): 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. RDS for SQL Server Constraints to the amount of storage for each storage type are the following: General Purpose (SSD) storage (gp2, gp3): 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 100 to 16384. Web and Express editions: Must be an integer from 100 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.
2071
2071
  */
2072
2072
  AllocatedStorage?: IntegerOptional;
2073
2073
  /**
@@ -2127,7 +2127,7 @@ declare namespace RDS {
2127
2127
  */
2128
2128
  MultiAZ?: BooleanOptional;
2129
2129
  /**
2130
- * The version number of the database engine to use. This setting doesn't apply to Amazon Aurora DB instances. The version number of the database engine the DB instance uses is managed by the DB cluster. For a list of valid engine versions, use the DescribeDBEngineVersions operation. The following are the database engines and links to information about the major and minor versions that are available with Amazon RDS. Not every database engine is available for every Amazon Web Services Region. Amazon RDS Custom for Oracle Amazon RDS Custom for SQL Server RDS for MariaDB RDS for Microsoft SQL Server RDS for MySQL RDS for Oracle RDS for PostgreSQL A custom engine version (CEV) that you have previously created. This setting is required for RDS Custom for Oracle. The CEV name has the following format: 19.customized_string. A valid CEV name is 19.my_cev1. For more information, see Creating an RDS Custom for Oracle DB instance in the Amazon RDS User Guide. See RDS Custom for SQL Server general requirements in the Amazon RDS User Guide. For information, see MariaDB on Amazon RDS versions in the Amazon RDS User Guide. For information, see Microsoft SQL Server versions on Amazon RDS in the Amazon RDS User Guide. For information, see MySQL on Amazon RDS versions in the Amazon RDS User Guide. For information, see Oracle Database Engine release notes in the Amazon RDS User Guide. For information, see Amazon RDS for PostgreSQL versions and extensions in the Amazon RDS User Guide.
2130
+ * The version number of the database engine to use. This setting doesn't apply to Amazon Aurora DB instances. The version number of the database engine the DB instance uses is managed by the DB cluster. For a list of valid engine versions, use the DescribeDBEngineVersions operation. The following are the database engines and links to information about the major and minor versions that are available with Amazon RDS. Not every database engine is available for every Amazon Web Services Region. Amazon RDS Custom for Oracle A custom engine version (CEV) that you have previously created. This setting is required for RDS Custom for Oracle. The CEV name has the following format: 19.customized_string. A valid CEV name is 19.my_cev1. For more information, see Creating an RDS Custom for Oracle DB instance in the Amazon RDS User Guide. Amazon RDS Custom for SQL Server See RDS Custom for SQL Server general requirements in the Amazon RDS User Guide. RDS for MariaDB For information, see MariaDB on Amazon RDS versions in the Amazon RDS User Guide. RDS for Microsoft SQL Server For information, see Microsoft SQL Server versions on Amazon RDS in the Amazon RDS User Guide. RDS for MySQL For information, see MySQL on Amazon RDS versions in the Amazon RDS User Guide. RDS for Oracle For information, see Oracle Database Engine release notes in the Amazon RDS User Guide. RDS for PostgreSQL For information, see Amazon RDS for PostgreSQL versions and extensions in the Amazon RDS User Guide.
2131
2131
  */
2132
2132
  EngineVersion?: String;
2133
2133
  /**
@@ -2191,15 +2191,15 @@ declare namespace RDS {
2191
2191
  */
2192
2192
  Domain?: String;
2193
2193
  /**
2194
- * Specifies the fully qualified domain name of an Active Directory domain. Constraints: Cannot be greater than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
2194
+ * The fully qualified domain name (FQDN) of an Active Directory domain. Constraints: Can't be longer than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
2195
2195
  */
2196
2196
  DomainFqdn?: String;
2197
2197
  /**
2198
- * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Cannot be greater than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
2198
+ * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Can't be longer than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
2199
2199
  */
2200
2200
  DomainOu?: String;
2201
2201
  /**
2202
- * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
2202
+ * The ARN for the Secrets Manager secret with the credentials for the user joining the domain. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
2203
2203
  */
2204
2204
  DomainAuthSecretArn?: String;
2205
2205
  /**
@@ -2207,7 +2207,7 @@ declare namespace RDS {
2207
2207
  */
2208
2208
  DomainDnsIps?: StringList;
2209
2209
  /**
2210
- * Spcifies whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied. This setting doesn't apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting.
2210
+ * Specifies whether to copy tags from the DB instance to snapshots of the DB instance. By default, tags are not copied. This setting doesn't apply to Amazon Aurora DB instances. Copying tags to snapshots is managed by the DB cluster. Setting this value for an Aurora DB instance has no effect on the DB cluster setting.
2211
2211
  */
2212
2212
  CopyTagsToSnapshot?: BooleanOptional;
2213
2213
  /**
@@ -2414,15 +2414,15 @@ declare namespace RDS {
2414
2414
  */
2415
2415
  DomainIAMRoleName?: String;
2416
2416
  /**
2417
- * Specifies the fully qualified domain name of an Active Directory domain. Constraints: Cannot be greater than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
2417
+ * The fully qualified domain name (FQDN) of an Active Directory domain. Constraints: Can't be longer than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
2418
2418
  */
2419
2419
  DomainFqdn?: String;
2420
2420
  /**
2421
- * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Cannot be greater than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
2421
+ * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Can't be longer than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
2422
2422
  */
2423
2423
  DomainOu?: String;
2424
2424
  /**
2425
- * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
2425
+ * The ARN for the Secrets Manager secret with the credentials for the user joining the domain. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
2426
2426
  */
2427
2427
  DomainAuthSecretArn?: String;
2428
2428
  /**
@@ -2654,31 +2654,31 @@ declare namespace RDS {
2654
2654
  }
2655
2655
  export interface CreateGlobalClusterMessage {
2656
2656
  /**
2657
- * The cluster identifier of the new global database cluster. This parameter is stored as a lowercase string.
2657
+ * The cluster identifier for this global database cluster. This parameter is stored as a lowercase string.
2658
2658
  */
2659
2659
  GlobalClusterIdentifier?: String;
2660
2660
  /**
2661
- * The Amazon Resource Name (ARN) to use as the primary cluster of the global database. This parameter is optional.
2661
+ * The Amazon Resource Name (ARN) to use as the primary cluster of the global database. If you provide a value for this parameter, don't specify values for the following settings because Amazon Aurora uses the values from the specified source DB cluster: DatabaseName Engine EngineVersion StorageEncrypted
2662
2662
  */
2663
2663
  SourceDBClusterIdentifier?: String;
2664
2664
  /**
2665
- * The name of the database engine to be used for this DB cluster.
2665
+ * The database engine to use for this global database cluster. Valid Values: aurora-mysql | aurora-postgresql Constraints: Can't be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the engine of the source DB cluster.
2666
2666
  */
2667
2667
  Engine?: String;
2668
2668
  /**
2669
- * The engine version of the Aurora global database.
2669
+ * The engine version to use for this global database cluster. Constraints: Can't be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the engine version of the source DB cluster.
2670
2670
  */
2671
2671
  EngineVersion?: String;
2672
2672
  /**
2673
- * The deletion protection setting for the new global database. The global database can't be deleted when deletion protection is enabled.
2673
+ * Specifies whether to enable deletion protection for the new global database cluster. The global database can't be deleted when deletion protection is enabled.
2674
2674
  */
2675
2675
  DeletionProtection?: BooleanOptional;
2676
2676
  /**
2677
- * The name for your database of up to 64 alphanumeric characters. If you do not provide a name, Amazon Aurora will not create a database in the global database cluster you are creating.
2677
+ * The name for your database of up to 64 alphanumeric characters. If you don't specify a name, Amazon Aurora doesn't create a database in the global database cluster. Constraints: Can't be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the database name from the source DB cluster.
2678
2678
  */
2679
2679
  DatabaseName?: String;
2680
2680
  /**
2681
- * The storage encryption setting for the new global database cluster.
2681
+ * Specifies whether to enable storage encryption for the new global database cluster. Constraints: Can't be specified if SourceDBClusterIdentifier is specified. In this case, Amazon Aurora uses the setting from the source DB cluster.
2682
2682
  */
2683
2683
  StorageEncrypted?: BooleanOptional;
2684
2684
  }
@@ -5634,19 +5634,19 @@ declare namespace RDS {
5634
5634
  */
5635
5635
  FQDN?: String;
5636
5636
  /**
5637
- * The name of the IAM role to be used when making API calls to the Directory Service.
5637
+ * The name of the IAM role used when making API calls to the Directory Service.
5638
5638
  */
5639
5639
  IAMRoleName?: String;
5640
5640
  /**
5641
- * The Active Directory organizational unit for your DB instance to join.
5641
+ * The Active Directory organizational unit for the DB instance or cluster.
5642
5642
  */
5643
5643
  OU?: String;
5644
5644
  /**
5645
- * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join.
5645
+ * The ARN for the Secrets Manager secret with the credentials for the user that's a member of the domain.
5646
5646
  */
5647
5647
  AuthSecretArn?: String;
5648
5648
  /**
5649
- * The IPv4 DNS IP addresses of your primary and secondary Active Directory domain controllers.
5649
+ * The IPv4 DNS IP addresses of the primary and secondary Active Directory domain controllers.
5650
5650
  */
5651
5651
  DnsIps?: StringList;
5652
5652
  }
@@ -6519,15 +6519,15 @@ declare namespace RDS {
6519
6519
  */
6520
6520
  Domain?: String;
6521
6521
  /**
6522
- * Specifies the fully qualified domain name of an Active Directory domain. Constraints: Cannot be greater than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
6522
+ * The fully qualified domain name (FQDN) of an Active Directory domain. Constraints: Can't be longer than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
6523
6523
  */
6524
6524
  DomainFqdn?: String;
6525
6525
  /**
6526
- * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Cannot be greater than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
6526
+ * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Can't be longer than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
6527
6527
  */
6528
6528
  DomainOu?: String;
6529
6529
  /**
6530
- * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
6530
+ * The ARN for the Secrets Manager secret with the credentials for the user joining the domain. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
6531
6531
  */
6532
6532
  DomainAuthSecretArn?: String;
6533
6533
  /**
@@ -6559,7 +6559,7 @@ declare namespace RDS {
6559
6559
  */
6560
6560
  DomainIAMRoleName?: String;
6561
6561
  /**
6562
- * Boolean. If present, removes the instance from the Active Directory domain.
6562
+ * Specifies whether to remove the DB instance from the Active Directory domain.
6563
6563
  */
6564
6564
  DisableDomain?: BooleanOptional;
6565
6565
  /**
@@ -8315,15 +8315,15 @@ declare namespace RDS {
8315
8315
  */
8316
8316
  Domain?: String;
8317
8317
  /**
8318
- * Specifies the fully qualified domain name of an Active Directory domain. Constraints: Cannot be greater than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
8318
+ * The fully qualified domain name (FQDN) of an Active Directory domain. Constraints: Can't be longer than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
8319
8319
  */
8320
8320
  DomainFqdn?: String;
8321
8321
  /**
8322
- * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Cannot be greater than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
8322
+ * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Can't be longer than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
8323
8323
  */
8324
8324
  DomainOu?: String;
8325
8325
  /**
8326
- * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join. Constraints: Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
8326
+ * The ARN for the Secrets Manager secret with the credentials for the user joining the domain. Constraints: Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
8327
8327
  */
8328
8328
  DomainAuthSecretArn?: String;
8329
8329
  /**
@@ -8335,7 +8335,7 @@ declare namespace RDS {
8335
8335
  */
8336
8336
  CopyTagsToSnapshot?: BooleanOptional;
8337
8337
  /**
8338
- * Specify the name of the IAM role to be used when making API calls to the Directory Service. This setting doesn't apply to RDS Custom.
8338
+ * The name of the IAM role to use when making API calls to the Directory Service. This setting doesn't apply to RDS Custom DB instances.
8339
8339
  */
8340
8340
  DomainIAMRoleName?: String;
8341
8341
  /**
@@ -8682,19 +8682,19 @@ declare namespace RDS {
8682
8682
  */
8683
8683
  Domain?: String;
8684
8684
  /**
8685
- * Specify the name of the IAM role to be used when making API calls to the Directory Service. This setting doesn't apply to RDS Custom.
8685
+ * The name of the IAM role to use when making API calls to the Directory Service. This setting doesn't apply to RDS Custom DB instances.
8686
8686
  */
8687
8687
  DomainIAMRoleName?: String;
8688
8688
  /**
8689
- * Specifies the fully qualified domain name of an Active Directory domain. Constraints: Cannot be greater than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
8689
+ * The fully qualified domain name (FQDN) of an Active Directory domain. Constraints: Can't be longer than 64 characters. Example: mymanagedADtest.mymanagedAD.mydomain
8690
8690
  */
8691
8691
  DomainFqdn?: String;
8692
8692
  /**
8693
- * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Cannot be greater than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
8693
+ * The Active Directory organizational unit for your DB instance to join. Constraints: Must be in the distinguished name format. Can't be longer than 64 characters. Example: OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain
8694
8694
  */
8695
8695
  DomainOu?: String;
8696
8696
  /**
8697
- * The ARN for the Secrets Manager secret that contains the credentials for the user performing the domain join. Constraints: Cannot be greater than 64 characters. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
8697
+ * The ARN for the Secrets Manager secret with the credentials for the user joining the domain. Constraints: Can't be longer than 64 characters. Example: arn:aws:secretsmanager:region:account-number:secret:myselfmanagedADtestsecret-123456
8698
8698
  */
8699
8699
  DomainAuthSecretArn?: String;
8700
8700
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1411.0',
86
+ VERSION: '2.1412.0',
87
87
 
88
88
  /**
89
89
  * @api private