File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed
codegen/sdk-codegen/aws-models Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -980,6 +980,7 @@ export enum ReplicationConfigurationDataPlaneRouting {
980
980
}
981
981
982
982
export enum ReplicationConfigurationDefaultLargeStagingDiskType {
983
+ AUTO = "AUTO" ,
983
984
GP2 = "GP2" ,
984
985
GP3 = "GP3" ,
985
986
ST1 = "ST1" ,
@@ -1240,7 +1241,7 @@ export namespace DeleteJobResponse {
1240
1241
1241
1242
export interface DeleteRecoveryInstanceRequest {
1242
1243
/**
1243
- * <p>RThe ID of the Recovery Instance to be deleted.</p>
1244
+ * <p>The ID of the Recovery Instance to be deleted.</p>
1244
1245
*/
1245
1246
recoveryInstanceID : string | undefined ;
1246
1247
}
@@ -2998,6 +2999,11 @@ export interface ReplicationConfigurationReplicatedDisk {
2998
2999
* <p>The throughput to use for the EBS volume in MiB/s. This parameter is valid only for gp3 volumes.</p>
2999
3000
*/
3000
3001
throughput ?: number ;
3002
+
3003
+ /**
3004
+ * <p>The Staging Disk EBS volume type to be used during replication when <code>stagingDiskType</code> is set to Auto. This is a read-only field.</p>
3005
+ */
3006
+ optimizedStagingDiskType ?: ReplicationConfigurationReplicatedDiskStagingDiskType | string ;
3001
3007
}
3002
3008
3003
3009
export namespace ReplicationConfigurationReplicatedDisk {
Original file line number Diff line number Diff line change @@ -3674,6 +3674,7 @@ const serializeAws_restJson1ReplicationConfigurationReplicatedDisk = (
3674
3674
...( input . deviceName != null && { deviceName : input . deviceName } ) ,
3675
3675
...( input . iops != null && { iops : input . iops } ) ,
3676
3676
...( input . isBootDisk != null && { isBootDisk : input . isBootDisk } ) ,
3677
+ ...( input . optimizedStagingDiskType != null && { optimizedStagingDiskType : input . optimizedStagingDiskType } ) ,
3677
3678
...( input . stagingDiskType != null && { stagingDiskType : input . stagingDiskType } ) ,
3678
3679
...( input . throughput != null && { throughput : input . throughput } ) ,
3679
3680
} ;
@@ -4383,6 +4384,7 @@ const deserializeAws_restJson1ReplicationConfigurationReplicatedDisk = (
4383
4384
deviceName : __expectString ( output . deviceName ) ,
4384
4385
iops : __expectLong ( output . iops ) ,
4385
4386
isBootDisk : __expectBoolean ( output . isBootDisk ) ,
4387
+ optimizedStagingDiskType : __expectString ( output . optimizedStagingDiskType ) ,
4386
4388
stagingDiskType : __expectString ( output . stagingDiskType ) ,
4387
4389
throughput : __expectLong ( output . throughput ) ,
4388
4390
} as any ;
Original file line number Diff line number Diff line change 854
854
"recoveryInstanceID" : {
855
855
"target" : " com.amazonaws.drs#RecoveryInstanceID" ,
856
856
"traits" : {
857
- "smithy.api#documentation" : " <p>RThe ID of the Recovery Instance to be deleted.</p>" ,
857
+ "smithy.api#documentation" : " <p>The ID of the Recovery Instance to be deleted.</p>" ,
858
858
"smithy.api#required" : {}
859
859
}
860
860
}
3943
3943
{
3944
3944
"value" : " ST1" ,
3945
3945
"name" : " ST1"
3946
+ },
3947
+ {
3948
+ "value" : " AUTO" ,
3949
+ "name" : " AUTO"
3946
3950
}
3947
3951
]
3948
3952
}
3994
3998
"traits" : {
3995
3999
"smithy.api#documentation" : " <p>The throughput to use for the EBS volume in MiB/s. This parameter is valid only for gp3 volumes.</p>"
3996
4000
}
4001
+ },
4002
+ "optimizedStagingDiskType" : {
4003
+ "target" : " com.amazonaws.drs#ReplicationConfigurationReplicatedDiskStagingDiskType" ,
4004
+ "traits" : {
4005
+ "smithy.api#documentation" : " <p>The Staging Disk EBS volume type to be used during replication when <code>stagingDiskType</code> is set to Auto. This is a read-only field.</p>"
4006
+ }
3997
4007
}
3998
4008
},
3999
4009
"traits" : {
You can’t perform that action at this time.
0 commit comments