@aws-sdk/client-rds 3.122.0 → 3.128.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/CHANGELOG.md +27 -0
- package/dist-cjs/waiters/index.js +2 -0
- package/dist-cjs/waiters/waitForDBClusterAvailable.js +119 -0
- package/dist-cjs/waiters/waitForDBClusterDeleted.js +99 -0
- package/dist-es/waiters/index.js +2 -0
- package/dist-es/waiters/waitForDBClusterAvailable.js +195 -0
- package/dist-es/waiters/waitForDBClusterDeleted.js +155 -0
- package/dist-types/RDS.d.ts +68 -43
- package/dist-types/commands/BacktrackDBClusterCommand.d.ts +1 -1
- package/dist-types/commands/CopyDBClusterSnapshotCommand.d.ts +42 -9
- package/dist-types/commands/CopyDBSnapshotCommand.d.ts +3 -3
- package/dist-types/commands/CreateDBClusterCommand.d.ts +3 -1
- package/dist-types/commands/CreateDBClusterEndpointCommand.d.ts +1 -1
- package/dist-types/commands/CreateDBClusterParameterGroupCommand.d.ts +9 -9
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +0 -8
- package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +2 -2
- package/dist-types/commands/CreateEventSubscriptionCommand.d.ts +1 -1
- package/dist-types/commands/CreateGlobalClusterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEventsCommand.d.ts +0 -2
- package/dist-types/commands/FailoverDBClusterCommand.d.ts +1 -1
- package/dist-types/commands/ModifyDBClusterParameterGroupCommand.d.ts +1 -1
- package/dist-types/commands/ModifyDBClusterSnapshotAttributeCommand.d.ts +1 -1
- package/dist-types/commands/ModifyDBSnapshotAttributeCommand.d.ts +1 -1
- package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +98 -326
- package/dist-types/models/models_1.d.ts +35 -129
- package/dist-types/ts3.4/waiters/index.d.ts +2 -0
- package/dist-types/ts3.4/waiters/waitForDBClusterAvailable.d.ts +7 -0
- package/dist-types/ts3.4/waiters/waitForDBClusterDeleted.d.ts +7 -0
- package/dist-types/waiters/index.d.ts +2 -0
- package/dist-types/waiters/waitForDBClusterAvailable.d.ts +14 -0
- package/dist-types/waiters/waitForDBClusterDeleted.d.ts +14 -0
- package/package.json +28 -28
|
@@ -1272,33 +1272,22 @@ export interface CopyDBClusterSnapshotMessage {
|
|
|
1272
1272
|
*/
|
|
1273
1273
|
KmsKeyId?: string;
|
|
1274
1274
|
/**
|
|
1275
|
-
* <p>
|
|
1276
|
-
* to
|
|
1277
|
-
*
|
|
1278
|
-
*
|
|
1279
|
-
*
|
|
1280
|
-
*
|
|
1281
|
-
* Amazon Web Services Region.</p>
|
|
1282
|
-
* <p>This setting applies only to Amazon Web Services GovCloud (US) Regions. It's ignored in other
|
|
1283
|
-
* Amazon Web Services Regions.</p>
|
|
1284
|
-
* <p>The presigned URL must be a valid request for the
|
|
1285
|
-
* <code>CopyDBClusterSnapshot</code> API operation that can run in the source
|
|
1286
|
-
* Amazon Web Services Region that contains the encrypted DB cluster snapshot to copy. The presigned URL request
|
|
1287
|
-
* must contain the following parameter values:</p>
|
|
1275
|
+
* <p>The URL that contains a Signature Version 4 signed request for the <code>CopyDBClusterSnapshot</code> API action in the Amazon Web Services Region that contains the
|
|
1276
|
+
* source DB cluster snapshot to copy. The <code>PreSignedUrl</code> parameter must be used when copying an encrypted DB cluster snapshot from another Amazon Web Services Region.
|
|
1277
|
+
* Don't specify <code>PreSignedUrl</code> when you are copying an encrypted DB cluster snapshot in the same Amazon Web Services Region.</p>
|
|
1278
|
+
* <p>The pre-signed URL must be a valid request for the <code>CopyDBClusterSnapshot</code> API action that can be
|
|
1279
|
+
* executed in the source Amazon Web Services Region that contains the encrypted DB cluster snapshot to be copied.
|
|
1280
|
+
* The pre-signed URL request must contain the following parameter values:</p>
|
|
1288
1281
|
* <ul>
|
|
1289
1282
|
* <li>
|
|
1290
1283
|
* <p>
|
|
1291
|
-
* <code>KmsKeyId</code> - The KMS key identifier for the KMS key
|
|
1292
|
-
*
|
|
1293
|
-
*
|
|
1294
|
-
* <code>CopyDBClusterSnapshot</code> operation that is called in the
|
|
1295
|
-
* destination Amazon Web Services Region, and the operation contained in the presigned
|
|
1296
|
-
* URL.</p>
|
|
1284
|
+
* <code>KmsKeyId</code> - The Amazon Web Services KMS key identifier for the KMS key to use to encrypt the copy of the DB
|
|
1285
|
+
* cluster snapshot in the destination Amazon Web Services Region. This is the same identifier for both the <code>CopyDBClusterSnapshot</code>
|
|
1286
|
+
* action that is called in the destination Amazon Web Services Region, and the action contained in the pre-signed URL.</p>
|
|
1297
1287
|
* </li>
|
|
1298
1288
|
* <li>
|
|
1299
1289
|
* <p>
|
|
1300
|
-
* <code>DestinationRegion</code> - The name of the Amazon Web Services Region
|
|
1301
|
-
* that the DB cluster snapshot is to be created in.</p>
|
|
1290
|
+
* <code>DestinationRegion</code> - The name of the Amazon Web Services Region that the DB cluster snapshot is to be created in.</p>
|
|
1302
1291
|
* </li>
|
|
1303
1292
|
* <li>
|
|
1304
1293
|
* <p>
|
|
@@ -1309,16 +1298,15 @@ export interface CopyDBClusterSnapshotMessage {
|
|
|
1309
1298
|
* </li>
|
|
1310
1299
|
* </ul>
|
|
1311
1300
|
* <p>To learn how to generate a Signature Version 4 signed request, see
|
|
1301
|
+
*
|
|
1312
1302
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html">
|
|
1313
1303
|
* Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4)</a> and
|
|
1314
1304
|
* <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">
|
|
1315
1305
|
* Signature Version 4 Signing Process</a>.</p>
|
|
1316
1306
|
* <note>
|
|
1317
|
-
* <p>If you are using an Amazon Web Services SDK tool or the CLI, you can specify
|
|
1318
|
-
*
|
|
1319
|
-
*
|
|
1320
|
-
* <code>SourceRegion</code> autogenerates a presigned URL that is a valid request
|
|
1321
|
-
* for the operation that can run in the source Amazon Web Services Region.</p>
|
|
1307
|
+
* <p>If you are using an Amazon Web Services SDK tool or the CLI, you can specify <code>SourceRegion</code> (or <code>--source-region</code> for the CLI)
|
|
1308
|
+
* instead of specifying <code>PreSignedUrl</code> manually. Specifying <code>SourceRegion</code> autogenerates a pre-signed URL that is a valid
|
|
1309
|
+
* request for the operation that can be executed in the source Amazon Web Services Region.</p>
|
|
1322
1310
|
* </note>
|
|
1323
1311
|
*/
|
|
1324
1312
|
PreSignedUrl?: string;
|
|
@@ -1644,7 +1632,9 @@ export interface CopyDBSnapshotMessage {
|
|
|
1644
1632
|
* <code>arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805</code>.</p>
|
|
1645
1633
|
* <p>If you are copying from a shared manual DB snapshot,
|
|
1646
1634
|
* this parameter must be the Amazon Resource Name (ARN) of the shared DB snapshot.</p>
|
|
1647
|
-
* <p>If you are copying an encrypted snapshot
|
|
1635
|
+
* <p>If you are copying an encrypted snapshot
|
|
1636
|
+
* this parameter must be in the ARN format for the source Amazon Web Services Region,
|
|
1637
|
+
* and must match the <code>SourceDBSnapshotIdentifier</code> in the <code>PreSignedUrl</code> parameter.</p>
|
|
1648
1638
|
* <p>Constraints:</p>
|
|
1649
1639
|
* <ul>
|
|
1650
1640
|
* <li>
|
|
@@ -1706,40 +1696,32 @@ export interface CopyDBSnapshotMessage {
|
|
|
1706
1696
|
*/
|
|
1707
1697
|
CopyTags?: boolean;
|
|
1708
1698
|
/**
|
|
1709
|
-
* <p>
|
|
1710
|
-
*
|
|
1711
|
-
*
|
|
1712
|
-
* <p>This setting applies only to Amazon Web Services GovCloud (US) Regions. It's ignored in other
|
|
1713
|
-
* Amazon Web Services Regions.</p>
|
|
1699
|
+
* <p>The URL that contains a Signature Version 4 signed request for the
|
|
1700
|
+
* <code>CopyDBSnapshot</code> API action in the source Amazon Web Services Region that contains the
|
|
1701
|
+
* source DB snapshot to copy.</p>
|
|
1714
1702
|
* <p>You must specify this parameter when you copy an encrypted DB snapshot from another
|
|
1715
1703
|
* Amazon Web Services Region by using the Amazon RDS API. Don't specify <code>PreSignedUrl</code> when you are
|
|
1716
1704
|
* copying an encrypted DB snapshot in the same Amazon Web Services Region.</p>
|
|
1717
|
-
* <p>The presigned URL must be a valid request for the
|
|
1718
|
-
*
|
|
1719
|
-
*
|
|
1720
|
-
* must contain the following parameter values:</p>
|
|
1705
|
+
* <p>The presigned URL must be a valid request for the <code>CopyDBSnapshot</code> API action
|
|
1706
|
+
* that can be executed in the source Amazon Web Services Region that contains the encrypted DB snapshot to be copied.
|
|
1707
|
+
* The presigned URL request must contain the following parameter values:</p>
|
|
1721
1708
|
* <ul>
|
|
1722
1709
|
* <li>
|
|
1723
1710
|
* <p>
|
|
1724
|
-
* <code>DestinationRegion</code> - The Amazon Web Services Region that the encrypted DB
|
|
1725
|
-
*
|
|
1726
|
-
*
|
|
1727
|
-
*
|
|
1728
|
-
*
|
|
1729
|
-
*
|
|
1730
|
-
*
|
|
1731
|
-
*
|
|
1732
|
-
* operation in the us-west-2 Amazon Web Services Region. For this example, the
|
|
1733
|
-
* <code>DestinationRegion</code> in the presigned URL must be set to the
|
|
1734
|
-
* us-east-1 Amazon Web Services Region.</p>
|
|
1711
|
+
* <code>DestinationRegion</code> - The Amazon Web Services Region that the encrypted DB snapshot is copied to.
|
|
1712
|
+
* This Amazon Web Services Region is the same one where the <code>CopyDBSnapshot</code> action is called that contains this presigned URL.</p>
|
|
1713
|
+
* <p>For example, if you copy an encrypted DB snapshot from the us-west-2 Amazon Web Services Region
|
|
1714
|
+
* to the us-east-1 Amazon Web Services Region, then you call the <code>CopyDBSnapshot</code> action in
|
|
1715
|
+
* the us-east-1 Amazon Web Services Region and provide a presigned URL that contains a call to the
|
|
1716
|
+
* <code>CopyDBSnapshot</code> action in the us-west-2 Amazon Web Services Region. For this
|
|
1717
|
+
* example, the <code>DestinationRegion</code> in the presigned URL must be set to
|
|
1718
|
+
* the us-east-1 Amazon Web Services Region.</p>
|
|
1735
1719
|
* </li>
|
|
1736
1720
|
* <li>
|
|
1737
1721
|
* <p>
|
|
1738
|
-
* <code>KmsKeyId</code> - The KMS key identifier for the KMS key to use to
|
|
1739
|
-
*
|
|
1740
|
-
*
|
|
1741
|
-
* called in the destination Amazon Web Services Region, and the operation contained in the
|
|
1742
|
-
* presigned URL.</p>
|
|
1722
|
+
* <code>KmsKeyId</code> - The Amazon Web Services KMS key identifier for the KMS key to use to encrypt the copy of the DB snapshot in the destination Amazon Web Services Region.
|
|
1723
|
+
* This is the same identifier for both the <code>CopyDBSnapshot</code> action that is called in the destination Amazon Web Services Region,
|
|
1724
|
+
* and the action contained in the presigned URL.</p>
|
|
1743
1725
|
* </li>
|
|
1744
1726
|
* <li>
|
|
1745
1727
|
* <p>
|
|
@@ -1753,11 +1735,9 @@ export interface CopyDBSnapshotMessage {
|
|
|
1753
1735
|
* <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html">Authenticating Requests: Using Query Parameters (Amazon Web Services Signature Version 4)</a> and
|
|
1754
1736
|
* <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4 Signing Process</a>.</p>
|
|
1755
1737
|
* <note>
|
|
1756
|
-
* <p>If you are using an Amazon Web Services SDK tool or the CLI, you can specify
|
|
1757
|
-
*
|
|
1758
|
-
*
|
|
1759
|
-
* <code>SourceRegion</code> autogenerates a presigned URL that is a valid request
|
|
1760
|
-
* for the operation that can run in the source Amazon Web Services Region.</p>
|
|
1738
|
+
* <p>If you are using an Amazon Web Services SDK tool or the CLI, you can specify <code>SourceRegion</code> (or <code>--source-region</code> for the CLI)
|
|
1739
|
+
* instead of specifying <code>PreSignedUrl</code> manually. Specifying <code>SourceRegion</code> autogenerates a pre-signed URL that is a valid
|
|
1740
|
+
* request for the operation that can be executed in the source Amazon Web Services Region.</p>
|
|
1761
1741
|
* </note>
|
|
1762
1742
|
*/
|
|
1763
1743
|
PreSignedUrl?: string;
|
|
@@ -2219,8 +2199,7 @@ export interface VpcSecurityGroupMembership {
|
|
|
2219
2199
|
*/
|
|
2220
2200
|
VpcSecurityGroupId?: string;
|
|
2221
2201
|
/**
|
|
2222
|
-
* <p>The
|
|
2223
|
-
* <p>Currently, the only valid status is <code>active</code>.</p>
|
|
2202
|
+
* <p>The status of the VPC security group.</p>
|
|
2224
2203
|
*/
|
|
2225
2204
|
Status?: string;
|
|
2226
2205
|
}
|
|
@@ -3072,24 +3051,18 @@ export interface CreateDBClusterMessage {
|
|
|
3072
3051
|
*/
|
|
3073
3052
|
KmsKeyId?: string;
|
|
3074
3053
|
/**
|
|
3075
|
-
* <p>
|
|
3076
|
-
*
|
|
3077
|
-
*
|
|
3078
|
-
*
|
|
3079
|
-
*
|
|
3080
|
-
*
|
|
3081
|
-
* <p>The presigned URL must be a valid request for the <code>CreateDBCluster</code> API
|
|
3082
|
-
* operation that can run in the source Amazon Web Services Region that contains the encrypted DB
|
|
3083
|
-
* cluster to copy.</p>
|
|
3084
|
-
* <p>The presigned URL request must contain the following parameter values:</p>
|
|
3054
|
+
* <p>A URL that contains a Signature Version 4 signed request for
|
|
3055
|
+
* the <code>CreateDBCluster</code> action to be called in the source Amazon Web Services Region where the DB cluster is replicated from.
|
|
3056
|
+
* Specify <code>PreSignedUrl</code> only when you are performing cross-Region replication from an encrypted DB cluster.</p>
|
|
3057
|
+
* <p>The pre-signed URL must be a valid request for the <code>CreateDBCluster</code> API action
|
|
3058
|
+
* that can be executed in the source Amazon Web Services Region that contains the encrypted DB cluster to be copied.</p>
|
|
3059
|
+
* <p>The pre-signed URL request must contain the following parameter values:</p>
|
|
3085
3060
|
* <ul>
|
|
3086
3061
|
* <li>
|
|
3087
3062
|
* <p>
|
|
3088
|
-
* <code>KmsKeyId</code> - The KMS key identifier for the KMS key to use to
|
|
3089
|
-
*
|
|
3090
|
-
*
|
|
3091
|
-
* that is called in the destination Amazon Web Services Region, and the operation contained in
|
|
3092
|
-
* the presigned URL.</p>
|
|
3063
|
+
* <code>KmsKeyId</code> - The Amazon Web Services KMS key identifier for the KMS key to use to encrypt the copy of
|
|
3064
|
+
* the DB cluster in the destination Amazon Web Services Region. This should refer to the same KMS key for both the <code>CreateDBCluster</code>
|
|
3065
|
+
* action that is called in the destination Amazon Web Services Region, and the action contained in the pre-signed URL.</p>
|
|
3093
3066
|
* </li>
|
|
3094
3067
|
* <li>
|
|
3095
3068
|
* <p>
|
|
@@ -3110,11 +3083,9 @@ export interface CreateDBClusterMessage {
|
|
|
3110
3083
|
* <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">
|
|
3111
3084
|
* Signature Version 4 Signing Process</a>.</p>
|
|
3112
3085
|
* <note>
|
|
3113
|
-
* <p>If you are using an Amazon Web Services SDK tool or the CLI, you can specify
|
|
3114
|
-
*
|
|
3115
|
-
*
|
|
3116
|
-
* <code>SourceRegion</code> autogenerates a presigned URL that is a valid request
|
|
3117
|
-
* for the operation that can run in the source Amazon Web Services Region.</p>
|
|
3086
|
+
* <p>If you are using an Amazon Web Services SDK tool or the CLI, you can specify <code>SourceRegion</code> (or <code>--source-region</code> for the CLI)
|
|
3087
|
+
* instead of specifying <code>PreSignedUrl</code> manually. Specifying <code>SourceRegion</code> autogenerates a pre-signed URL that is a valid
|
|
3088
|
+
* request for the operation that can be executed in the source Amazon Web Services Region.</p>
|
|
3118
3089
|
* </note>
|
|
3119
3090
|
* <p>Valid for: Aurora DB clusters only</p>
|
|
3120
3091
|
*/
|
|
@@ -3125,7 +3096,7 @@ export interface CreateDBClusterMessage {
|
|
|
3125
3096
|
* enabled.</p>
|
|
3126
3097
|
* <p>For more information, see
|
|
3127
3098
|
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.IAMDBAuth.html">
|
|
3128
|
-
* IAM Database Authentication</a> in the <i>Amazon Aurora User Guide
|
|
3099
|
+
* IAM Database Authentication</a> in the <i>Amazon Aurora User Guide.</i>.</p>
|
|
3129
3100
|
* <p>Valid for: Aurora DB clusters only</p>
|
|
3130
3101
|
*/
|
|
3131
3102
|
EnableIAMDatabaseAuthentication?: boolean;
|
|
@@ -3174,7 +3145,6 @@ export interface CreateDBClusterMessage {
|
|
|
3174
3145
|
* <p>The <code>global</code> engine mode isn't required for Aurora MySQL version 1.22 and higher 1.x versions,
|
|
3175
3146
|
* and <code>global</code> engine mode isn't required for any 2.x versions.</p>
|
|
3176
3147
|
* <p>The <code>multimaster</code> engine mode only applies for DB clusters created with Aurora MySQL version 5.6.10a.</p>
|
|
3177
|
-
* <p>The <code>serverless</code> engine mode only applies for Aurora Serverless v1 DB clusters.</p>
|
|
3178
3148
|
* <p>For Aurora PostgreSQL, the <code>global</code> engine mode isn't required, and both the <code>parallelquery</code>
|
|
3179
3149
|
* and the <code>multimaster</code> engine modes currently aren't supported.</p>
|
|
3180
3150
|
* <p>Limitations and requirements apply to some DB engine modes. For more information, see the
|
|
@@ -3182,31 +3152,26 @@ export interface CreateDBClusterMessage {
|
|
|
3182
3152
|
* <ul>
|
|
3183
3153
|
* <li>
|
|
3184
3154
|
* <p>
|
|
3185
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations">
|
|
3186
|
-
* Serverless v1</a>
|
|
3187
|
-
* </p>
|
|
3188
|
-
* </li>
|
|
3189
|
-
* <li>
|
|
3190
|
-
* <p>
|
|
3191
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.requirements.html">Requirements
|
|
3192
|
-
* for Aurora Serverless v2</a>
|
|
3155
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.html#aurora-serverless.limitations">
|
|
3156
|
+
* Limitations of Aurora Serverless v1</a>
|
|
3193
3157
|
* </p>
|
|
3194
3158
|
* </li>
|
|
3195
3159
|
* <li>
|
|
3196
3160
|
* <p>
|
|
3197
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations">
|
|
3161
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-mysql-parallel-query.html#aurora-mysql-parallel-query-limitations">
|
|
3162
|
+
* Limitations of Parallel Query</a>
|
|
3198
3163
|
* </p>
|
|
3199
3164
|
* </li>
|
|
3200
3165
|
* <li>
|
|
3201
3166
|
* <p>
|
|
3202
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations">
|
|
3203
|
-
* Aurora Global Databases</a>
|
|
3167
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database.html#aurora-global-database.limitations">
|
|
3168
|
+
* Limitations of Aurora Global Databases</a>
|
|
3204
3169
|
* </p>
|
|
3205
3170
|
* </li>
|
|
3206
3171
|
* <li>
|
|
3207
3172
|
* <p>
|
|
3208
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations">
|
|
3209
|
-
* Multi-Master Clusters</a>
|
|
3173
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-multi-master.html#aurora-multi-master-limitations">
|
|
3174
|
+
* Limitations of Multi-Master Clusters</a>
|
|
3210
3175
|
* </p>
|
|
3211
3176
|
* </li>
|
|
3212
3177
|
* </ul>
|
|
@@ -3379,35 +3344,7 @@ export interface CreateDBClusterMessage {
|
|
|
3379
3344
|
*/
|
|
3380
3345
|
PerformanceInsightsKMSKeyId?: string;
|
|
3381
3346
|
/**
|
|
3382
|
-
* <p>The
|
|
3383
|
-
* <ul>
|
|
3384
|
-
* <li>
|
|
3385
|
-
* <p>7</p>
|
|
3386
|
-
* </li>
|
|
3387
|
-
* <li>
|
|
3388
|
-
* <p>
|
|
3389
|
-
* <i>month</i> * 31, where <i>month</i> is a number of months from 1-23</p>
|
|
3390
|
-
* </li>
|
|
3391
|
-
* <li>
|
|
3392
|
-
* <p>731</p>
|
|
3393
|
-
* </li>
|
|
3394
|
-
* </ul>
|
|
3395
|
-
* <p>For example, the following values are valid:</p>
|
|
3396
|
-
* <ul>
|
|
3397
|
-
* <li>
|
|
3398
|
-
* <p>93 (3 months * 31)</p>
|
|
3399
|
-
* </li>
|
|
3400
|
-
* <li>
|
|
3401
|
-
* <p>341 (11 months * 31)</p>
|
|
3402
|
-
* </li>
|
|
3403
|
-
* <li>
|
|
3404
|
-
* <p>589 (19 months * 31)</p>
|
|
3405
|
-
* </li>
|
|
3406
|
-
* <li>
|
|
3407
|
-
* <p>731</p>
|
|
3408
|
-
* </li>
|
|
3409
|
-
* </ul>
|
|
3410
|
-
* <p>If you specify a retention period such as 94, which isn't a valid value, RDS issues an error.</p>
|
|
3347
|
+
* <p>The amount of time, in days, to retain Performance Insights data. Valid values are 7 or 731 (2 years).</p>
|
|
3411
3348
|
* <p>Valid for: Multi-AZ DB clusters only</p>
|
|
3412
3349
|
*/
|
|
3413
3350
|
PerformanceInsightsRetentionPeriod?: number;
|
|
@@ -4022,34 +3959,7 @@ export interface DBCluster {
|
|
|
4022
3959
|
*/
|
|
4023
3960
|
PerformanceInsightsKMSKeyId?: string;
|
|
4024
3961
|
/**
|
|
4025
|
-
* <p>The
|
|
4026
|
-
* <ul>
|
|
4027
|
-
* <li>
|
|
4028
|
-
* <p>7</p>
|
|
4029
|
-
* </li>
|
|
4030
|
-
* <li>
|
|
4031
|
-
* <p>
|
|
4032
|
-
* <i>month</i> * 31, where <i>month</i> is a number of months from 1-23</p>
|
|
4033
|
-
* </li>
|
|
4034
|
-
* <li>
|
|
4035
|
-
* <p>731</p>
|
|
4036
|
-
* </li>
|
|
4037
|
-
* </ul>
|
|
4038
|
-
* <p>For example, the following values are valid:</p>
|
|
4039
|
-
* <ul>
|
|
4040
|
-
* <li>
|
|
4041
|
-
* <p>93 (3 months * 31)</p>
|
|
4042
|
-
* </li>
|
|
4043
|
-
* <li>
|
|
4044
|
-
* <p>341 (11 months * 31)</p>
|
|
4045
|
-
* </li>
|
|
4046
|
-
* <li>
|
|
4047
|
-
* <p>589 (19 months * 31)</p>
|
|
4048
|
-
* </li>
|
|
4049
|
-
* <li>
|
|
4050
|
-
* <p>731</p>
|
|
4051
|
-
* </li>
|
|
4052
|
-
* </ul>
|
|
3962
|
+
* <p>The amount of time, in days, to retain Performance Insights data. Valid values are 7 or 731 (2 years).</p>
|
|
4053
3963
|
* <p>This setting is only for non-Aurora Multi-AZ DB clusters.</p>
|
|
4054
3964
|
*/
|
|
4055
3965
|
PerformanceInsightsRetentionPeriod?: number;
|
|
@@ -4849,13 +4759,11 @@ export interface CreateDBInstanceMessage {
|
|
|
4849
4759
|
*/
|
|
4850
4760
|
AllocatedStorage?: number;
|
|
4851
4761
|
/**
|
|
4852
|
-
* <p>The compute and memory capacity of the DB instance, for example db.
|
|
4762
|
+
* <p>The compute and memory capacity of the DB instance, for example db.m4.large.
|
|
4853
4763
|
* Not all DB instance classes are available in all Amazon Web Services Regions, or for all database engines.
|
|
4854
|
-
* For the full list of DB instance classes,
|
|
4855
|
-
*
|
|
4856
|
-
*
|
|
4857
|
-
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.DBInstanceClass.html">Aurora
|
|
4858
|
-
* DB instance classes</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
4764
|
+
* For the full list of DB instance classes,
|
|
4765
|
+
* and availability for your engine, see
|
|
4766
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html">DB Instance Class</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
4859
4767
|
*/
|
|
4860
4768
|
DBInstanceClass: string | undefined;
|
|
4861
4769
|
/**
|
|
@@ -5011,8 +4919,7 @@ export interface CreateDBInstanceMessage {
|
|
|
5011
4919
|
MasterUserPassword?: string;
|
|
5012
4920
|
/**
|
|
5013
4921
|
* <p>A list of DB security groups to associate with this DB instance.</p>
|
|
5014
|
-
* <p>
|
|
5015
|
-
* new DB instances. Use the <code>VpcSecurityGroupIds</code> setting instead.</p>
|
|
4922
|
+
* <p>Default: The default DB security group for the database engine.</p>
|
|
5016
4923
|
*/
|
|
5017
4924
|
DBSecurityGroups?: string[];
|
|
5018
4925
|
/**
|
|
@@ -5097,7 +5004,7 @@ export interface CreateDBInstanceMessage {
|
|
|
5097
5004
|
* <p>Can't be set to 0 if the DB instance is a source to read replicas</p>
|
|
5098
5005
|
* </li>
|
|
5099
5006
|
* <li>
|
|
5100
|
-
* <p>Can't be set to 0 for an RDS Custom for Oracle DB instance</p>
|
|
5007
|
+
* <p>Can't be set to 0 or 35 for an RDS Custom for Oracle DB instance</p>
|
|
5101
5008
|
* </li>
|
|
5102
5009
|
* </ul>
|
|
5103
5010
|
*/
|
|
@@ -5185,16 +5092,11 @@ export interface CreateDBInstanceMessage {
|
|
|
5185
5092
|
* <p>A value that indicates whether the DB instance is a Multi-AZ deployment. You can't set
|
|
5186
5093
|
* the <code>AvailabilityZone</code> parameter if the DB instance is a Multi-AZ deployment.</p>
|
|
5187
5094
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
5188
|
-
* <p>
|
|
5189
|
-
* <b>Amazon Aurora</b>
|
|
5190
|
-
* </p>
|
|
5191
|
-
* <p>Not applicable. DB instance Availability Zones (AZs) are managed by the DB cluster.</p>
|
|
5192
5095
|
*/
|
|
5193
5096
|
MultiAZ?: boolean;
|
|
5194
5097
|
/**
|
|
5195
5098
|
* <p>The version number of the database engine to use.</p>
|
|
5196
|
-
* <p>For a list of valid engine versions, use the
|
|
5197
|
-
* operation.</p>
|
|
5099
|
+
* <p>For a list of valid engine versions, use the <code>DescribeDBEngineVersions</code> action.</p>
|
|
5198
5100
|
* <p>The following are the database engines and links to information about the major and minor versions that are available with
|
|
5199
5101
|
* Amazon RDS. Not every database engine is available for every Amazon Web Services Region.</p>
|
|
5200
5102
|
* <p>
|
|
@@ -5254,10 +5156,6 @@ export interface CreateDBInstanceMessage {
|
|
|
5254
5156
|
* <p>Valid values: <code>license-included</code> | <code>bring-your-own-license</code> | <code>general-public-license</code>
|
|
5255
5157
|
* </p>
|
|
5256
5158
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
5257
|
-
* <p>
|
|
5258
|
-
* <b>Amazon Aurora</b>
|
|
5259
|
-
* </p>
|
|
5260
|
-
* <p>Not applicable.</p>
|
|
5261
5159
|
*/
|
|
5262
5160
|
LicenseModel?: string;
|
|
5263
5161
|
/**
|
|
@@ -5266,10 +5164,6 @@ export interface CreateDBInstanceMessage {
|
|
|
5266
5164
|
* <p>Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL DB instances, must be a multiple between .5 and 50
|
|
5267
5165
|
* of the storage amount for the DB instance. For SQL Server DB instances, must be a multiple between 1 and 50
|
|
5268
5166
|
* of the storage amount for the DB instance.</p>
|
|
5269
|
-
* <p>
|
|
5270
|
-
* <b>Amazon Aurora</b>
|
|
5271
|
-
* </p>
|
|
5272
|
-
* <p>Not applicable. Storage is managed by the DB cluster.</p>
|
|
5273
5167
|
*/
|
|
5274
5168
|
Iops?: number;
|
|
5275
5169
|
/**
|
|
@@ -5278,10 +5172,6 @@ export interface CreateDBInstanceMessage {
|
|
|
5278
5172
|
* from an option group. Also, that option group can't be removed from a DB instance after it is
|
|
5279
5173
|
* associated with a DB instance.</p>
|
|
5280
5174
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
5281
|
-
* <p>
|
|
5282
|
-
* <b>Amazon Aurora</b>
|
|
5283
|
-
* </p>
|
|
5284
|
-
* <p>Not applicable.</p>
|
|
5285
5175
|
*/
|
|
5286
5176
|
OptionGroupName?: string;
|
|
5287
5177
|
/**
|
|
@@ -5347,19 +5237,11 @@ export interface CreateDBInstanceMessage {
|
|
|
5347
5237
|
* <p>Default: <code>io1</code> if the <code>Iops</code> parameter
|
|
5348
5238
|
* is specified, otherwise <code>gp2</code>
|
|
5349
5239
|
* </p>
|
|
5350
|
-
* <p>
|
|
5351
|
-
* <b>Amazon Aurora</b>
|
|
5352
|
-
* </p>
|
|
5353
|
-
* <p>Not applicable. Storage is managed by the DB cluster.</p>
|
|
5354
5240
|
*/
|
|
5355
5241
|
StorageType?: string;
|
|
5356
5242
|
/**
|
|
5357
5243
|
* <p>The ARN from the key store with which to associate the instance for TDE encryption.</p>
|
|
5358
5244
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
5359
|
-
* <p>
|
|
5360
|
-
* <b>Amazon Aurora</b>
|
|
5361
|
-
* </p>
|
|
5362
|
-
* <p>Not applicable.</p>
|
|
5363
5245
|
*/
|
|
5364
5246
|
TdeCredentialArn?: string;
|
|
5365
5247
|
/**
|
|
@@ -5405,10 +5287,6 @@ export interface CreateDBInstanceMessage {
|
|
|
5405
5287
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/kerberos-authentication.html">
|
|
5406
5288
|
* Kerberos Authentication</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
5407
5289
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
5408
|
-
* <p>
|
|
5409
|
-
* <b>Amazon Aurora</b>
|
|
5410
|
-
* </p>
|
|
5411
|
-
* <p>Not applicable. The domain is managed by the DB cluster.</p>
|
|
5412
5290
|
*/
|
|
5413
5291
|
Domain?: string;
|
|
5414
5292
|
/**
|
|
@@ -5442,10 +5320,6 @@ export interface CreateDBInstanceMessage {
|
|
|
5442
5320
|
/**
|
|
5443
5321
|
* <p>Specify the name of the IAM role to be used when making API calls to the Directory Service.</p>
|
|
5444
5322
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
5445
|
-
* <p>
|
|
5446
|
-
* <b>Amazon Aurora</b>
|
|
5447
|
-
* </p>
|
|
5448
|
-
* <p>Not applicable. The domain is managed by the DB cluster.</p>
|
|
5449
5323
|
*/
|
|
5450
5324
|
DomainIAMRoleName?: string;
|
|
5451
5325
|
/**
|
|
@@ -5467,14 +5341,11 @@ export interface CreateDBInstanceMessage {
|
|
|
5467
5341
|
/**
|
|
5468
5342
|
* <p>A value that indicates whether to enable mapping of Amazon Web Services Identity and Access Management
|
|
5469
5343
|
* (IAM) accounts to database accounts. By default, mapping isn't enabled.</p>
|
|
5344
|
+
* <p>This setting doesn't apply to RDS Custom or Amazon Aurora. In Aurora, mapping Amazon Web Services IAM accounts
|
|
5345
|
+
* to database accounts is managed by the DB cluster.</p>
|
|
5470
5346
|
* <p>For more information, see
|
|
5471
|
-
*
|
|
5472
|
-
*
|
|
5473
|
-
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
5474
|
-
* <p>
|
|
5475
|
-
* <b>Amazon Aurora</b>
|
|
5476
|
-
* </p>
|
|
5477
|
-
* <p>Not applicable. Mapping Amazon Web Services IAM accounts to database accounts is managed by the DB cluster.</p>
|
|
5347
|
+
* <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.IAMDBAuth.html">
|
|
5348
|
+
* IAM Database Authentication for MySQL and PostgreSQL</a> in the <i>Amazon RDS User Guide</i>.</p>
|
|
5478
5349
|
*/
|
|
5479
5350
|
EnableIAMDatabaseAuthentication?: boolean;
|
|
5480
5351
|
/**
|
|
@@ -5493,35 +5364,7 @@ export interface CreateDBInstanceMessage {
|
|
|
5493
5364
|
*/
|
|
5494
5365
|
PerformanceInsightsKMSKeyId?: string;
|
|
5495
5366
|
/**
|
|
5496
|
-
* <p>The
|
|
5497
|
-
* <ul>
|
|
5498
|
-
* <li>
|
|
5499
|
-
* <p>7</p>
|
|
5500
|
-
* </li>
|
|
5501
|
-
* <li>
|
|
5502
|
-
* <p>
|
|
5503
|
-
* <i>month</i> * 31, where <i>month</i> is a number of months from 1-23</p>
|
|
5504
|
-
* </li>
|
|
5505
|
-
* <li>
|
|
5506
|
-
* <p>731</p>
|
|
5507
|
-
* </li>
|
|
5508
|
-
* </ul>
|
|
5509
|
-
* <p>For example, the following values are valid:</p>
|
|
5510
|
-
* <ul>
|
|
5511
|
-
* <li>
|
|
5512
|
-
* <p>93 (3 months * 31)</p>
|
|
5513
|
-
* </li>
|
|
5514
|
-
* <li>
|
|
5515
|
-
* <p>341 (11 months * 31)</p>
|
|
5516
|
-
* </li>
|
|
5517
|
-
* <li>
|
|
5518
|
-
* <p>589 (19 months * 31)</p>
|
|
5519
|
-
* </li>
|
|
5520
|
-
* <li>
|
|
5521
|
-
* <p>731</p>
|
|
5522
|
-
* </li>
|
|
5523
|
-
* </ul>
|
|
5524
|
-
* <p>If you specify a retention period such as 94, which isn't a valid value, RDS issues an error.</p>
|
|
5367
|
+
* <p>The amount of time, in days, to retain Performance Insights data. Valid values are 7 or 731 (2 years).</p>
|
|
5525
5368
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
5526
5369
|
*/
|
|
5527
5370
|
PerformanceInsightsRetentionPeriod?: number;
|
|
@@ -5564,10 +5407,6 @@ export interface CreateDBInstanceMessage {
|
|
|
5564
5407
|
/**
|
|
5565
5408
|
* <p>The number of CPU cores and the number of threads per core for the DB instance class of the DB instance.</p>
|
|
5566
5409
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
5567
|
-
* <p>
|
|
5568
|
-
* <b>Amazon Aurora</b>
|
|
5569
|
-
* </p>
|
|
5570
|
-
* <p>Not applicable.</p>
|
|
5571
5410
|
*/
|
|
5572
5411
|
ProcessorFeatures?: ProcessorFeature[];
|
|
5573
5412
|
/**
|
|
@@ -5591,10 +5430,6 @@ export interface CreateDBInstanceMessage {
|
|
|
5591
5430
|
* Managing capacity automatically with Amazon RDS storage autoscaling</a>
|
|
5592
5431
|
* in the <i>Amazon RDS User Guide</i>.</p>
|
|
5593
5432
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
5594
|
-
* <p>
|
|
5595
|
-
* <b>Amazon Aurora</b>
|
|
5596
|
-
* </p>
|
|
5597
|
-
* <p>Not applicable. Storage is managed by the DB cluster.</p>
|
|
5598
5433
|
*/
|
|
5599
5434
|
MaxAllocatedStorage?: number;
|
|
5600
5435
|
/**
|
|
@@ -6401,34 +6236,7 @@ export interface DBInstance {
|
|
|
6401
6236
|
*/
|
|
6402
6237
|
PerformanceInsightsKMSKeyId?: string;
|
|
6403
6238
|
/**
|
|
6404
|
-
* <p>The
|
|
6405
|
-
* <ul>
|
|
6406
|
-
* <li>
|
|
6407
|
-
* <p>7</p>
|
|
6408
|
-
* </li>
|
|
6409
|
-
* <li>
|
|
6410
|
-
* <p>
|
|
6411
|
-
* <i>month</i> * 31, where <i>month</i> is a number of months from 1-23</p>
|
|
6412
|
-
* </li>
|
|
6413
|
-
* <li>
|
|
6414
|
-
* <p>731</p>
|
|
6415
|
-
* </li>
|
|
6416
|
-
* </ul>
|
|
6417
|
-
* <p>For example, the following values are valid:</p>
|
|
6418
|
-
* <ul>
|
|
6419
|
-
* <li>
|
|
6420
|
-
* <p>93 (3 months * 31)</p>
|
|
6421
|
-
* </li>
|
|
6422
|
-
* <li>
|
|
6423
|
-
* <p>341 (11 months * 31)</p>
|
|
6424
|
-
* </li>
|
|
6425
|
-
* <li>
|
|
6426
|
-
* <p>589 (19 months * 31)</p>
|
|
6427
|
-
* </li>
|
|
6428
|
-
* <li>
|
|
6429
|
-
* <p>731</p>
|
|
6430
|
-
* </li>
|
|
6431
|
-
* </ul>
|
|
6239
|
+
* <p>The amount of time, in days, to retain Performance Insights data. Valid values are 7 or 731 (2 years).</p>
|
|
6432
6240
|
*/
|
|
6433
6241
|
PerformanceInsightsRetentionPeriod?: number;
|
|
6434
6242
|
/**
|
|
@@ -6771,8 +6579,8 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
6771
6579
|
* uses the <code>DBParameterGroup</code> of source DB instance for a same Region read
|
|
6772
6580
|
* replica, or the default <code>DBParameterGroup</code> for the specified DB engine for a
|
|
6773
6581
|
* cross-Region read replica.</p>
|
|
6774
|
-
* <p>Specifying a parameter group for this operation is only supported for
|
|
6775
|
-
*
|
|
6582
|
+
* <p>Specifying a parameter group for this operation is only supported for Oracle DB instances. It
|
|
6583
|
+
* isn't supported for RDS Custom.</p>
|
|
6776
6584
|
* <p>Constraints:</p>
|
|
6777
6585
|
* <ul>
|
|
6778
6586
|
* <li>
|
|
@@ -6896,42 +6704,36 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
6896
6704
|
*/
|
|
6897
6705
|
KmsKeyId?: string;
|
|
6898
6706
|
/**
|
|
6899
|
-
* <p>
|
|
6900
|
-
*
|
|
6901
|
-
* signed request for the <code>CreateDBInstanceReadReplica</code> API operation in the
|
|
6902
|
-
* source Amazon Web Services Region that contains the source DB instance.</p>
|
|
6903
|
-
* <p>This setting applies only to Amazon Web Services GovCloud (US) Regions and
|
|
6904
|
-
* China Amazon Web Services Regions. It's ignored in other Amazon Web Services Regions.</p>
|
|
6707
|
+
* <p>The URL that contains a Signature Version 4 signed request for the <code>CreateDBInstanceReadReplica</code> API action
|
|
6708
|
+
* in the source Amazon Web Services Region that contains the source DB instance.</p>
|
|
6905
6709
|
* <p>You must specify this parameter when you create an encrypted read replica from
|
|
6906
6710
|
* another Amazon Web Services Region by using the Amazon RDS API. Don't specify
|
|
6907
6711
|
* <code>PreSignedUrl</code> when you are creating an encrypted read replica in the
|
|
6908
6712
|
* same Amazon Web Services Region.</p>
|
|
6909
|
-
* <p>The presigned URL must be a valid request for the
|
|
6910
|
-
*
|
|
6911
|
-
*
|
|
6912
|
-
* request must contain the following parameter values:</p>
|
|
6713
|
+
* <p>The presigned URL must be a valid request for the <code>CreateDBInstanceReadReplica</code> API action
|
|
6714
|
+
* that can be executed in the source Amazon Web Services Region that contains the encrypted source DB instance.
|
|
6715
|
+
* The presigned URL request must contain the following parameter values:</p>
|
|
6913
6716
|
* <ul>
|
|
6914
6717
|
* <li>
|
|
6915
6718
|
* <p>
|
|
6916
6719
|
* <code>DestinationRegion</code> - The Amazon Web Services Region that the encrypted read
|
|
6917
6720
|
* replica is created in. This Amazon Web Services Region is the same one where the
|
|
6918
|
-
* <code>CreateDBInstanceReadReplica</code>
|
|
6919
|
-
*
|
|
6920
|
-
*
|
|
6921
|
-
*
|
|
6922
|
-
*
|
|
6923
|
-
*
|
|
6924
|
-
*
|
|
6925
|
-
* Amazon Web Services Region
|
|
6926
|
-
* presigned URL must be set to the us-east-1 Amazon Web Services Region.</p>
|
|
6721
|
+
* <code>CreateDBInstanceReadReplica</code> action is called that contains this presigned URL.</p>
|
|
6722
|
+
* <p>For example, if you create an encrypted DB instance in the us-west-1 Amazon Web Services Region,
|
|
6723
|
+
* from a source DB instance in the us-east-2 Amazon Web Services Region,
|
|
6724
|
+
* then you call the <code>CreateDBInstanceReadReplica</code> action in
|
|
6725
|
+
* the us-east-1 Amazon Web Services Region and provide a presigned URL that contains a call to the
|
|
6726
|
+
* <code>CreateDBInstanceReadReplica</code> action in the us-west-2 Amazon Web Services Region. For this
|
|
6727
|
+
* example, the <code>DestinationRegion</code> in the presigned URL must be set to
|
|
6728
|
+
* the us-east-1 Amazon Web Services Region.</p>
|
|
6927
6729
|
* </li>
|
|
6928
6730
|
* <li>
|
|
6929
6731
|
* <p>
|
|
6930
|
-
* <code>KmsKeyId</code> - The KMS key identifier for the key to use to
|
|
6732
|
+
* <code>KmsKeyId</code> - The Amazon Web Services KMS key identifier for the key to use to
|
|
6931
6733
|
* encrypt the read replica in the destination Amazon Web Services Region. This is the same
|
|
6932
|
-
* identifier for both the <code>CreateDBInstanceReadReplica</code>
|
|
6933
|
-
*
|
|
6934
|
-
*
|
|
6734
|
+
* identifier for both the <code>CreateDBInstanceReadReplica</code> action that is
|
|
6735
|
+
* called in the destination Amazon Web Services Region, and the action contained in the presigned
|
|
6736
|
+
* URL.</p>
|
|
6935
6737
|
* </li>
|
|
6936
6738
|
* <li>
|
|
6937
6739
|
* <p>
|
|
@@ -6952,9 +6754,9 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
6952
6754
|
* <code>SourceRegion</code> (or <code>--source-region</code> for the CLI)
|
|
6953
6755
|
* instead of specifying <code>PreSignedUrl</code> manually. Specifying
|
|
6954
6756
|
* <code>SourceRegion</code> autogenerates a presigned URL that is a valid request
|
|
6955
|
-
* for the operation that can
|
|
6757
|
+
* for the operation that can be executed in the source Amazon Web Services Region.</p>
|
|
6956
6758
|
* <p>
|
|
6957
|
-
* <code>SourceRegion</code> isn't supported for SQL Server, because
|
|
6759
|
+
* <code>SourceRegion</code> isn't supported for SQL Server, because SQL Server on Amazon RDS
|
|
6958
6760
|
* doesn't support cross-Region read replicas.</p>
|
|
6959
6761
|
* </note>
|
|
6960
6762
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
@@ -6986,36 +6788,7 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
6986
6788
|
*/
|
|
6987
6789
|
PerformanceInsightsKMSKeyId?: string;
|
|
6988
6790
|
/**
|
|
6989
|
-
* <p>The
|
|
6990
|
-
* <ul>
|
|
6991
|
-
* <li>
|
|
6992
|
-
* <p>7</p>
|
|
6993
|
-
* </li>
|
|
6994
|
-
* <li>
|
|
6995
|
-
* <p>
|
|
6996
|
-
* <i>month</i> * 31, where <i>month</i> is a number of months from 1-23</p>
|
|
6997
|
-
* </li>
|
|
6998
|
-
* <li>
|
|
6999
|
-
* <p>731</p>
|
|
7000
|
-
* </li>
|
|
7001
|
-
* </ul>
|
|
7002
|
-
* <p>For example, the following values are valid:</p>
|
|
7003
|
-
* <ul>
|
|
7004
|
-
* <li>
|
|
7005
|
-
* <p>93 (3 months * 31)</p>
|
|
7006
|
-
* </li>
|
|
7007
|
-
* <li>
|
|
7008
|
-
* <p>341 (11 months * 31)</p>
|
|
7009
|
-
* </li>
|
|
7010
|
-
* <li>
|
|
7011
|
-
* <p>589 (19 months * 31)</p>
|
|
7012
|
-
* </li>
|
|
7013
|
-
* <li>
|
|
7014
|
-
* <p>731</p>
|
|
7015
|
-
* </li>
|
|
7016
|
-
* </ul>
|
|
7017
|
-
* <p>If you specify a retention period such as 94, which isn't a valid value, RDS issues an error.</p>
|
|
7018
|
-
*
|
|
6791
|
+
* <p>The amount of time, in days, to retain Performance Insights data. Valid values are 7 or 731 (2 years).</p>
|
|
7019
6792
|
* <p>This setting doesn't apply to RDS Custom.</p>
|
|
7020
6793
|
*/
|
|
7021
6794
|
PerformanceInsightsRetentionPeriod?: number;
|
|
@@ -8164,9 +7937,8 @@ export interface CreateGlobalClusterMessage {
|
|
|
8164
7937
|
*/
|
|
8165
7938
|
DeletionProtection?: boolean;
|
|
8166
7939
|
/**
|
|
8167
|
-
* <p>The name for your database of up to 64
|
|
8168
|
-
*
|
|
8169
|
-
* creating.</p>
|
|
7940
|
+
* <p>The name for your database of up to 64 alpha-numeric characters. If you do not provide a name, Amazon
|
|
7941
|
+
* Aurora will not create a database in the global database cluster you are creating.</p>
|
|
8170
7942
|
*/
|
|
8171
7943
|
DatabaseName?: string;
|
|
8172
7944
|
/**
|