@@ -858,6 +858,18 @@ export interface DBClusterSnapshot {
858
858
* the source cluster snapshot; otherwise, a null value.</p>
859
859
*/
860
860
SourceDBClusterSnapshotArn ?: string ;
861
+
862
+ /**
863
+ * @public
864
+ * <p>Storage type associated with your cluster snapshot </p>
865
+ * <p>For information on storage types for Amazon DocumentDB clusters, see
866
+ * Cluster storage configurations in the <i>Amazon DocumentDB Developer Guide</i>.</p>
867
+ * <p>Valid values for storage type - <code>standard | iopt1</code>
868
+ * </p>
869
+ * <p>Default value is <code>standard </code>
870
+ * </p>
871
+ */
872
+ StorageType ?: string ;
861
873
}
862
874
863
875
/**
@@ -1194,6 +1206,22 @@ export interface CreateDBClusterMessage {
1194
1206
* <p>The cluster identifier of the new global cluster.</p>
1195
1207
*/
1196
1208
GlobalClusterIdentifier ?: string ;
1209
+
1210
+ /**
1211
+ * @public
1212
+ * <p>The storage type to associate with the DB cluster.</p>
1213
+ * <p>For information on storage types for Amazon DocumentDB clusters, see
1214
+ * Cluster storage configurations in the <i>Amazon DocumentDB Developer Guide</i>.</p>
1215
+ * <p>Valid values for storage type - <code>standard | iopt1</code>
1216
+ * </p>
1217
+ * <p>Default value is <code>standard </code>
1218
+ * </p>
1219
+ * <note>
1220
+ * <p>When you create a DocumentDB DB cluster with the storage type set to <code>iopt1</code>, the storage type is returned
1221
+ * in the response. The storage type isn't returned when you set it to <code>standard</code>.</p>
1222
+ * </note>
1223
+ */
1224
+ StorageType ?: string ;
1197
1225
}
1198
1226
1199
1227
/**
@@ -1493,6 +1521,19 @@ export interface DBCluster {
1493
1521
* protects clusters from being accidentally deleted.</p>
1494
1522
*/
1495
1523
DeletionProtection ?: boolean ;
1524
+
1525
+ /**
1526
+ * @public
1527
+ * <p>Storage type associated with your cluster</p>
1528
+ * <p>Storage type associated with your cluster</p>
1529
+ * <p>For information on storage types for Amazon DocumentDB clusters, see
1530
+ * Cluster storage configurations in the <i>Amazon DocumentDB Developer Guide</i>.</p>
1531
+ * <p>Valid values for storage type - <code>standard | iopt1</code>
1532
+ * </p>
1533
+ * <p>Default value is <code>standard </code>
1534
+ * </p>
1535
+ */
1536
+ StorageType ?: string ;
1496
1537
}
1497
1538
1498
1539
/**
@@ -4851,6 +4892,12 @@ export interface OrderableDBInstanceOption {
4851
4892
* <p>Indicates whether an instance is in a virtual private cloud (VPC).</p>
4852
4893
*/
4853
4894
Vpc ?: boolean ;
4895
+
4896
+ /**
4897
+ * @public
4898
+ * <p>The storage type to associate with the DB cluster</p>
4899
+ */
4900
+ StorageType ?: string ;
4854
4901
}
4855
4902
4856
4903
/**
@@ -5231,6 +5278,18 @@ export interface ModifyDBClusterMessage {
5231
5278
* protects clusters from being accidentally deleted.</p>
5232
5279
*/
5233
5280
DeletionProtection ?: boolean ;
5281
+
5282
+ /**
5283
+ * @public
5284
+ * <p>The storage type to associate with the DB cluster.</p>
5285
+ * <p>For information on storage types for Amazon DocumentDB clusters, see
5286
+ * Cluster storage configurations in the <i>Amazon DocumentDB Developer Guide</i>.</p>
5287
+ * <p>Valid values for storage type - <code>standard | iopt1</code>
5288
+ * </p>
5289
+ * <p>Default value is <code>standard </code>
5290
+ * </p>
5291
+ */
5292
+ StorageType ?: string ;
5234
5293
}
5235
5294
5236
5295
/**
@@ -6031,6 +6090,18 @@ export interface RestoreDBClusterFromSnapshotMessage {
6031
6090
* hyphens.</p>
6032
6091
*/
6033
6092
DBClusterParameterGroupName ?: string ;
6093
+
6094
+ /**
6095
+ * @public
6096
+ * <p>The storage type to associate with the DB cluster.</p>
6097
+ * <p>For information on storage types for Amazon DocumentDB clusters, see
6098
+ * Cluster storage configurations in the <i>Amazon DocumentDB Developer Guide</i>.</p>
6099
+ * <p>Valid values for storage type - <code>standard | iopt1</code>
6100
+ * </p>
6101
+ * <p>Default value is <code>standard </code>
6102
+ * </p>
6103
+ */
6104
+ StorageType ?: string ;
6034
6105
}
6035
6106
6036
6107
/**
@@ -6196,6 +6267,18 @@ export interface RestoreDBClusterToPointInTimeMessage {
6196
6267
* <p>Specifies whether this cluster can be deleted. If <code>DeletionProtection</code> is enabled, the cluster cannot be deleted unless it is modified and <code>DeletionProtection</code> is disabled. <code>DeletionProtection</code> protects clusters from being accidentally deleted.</p>
6197
6268
*/
6198
6269
DeletionProtection ?: boolean ;
6270
+
6271
+ /**
6272
+ * @public
6273
+ * <p>The storage type to associate with the DB cluster.</p>
6274
+ * <p>For information on storage types for Amazon DocumentDB clusters, see
6275
+ * Cluster storage configurations in the <i>Amazon DocumentDB Developer Guide</i>.</p>
6276
+ * <p>Valid values for storage type - <code>standard | iopt1</code>
6277
+ * </p>
6278
+ * <p>Default value is <code>standard </code>
6279
+ * </p>
6280
+ */
6281
+ StorageType ?: string ;
6199
6282
}
6200
6283
6201
6284
/**
0 commit comments