@aws-sdk/client-rds 3.939.0 → 3.943.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/dist-cjs/index.js +197 -60
- package/dist-es/schemas/schemas_0.js +197 -60
- package/dist-types/commands/CopyDBSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +7 -0
- package/dist-types/commands/CreateDBInstanceCommand.d.ts +32 -0
- package/dist-types/commands/CreateDBInstanceReadReplicaCommand.d.ts +32 -0
- package/dist-types/commands/CreateDBSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDBInstanceAutomatedBackupCommand.d.ts +10 -0
- package/dist-types/commands/DeleteDBInstanceCommand.d.ts +22 -0
- package/dist-types/commands/DeleteDBSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeDBInstanceAutomatedBackupsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeDBInstancesCommand.d.ts +22 -0
- package/dist-types/commands/DescribeDBSnapshotsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeOrderableDBInstanceOptionsCommand.d.ts +17 -0
- package/dist-types/commands/DescribeValidDBInstanceModificationsCommand.d.ts +42 -2
- package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +4 -0
- package/dist-types/commands/ModifyDBInstanceCommand.d.ts +33 -0
- package/dist-types/commands/ModifyDBSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/PromoteReadReplicaCommand.d.ts +22 -0
- package/dist-types/commands/RebootDBInstanceCommand.d.ts +22 -0
- package/dist-types/commands/RestoreDBInstanceFromDBSnapshotCommand.d.ts +32 -0
- package/dist-types/commands/RestoreDBInstanceFromS3Command.d.ts +32 -0
- package/dist-types/commands/RestoreDBInstanceToPointInTimeCommand.d.ts +32 -0
- package/dist-types/commands/StartDBInstanceAutomatedBackupsReplicationCommand.d.ts +10 -0
- package/dist-types/commands/StartDBInstanceCommand.d.ts +22 -0
- package/dist-types/commands/StopDBInstanceAutomatedBackupsReplicationCommand.d.ts +10 -0
- package/dist-types/commands/StopDBInstanceCommand.d.ts +22 -0
- package/dist-types/commands/SwitchoverReadReplicaCommand.d.ts +22 -0
- package/dist-types/models/models_0.d.ts +297 -64
- package/dist-types/models/models_1.d.ts +204 -2
- package/dist-types/schemas/schemas_0.d.ts +11 -0
- package/dist-types/ts3.4/commands/DescribeValidDBInstanceModificationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +45 -12
- package/dist-types/ts3.4/models/models_1.d.ts +35 -2
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +11 -0
- package/package.json +5 -5
|
@@ -141,6 +141,97 @@ export interface AccountAttributesMessage {
|
|
|
141
141
|
*/
|
|
142
142
|
AccountQuotas?: AccountQuota[] | undefined;
|
|
143
143
|
}
|
|
144
|
+
/**
|
|
145
|
+
* <p>Contains details about an additional storage volume for a DB instance. RDS support
|
|
146
|
+
* additional storage volumes for RDS for Oracle and RDS for SQL Server.</p>
|
|
147
|
+
* @public
|
|
148
|
+
*/
|
|
149
|
+
export interface AdditionalStorageVolume {
|
|
150
|
+
/**
|
|
151
|
+
* <p>The name of the additional storage volume.</p>
|
|
152
|
+
* <p>Valid Values: <code>RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4</code>
|
|
153
|
+
* </p>
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
VolumeName: string | undefined;
|
|
157
|
+
/**
|
|
158
|
+
* <p>The amount of storage allocated for the additional storage volume, in gibibytes (GiB).
|
|
159
|
+
* The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB).</p>
|
|
160
|
+
* @public
|
|
161
|
+
*/
|
|
162
|
+
AllocatedStorage?: number | undefined;
|
|
163
|
+
/**
|
|
164
|
+
* <p>The number of I/O operations per second (IOPS) provisioned for the additional storage
|
|
165
|
+
* volume.</p>
|
|
166
|
+
* @public
|
|
167
|
+
*/
|
|
168
|
+
IOPS?: number | undefined;
|
|
169
|
+
/**
|
|
170
|
+
* <p>The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of
|
|
171
|
+
* the additional storage volume.</p>
|
|
172
|
+
* @public
|
|
173
|
+
*/
|
|
174
|
+
MaxAllocatedStorage?: number | undefined;
|
|
175
|
+
/**
|
|
176
|
+
* <p>The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). This setting applies only to the General Purpose SSD (<code>gp3</code>) storage type.</p>
|
|
177
|
+
* @public
|
|
178
|
+
*/
|
|
179
|
+
StorageThroughput?: number | undefined;
|
|
180
|
+
/**
|
|
181
|
+
* <p>The storage type for the additional storage volume.</p>
|
|
182
|
+
* <p>Valid Values: <code>GP3 | IO2</code>
|
|
183
|
+
* </p>
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
StorageType?: string | undefined;
|
|
187
|
+
}
|
|
188
|
+
/**
|
|
189
|
+
* <p>Contains information about an additional storage volume for a DB instance.</p>
|
|
190
|
+
* @public
|
|
191
|
+
*/
|
|
192
|
+
export interface AdditionalStorageVolumeOutput {
|
|
193
|
+
/**
|
|
194
|
+
* <p>The name of the additional storage volume.</p>
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
197
|
+
VolumeName?: string | undefined;
|
|
198
|
+
/**
|
|
199
|
+
* <p>The status of the additional storage volume.</p>
|
|
200
|
+
* <p>Valid Values: <code>ACTIVE | CREATING | DELETING | MODIFYING | NOT-IN-USE |
|
|
201
|
+
* STORAGE-OPTIMIZATION | VOLUME-FULL</code>
|
|
202
|
+
* </p>
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
205
|
+
StorageVolumeStatus?: string | undefined;
|
|
206
|
+
/**
|
|
207
|
+
* <p>The amount of storage allocated for the additional storage volume, in gibibytes (GiB).
|
|
208
|
+
* The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB).</p>
|
|
209
|
+
* @public
|
|
210
|
+
*/
|
|
211
|
+
AllocatedStorage?: number | undefined;
|
|
212
|
+
/**
|
|
213
|
+
* <p>The number of I/O operations per second (IOPS) provisioned for the additional storage volume.</p>
|
|
214
|
+
* @public
|
|
215
|
+
*/
|
|
216
|
+
IOPS?: number | undefined;
|
|
217
|
+
/**
|
|
218
|
+
* <p>The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of the additional storage volume.</p>
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
MaxAllocatedStorage?: number | undefined;
|
|
222
|
+
/**
|
|
223
|
+
* <p>The storage throughput value for the additional storage volume, in mebibytes per second (MiBps).</p>
|
|
224
|
+
* @public
|
|
225
|
+
*/
|
|
226
|
+
StorageThroughput?: number | undefined;
|
|
227
|
+
/**
|
|
228
|
+
* <p>The storage type for the additional storage volume.</p>
|
|
229
|
+
* <p>Valid Values: <code>GP3 | IO2</code>
|
|
230
|
+
* </p>
|
|
231
|
+
* @public
|
|
232
|
+
*/
|
|
233
|
+
StorageType?: string | undefined;
|
|
234
|
+
}
|
|
144
235
|
/**
|
|
145
236
|
* @public
|
|
146
237
|
*/
|
|
@@ -1684,17 +1775,19 @@ export interface CopyDBSnapshotMessage {
|
|
|
1684
1775
|
* non-null values only if the following conditions are met:</p>
|
|
1685
1776
|
* <ul>
|
|
1686
1777
|
* <li>
|
|
1687
|
-
* <p>You are accessing an Oracle DB instance.</p>
|
|
1778
|
+
* <p>You are accessing an Oracle or SQL Server DB instance.</p>
|
|
1688
1779
|
* </li>
|
|
1689
1780
|
* <li>
|
|
1690
|
-
* <p>Your Oracle DB instance class supports configuring the number of CPU cores and threads per core.</p>
|
|
1781
|
+
* <p>Your Oracle or SQL Server DB instance class supports configuring the number of CPU cores and threads per core.</p>
|
|
1691
1782
|
* </li>
|
|
1692
1783
|
* <li>
|
|
1693
1784
|
* <p>The current number CPU cores and threads is set to a non-default value.</p>
|
|
1694
1785
|
* </li>
|
|
1695
1786
|
* </ul>
|
|
1696
1787
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html#USER_ConfigureProcessor">
|
|
1697
|
-
* Configuring the processor for a DB instance class in RDS for Oracle</a
|
|
1788
|
+
* Configuring the processor for a DB instance class in RDS for Oracle</a>, <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/SQLServer.Concepts.General.OptimizeCPU.html">
|
|
1789
|
+
* Optimizing your RDS for SQL Server CPU</a>, and <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html">DB instance classes</a>
|
|
1790
|
+
* in the <i>Amazon RDS User Guide.
|
|
1698
1791
|
* </i>
|
|
1699
1792
|
* </p>
|
|
1700
1793
|
* @public
|
|
@@ -1923,6 +2016,12 @@ export interface DBSnapshot {
|
|
|
1923
2016
|
* @public
|
|
1924
2017
|
*/
|
|
1925
2018
|
SnapshotAvailabilityZone?: string | undefined;
|
|
2019
|
+
/**
|
|
2020
|
+
* <p>The additional storage volumes associated with the DB snapshot. RDS supports
|
|
2021
|
+
* additional storage volumes for RDS for Oracle and RDS for SQL Server.</p>
|
|
2022
|
+
* @public
|
|
2023
|
+
*/
|
|
2024
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
1926
2025
|
}
|
|
1927
2026
|
/**
|
|
1928
2027
|
* @public
|
|
@@ -2547,7 +2646,8 @@ export interface CreateBlueGreenDeploymentResponse {
|
|
|
2547
2646
|
*/
|
|
2548
2647
|
export interface CreateCustomDBEngineVersionMessage {
|
|
2549
2648
|
/**
|
|
2550
|
-
* <p>The database engine
|
|
2649
|
+
* <p>The database engine.</p>
|
|
2650
|
+
* <p>RDS Custom for Oracle supports the following values:</p>
|
|
2551
2651
|
* <ul>
|
|
2552
2652
|
* <li>
|
|
2553
2653
|
* <p>
|
|
@@ -2570,14 +2670,38 @@ export interface CreateCustomDBEngineVersionMessage {
|
|
|
2570
2670
|
* </p>
|
|
2571
2671
|
* </li>
|
|
2572
2672
|
* </ul>
|
|
2673
|
+
* <p>RDS Custom for SQL Server supports the following values:</p>
|
|
2674
|
+
* <ul>
|
|
2675
|
+
* <li>
|
|
2676
|
+
* <p>
|
|
2677
|
+
* <code>custom-sqlserver-ee</code>
|
|
2678
|
+
* </p>
|
|
2679
|
+
* </li>
|
|
2680
|
+
* <li>
|
|
2681
|
+
* <p>
|
|
2682
|
+
* <code>custom-sqlserver-se</code>
|
|
2683
|
+
* </p>
|
|
2684
|
+
* </li>
|
|
2685
|
+
* <li>
|
|
2686
|
+
* <p>
|
|
2687
|
+
* <code>ccustom-sqlserver-web</code>
|
|
2688
|
+
* </p>
|
|
2689
|
+
* </li>
|
|
2690
|
+
* <li>
|
|
2691
|
+
* <p>
|
|
2692
|
+
* <code>custom-sqlserver-dev</code>
|
|
2693
|
+
* </p>
|
|
2694
|
+
* </li>
|
|
2695
|
+
* </ul>
|
|
2696
|
+
* <p>RDS for SQL Server supports only <code>sqlserver-dev-ee</code>.</p>
|
|
2573
2697
|
* @public
|
|
2574
2698
|
*/
|
|
2575
2699
|
Engine: string | undefined;
|
|
2576
2700
|
/**
|
|
2577
|
-
* <p>The name of your
|
|
2578
|
-
*
|
|
2579
|
-
*
|
|
2580
|
-
*
|
|
2701
|
+
* <p>The name of your custom engine version (CEV).</p>
|
|
2702
|
+
* <p>For RDS Custom for Oracle, the name format is <code>19.*customized_string*</code>. For example, a valid CEV name is <code>19.my_cev1</code>.</p>
|
|
2703
|
+
* <p>For RDS for SQL Server and RDS Custom for SQL Server, the name format is <code>major engine_version*.*minor_engine_version*.*customized_string*</code>. For example, a valid CEV name is <code>16.00.4215.2.my_cev1</code>.</p>
|
|
2704
|
+
* <p>The CEV name is unique per customer per Amazon Web Services Regions.</p>
|
|
2581
2705
|
* @public
|
|
2582
2706
|
*/
|
|
2583
2707
|
EngineVersion: string | undefined;
|
|
@@ -2675,6 +2799,11 @@ export interface CreateCustomDBEngineVersionMessage {
|
|
|
2675
2799
|
* @public
|
|
2676
2800
|
*/
|
|
2677
2801
|
Tags?: Tag[] | undefined;
|
|
2802
|
+
/**
|
|
2803
|
+
* <p>The database installation files (ISO and EXE) uploaded to Amazon S3 for your database engine version to import to Amazon RDS.</p>
|
|
2804
|
+
* @public
|
|
2805
|
+
*/
|
|
2806
|
+
DatabaseInstallationFiles?: string[] | undefined;
|
|
2678
2807
|
}
|
|
2679
2808
|
/**
|
|
2680
2809
|
* <p>This data type is used as a response element in the action <code>DescribeDBEngineVersions</code>.</p>
|
|
@@ -3039,6 +3168,16 @@ export interface DBEngineVersion {
|
|
|
3039
3168
|
* @public
|
|
3040
3169
|
*/
|
|
3041
3170
|
ServerlessV2FeaturesSupport?: ServerlessV2FeaturesSupport | undefined;
|
|
3171
|
+
/**
|
|
3172
|
+
* <p>The database installation files (ISO and EXE) uploaded to Amazon S3 for your database engine version to import to Amazon RDS. Required for <code>sqlserver-dev-ee</code>.</p>
|
|
3173
|
+
* @public
|
|
3174
|
+
*/
|
|
3175
|
+
DatabaseInstallationFiles?: string[] | undefined;
|
|
3176
|
+
/**
|
|
3177
|
+
* <p>The reason that the custom engine version creation for <code>sqlserver-dev-ee</code> failed with an <code>incompatible-installation-media</code> status.</p>
|
|
3178
|
+
* @public
|
|
3179
|
+
*/
|
|
3180
|
+
FailureReason?: string | undefined;
|
|
3042
3181
|
}
|
|
3043
3182
|
/**
|
|
3044
3183
|
* <p>Reserved for future use.</p>
|
|
@@ -5710,6 +5849,11 @@ export interface CreateDBInstanceMessage {
|
|
|
5710
5849
|
* </li>
|
|
5711
5850
|
* <li>
|
|
5712
5851
|
* <p>
|
|
5852
|
+
* <code>sqlserver-dev-ee</code>
|
|
5853
|
+
* </p>
|
|
5854
|
+
* </li>
|
|
5855
|
+
* <li>
|
|
5856
|
+
* <p>
|
|
5713
5857
|
* <code>sqlserver-ee</code>
|
|
5714
5858
|
* </p>
|
|
5715
5859
|
* </li>
|
|
@@ -6677,6 +6821,14 @@ export interface CreateDBInstanceMessage {
|
|
|
6677
6821
|
* @public
|
|
6678
6822
|
*/
|
|
6679
6823
|
MasterUserAuthenticationType?: MasterUserAuthenticationType | undefined;
|
|
6824
|
+
/**
|
|
6825
|
+
* <p>A list of additional storage volumes to create for the DB instance. You can create up
|
|
6826
|
+
* to three additional storage volumes using the names <code>rdsdbdata2</code>,
|
|
6827
|
+
* <code>rdsdbdata3</code>, and <code>rdsdbdata4</code>. Additional storage volumes are
|
|
6828
|
+
* supported for RDS for Oracle and RDS for SQL Server DB instances only.</p>
|
|
6829
|
+
* @public
|
|
6830
|
+
*/
|
|
6831
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
6680
6832
|
}
|
|
6681
6833
|
/**
|
|
6682
6834
|
* <p>Information about an Amazon Web Services Identity and Access Management (IAM) role that is associated with a DB instance.</p>
|
|
@@ -7122,6 +7274,11 @@ export interface PendingModifiedValues {
|
|
|
7122
7274
|
* @public
|
|
7123
7275
|
*/
|
|
7124
7276
|
Engine?: string | undefined;
|
|
7277
|
+
/**
|
|
7278
|
+
* <p>The additional storage volume modifications that are pending for the DB instance.</p>
|
|
7279
|
+
* @public
|
|
7280
|
+
*/
|
|
7281
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
7125
7282
|
}
|
|
7126
7283
|
/**
|
|
7127
7284
|
* <p>Provides a list of status information for a DB instance.</p>
|
|
@@ -7756,6 +7913,18 @@ export interface DBInstance {
|
|
|
7756
7913
|
* @public
|
|
7757
7914
|
*/
|
|
7758
7915
|
EngineLifecycleSupport?: string | undefined;
|
|
7916
|
+
/**
|
|
7917
|
+
* <p>The additional storage volumes associated with the DB instance. RDS supports
|
|
7918
|
+
* additional storage volumes for RDS for Oracle and RDS for SQL Server.</p>
|
|
7919
|
+
* @public
|
|
7920
|
+
*/
|
|
7921
|
+
AdditionalStorageVolumes?: AdditionalStorageVolumeOutput[] | undefined;
|
|
7922
|
+
/**
|
|
7923
|
+
* <p>The detailed status information for storage volumes associated with the DB instance.
|
|
7924
|
+
* This information helps identify which specific volume is causing the instance to be in a storage-full state.</p>
|
|
7925
|
+
* @public
|
|
7926
|
+
*/
|
|
7927
|
+
StorageVolumeStatus?: string | undefined;
|
|
7759
7928
|
}
|
|
7760
7929
|
/**
|
|
7761
7930
|
* @public
|
|
@@ -8453,6 +8622,14 @@ export interface CreateDBInstanceReadReplicaMessage {
|
|
|
8453
8622
|
* @public
|
|
8454
8623
|
*/
|
|
8455
8624
|
CACertificateIdentifier?: string | undefined;
|
|
8625
|
+
/**
|
|
8626
|
+
* <p>A list of additional storage volumes to create for the DB instance. You can create up
|
|
8627
|
+
* to three additional storage volumes using the names <code>rdsdbdata2</code>,
|
|
8628
|
+
* <code>rdsdbdata3</code>, and <code>rdsdbdata4</code>. Additional storage volumes are
|
|
8629
|
+
* supported for RDS for Oracle and RDS for SQL Server DB instances only.</p>
|
|
8630
|
+
* @public
|
|
8631
|
+
*/
|
|
8632
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
8456
8633
|
}
|
|
8457
8634
|
/**
|
|
8458
8635
|
* @public
|
|
@@ -10421,7 +10598,8 @@ export interface DeleteBlueGreenDeploymentResponse {
|
|
|
10421
10598
|
*/
|
|
10422
10599
|
export interface DeleteCustomDBEngineVersionMessage {
|
|
10423
10600
|
/**
|
|
10424
|
-
* <p>The database engine
|
|
10601
|
+
* <p>The database engine.</p>
|
|
10602
|
+
* <p>RDS Custom for Oracle supports the following values:</p>
|
|
10425
10603
|
* <ul>
|
|
10426
10604
|
* <li>
|
|
10427
10605
|
* <p>
|
|
@@ -10444,6 +10622,30 @@ export interface DeleteCustomDBEngineVersionMessage {
|
|
|
10444
10622
|
* </p>
|
|
10445
10623
|
* </li>
|
|
10446
10624
|
* </ul>
|
|
10625
|
+
* <p>RDS Custom for SQL Server supports the following values:</p>
|
|
10626
|
+
* <ul>
|
|
10627
|
+
* <li>
|
|
10628
|
+
* <p>
|
|
10629
|
+
* <code>custom-sqlserver-ee</code>
|
|
10630
|
+
* </p>
|
|
10631
|
+
* </li>
|
|
10632
|
+
* <li>
|
|
10633
|
+
* <p>
|
|
10634
|
+
* <code>custom-sqlserver-se</code>
|
|
10635
|
+
* </p>
|
|
10636
|
+
* </li>
|
|
10637
|
+
* <li>
|
|
10638
|
+
* <p>
|
|
10639
|
+
* <code>ccustom-sqlserver-web</code>
|
|
10640
|
+
* </p>
|
|
10641
|
+
* </li>
|
|
10642
|
+
* <li>
|
|
10643
|
+
* <p>
|
|
10644
|
+
* <code>custom-sqlserver-dev</code>
|
|
10645
|
+
* </p>
|
|
10646
|
+
* </li>
|
|
10647
|
+
* </ul>
|
|
10648
|
+
* <p>RDS for SQL Server supports only <code>sqlserver-dev-ee</code>.</p>
|
|
10447
10649
|
* @public
|
|
10448
10650
|
*/
|
|
10449
10651
|
Engine: string | undefined;
|
|
@@ -10916,7 +11118,7 @@ export interface DBInstanceAutomatedBackup {
|
|
|
10916
11118
|
*/
|
|
10917
11119
|
RestoreWindow?: RestoreWindow | undefined;
|
|
10918
11120
|
/**
|
|
10919
|
-
* <p>The allocated storage size for the
|
|
11121
|
+
* <p>The allocated storage size for the automated backup in gibibytes (GiB).</p>
|
|
10920
11122
|
* @public
|
|
10921
11123
|
*/
|
|
10922
11124
|
AllocatedStorage?: number | undefined;
|
|
@@ -11070,6 +11272,13 @@ export interface DBInstanceAutomatedBackup {
|
|
|
11070
11272
|
* @public
|
|
11071
11273
|
*/
|
|
11072
11274
|
DedicatedLogVolume?: boolean | undefined;
|
|
11275
|
+
/**
|
|
11276
|
+
* <p>The additional storage volumes associated with the automated backup.</p>
|
|
11277
|
+
* <p>Valid Values: <code>GP3 | IO2</code>
|
|
11278
|
+
* </p>
|
|
11279
|
+
* @public
|
|
11280
|
+
*/
|
|
11281
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
11073
11282
|
}
|
|
11074
11283
|
/**
|
|
11075
11284
|
* @public
|
|
@@ -16470,6 +16679,74 @@ export interface DescribeOrderableDBInstanceOptionsMessage {
|
|
|
16470
16679
|
*/
|
|
16471
16680
|
Marker?: string | undefined;
|
|
16472
16681
|
}
|
|
16682
|
+
/**
|
|
16683
|
+
* <p>Contains the available options for additional storage volumes for a DB instance class.</p>
|
|
16684
|
+
* @public
|
|
16685
|
+
*/
|
|
16686
|
+
export interface AvailableAdditionalStorageVolumesOption {
|
|
16687
|
+
/**
|
|
16688
|
+
* <p>Indicates whether the additional storage volume supports storage autoscaling.</p>
|
|
16689
|
+
* @public
|
|
16690
|
+
*/
|
|
16691
|
+
SupportsStorageAutoscaling?: boolean | undefined;
|
|
16692
|
+
/**
|
|
16693
|
+
* <p>Indicates whether the additional storage volume supports configurable storage throughput.</p>
|
|
16694
|
+
* @public
|
|
16695
|
+
*/
|
|
16696
|
+
SupportsStorageThroughput?: boolean | undefined;
|
|
16697
|
+
/**
|
|
16698
|
+
* <p>Indicates whether the additional storage volume supports provisioned IOPS.</p>
|
|
16699
|
+
* @public
|
|
16700
|
+
*/
|
|
16701
|
+
SupportsIops?: boolean | undefined;
|
|
16702
|
+
/**
|
|
16703
|
+
* <p>The storage type for the additional storage volume.</p>
|
|
16704
|
+
* <p>Valid Values: <code>GP3 | IO2</code>
|
|
16705
|
+
* </p>
|
|
16706
|
+
* @public
|
|
16707
|
+
*/
|
|
16708
|
+
StorageType?: string | undefined;
|
|
16709
|
+
/**
|
|
16710
|
+
* <p>The minimum amount of storage that you can allocate for the additional storage volume, in gibibytes (GiB).</p>
|
|
16711
|
+
* @public
|
|
16712
|
+
*/
|
|
16713
|
+
MinStorageSize?: number | undefined;
|
|
16714
|
+
/**
|
|
16715
|
+
* <p>The maximum amount of storage that you can allocate for the additional storage volume, in gibibytes (GiB).</p>
|
|
16716
|
+
* @public
|
|
16717
|
+
*/
|
|
16718
|
+
MaxStorageSize?: number | undefined;
|
|
16719
|
+
/**
|
|
16720
|
+
* <p>The minimum number of I/O operations per second (IOPS) that the additional storage volume supports.</p>
|
|
16721
|
+
* @public
|
|
16722
|
+
*/
|
|
16723
|
+
MinIops?: number | undefined;
|
|
16724
|
+
/**
|
|
16725
|
+
* <p>The maximum number of I/O operations per second (IOPS) that the additional storage volume supports.</p>
|
|
16726
|
+
* @public
|
|
16727
|
+
*/
|
|
16728
|
+
MaxIops?: number | undefined;
|
|
16729
|
+
/**
|
|
16730
|
+
* <p>The minimum ratio of I/O operations per second (IOPS) to gibibytes (GiB) of storage for the additional storage volume.</p>
|
|
16731
|
+
* @public
|
|
16732
|
+
*/
|
|
16733
|
+
MinIopsPerGib?: number | undefined;
|
|
16734
|
+
/**
|
|
16735
|
+
* <p>The maximum ratio of I/O operations per second (IOPS) to gibibytes (GiB) of storage for the additional storage volume.</p>
|
|
16736
|
+
* @public
|
|
16737
|
+
*/
|
|
16738
|
+
MaxIopsPerGib?: number | undefined;
|
|
16739
|
+
/**
|
|
16740
|
+
* <p>The minimum storage throughput that the additional storage volume supports, in mebibytes per second (MiBps).</p>
|
|
16741
|
+
* @public
|
|
16742
|
+
*/
|
|
16743
|
+
MinStorageThroughput?: number | undefined;
|
|
16744
|
+
/**
|
|
16745
|
+
* <p>The maximum storage throughput that the additional storage volume supports, in mebibytes per second (MiBps).</p>
|
|
16746
|
+
* @public
|
|
16747
|
+
*/
|
|
16748
|
+
MaxStorageThroughput?: number | undefined;
|
|
16749
|
+
}
|
|
16473
16750
|
/**
|
|
16474
16751
|
* <p>Contains the available processor feature information for the DB instance class of a DB instance.</p>
|
|
16475
16752
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html#USER_ConfigureProcessor">Configuring the
|
|
@@ -16702,6 +16979,16 @@ export interface OrderableDBInstanceOption {
|
|
|
16702
16979
|
* @public
|
|
16703
16980
|
*/
|
|
16704
16981
|
SupportsHttpEndpoint?: boolean | undefined;
|
|
16982
|
+
/**
|
|
16983
|
+
* <p>Indicates whether the DB instance class supports additional storage volumes.</p>
|
|
16984
|
+
* @public
|
|
16985
|
+
*/
|
|
16986
|
+
SupportsAdditionalStorageVolumes?: boolean | undefined;
|
|
16987
|
+
/**
|
|
16988
|
+
* <p>The available options for additional storage volumes for the DB instance class.</p>
|
|
16989
|
+
* @public
|
|
16990
|
+
*/
|
|
16991
|
+
AvailableAdditionalStorageVolumesOptions?: AvailableAdditionalStorageVolumesOption[] | undefined;
|
|
16705
16992
|
}
|
|
16706
16993
|
/**
|
|
16707
16994
|
* <p>Contains the result of a successful invocation of the <code>DescribeOrderableDBInstanceOptions</code> action.</p>
|
|
@@ -17299,57 +17586,3 @@ export interface TenantDatabasesMessage {
|
|
|
17299
17586
|
*/
|
|
17300
17587
|
TenantDatabases?: TenantDatabase[] | undefined;
|
|
17301
17588
|
}
|
|
17302
|
-
/**
|
|
17303
|
-
* <p></p>
|
|
17304
|
-
* @public
|
|
17305
|
-
*/
|
|
17306
|
-
export interface DescribeValidDBInstanceModificationsMessage {
|
|
17307
|
-
/**
|
|
17308
|
-
* <p>The customer identifier or the ARN of your DB instance.</p>
|
|
17309
|
-
* @public
|
|
17310
|
-
*/
|
|
17311
|
-
DBInstanceIdentifier: string | undefined;
|
|
17312
|
-
}
|
|
17313
|
-
/**
|
|
17314
|
-
* <p>A range of double values.</p>
|
|
17315
|
-
* @public
|
|
17316
|
-
*/
|
|
17317
|
-
export interface DoubleRange {
|
|
17318
|
-
/**
|
|
17319
|
-
* <p>The minimum value in the range.</p>
|
|
17320
|
-
* @public
|
|
17321
|
-
*/
|
|
17322
|
-
From?: number | undefined;
|
|
17323
|
-
/**
|
|
17324
|
-
* <p>The maximum value in the range.</p>
|
|
17325
|
-
* @public
|
|
17326
|
-
*/
|
|
17327
|
-
To?: number | undefined;
|
|
17328
|
-
}
|
|
17329
|
-
/**
|
|
17330
|
-
* <p>A range of integer values.</p>
|
|
17331
|
-
* @public
|
|
17332
|
-
*/
|
|
17333
|
-
export interface Range {
|
|
17334
|
-
/**
|
|
17335
|
-
* <p>The minimum value in the range.</p>
|
|
17336
|
-
* @public
|
|
17337
|
-
*/
|
|
17338
|
-
From?: number | undefined;
|
|
17339
|
-
/**
|
|
17340
|
-
* <p>The maximum value in the range.</p>
|
|
17341
|
-
* @public
|
|
17342
|
-
*/
|
|
17343
|
-
To?: number | undefined;
|
|
17344
|
-
/**
|
|
17345
|
-
* <p>The step value for the range.
|
|
17346
|
-
* For example, if you have a range of 5,000 to 10,000,
|
|
17347
|
-
* with a step value of 1,000,
|
|
17348
|
-
* the valid values start at 5,000 and step up by 1,000.
|
|
17349
|
-
* Even though 7,500 is within the range,
|
|
17350
|
-
* it isn't a valid value for the range.
|
|
17351
|
-
* The valid values are 5,000, 6,000, 7,000, 8,000...</p>
|
|
17352
|
-
* @public
|
|
17353
|
-
*/
|
|
17354
|
-
Step?: number | undefined;
|
|
17355
|
-
}
|