aws-sdk-core 2.11.402 → 2.11.403

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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "pagination": {
3
+ "GetTranscript": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ }
8
+ }
9
+ }
@@ -253,6 +253,19 @@
253
253
  "endpointdiscovery":{
254
254
  }
255
255
  },
256
+ "DescribeTableReplicaAutoScaling":{
257
+ "name":"DescribeTableReplicaAutoScaling",
258
+ "http":{
259
+ "method":"POST",
260
+ "requestUri":"/"
261
+ },
262
+ "input":{"shape":"DescribeTableReplicaAutoScalingInput"},
263
+ "output":{"shape":"DescribeTableReplicaAutoScalingOutput"},
264
+ "errors":[
265
+ {"shape":"ResourceNotFoundException"},
266
+ {"shape":"InternalServerError"}
267
+ ]
268
+ },
256
269
  "DescribeTimeToLive":{
257
270
  "name":"DescribeTimeToLive",
258
271
  "http":{
@@ -595,6 +608,21 @@
595
608
  "endpointdiscovery":{
596
609
  }
597
610
  },
611
+ "UpdateTableReplicaAutoScaling":{
612
+ "name":"UpdateTableReplicaAutoScaling",
613
+ "http":{
614
+ "method":"POST",
615
+ "requestUri":"/"
616
+ },
617
+ "input":{"shape":"UpdateTableReplicaAutoScalingInput"},
618
+ "output":{"shape":"UpdateTableReplicaAutoScalingOutput"},
619
+ "errors":[
620
+ {"shape":"ResourceNotFoundException"},
621
+ {"shape":"ResourceInUseException"},
622
+ {"shape":"LimitExceededException"},
623
+ {"shape":"InternalServerError"}
624
+ ]
625
+ },
598
626
  "UpdateTimeToLive":{
599
627
  "name":"UpdateTimeToLive",
600
628
  "http":{
@@ -1113,6 +1141,16 @@
1113
1141
  "RegionName":{"shape":"RegionName"}
1114
1142
  }
1115
1143
  },
1144
+ "CreateReplicationGroupMemberAction":{
1145
+ "type":"structure",
1146
+ "required":["RegionName"],
1147
+ "members":{
1148
+ "RegionName":{"shape":"RegionName"},
1149
+ "KMSMasterKeyId":{"shape":"KMSMasterKeyId"},
1150
+ "ProvisionedThroughputOverride":{"shape":"ProvisionedThroughputOverride"},
1151
+ "GlobalSecondaryIndexes":{"shape":"ReplicaGlobalSecondaryIndexList"}
1152
+ }
1153
+ },
1116
1154
  "CreateTableInput":{
1117
1155
  "type":"structure",
1118
1156
  "required":[
@@ -1209,6 +1247,13 @@
1209
1247
  "RegionName":{"shape":"RegionName"}
1210
1248
  }
1211
1249
  },
1250
+ "DeleteReplicationGroupMemberAction":{
1251
+ "type":"structure",
1252
+ "required":["RegionName"],
1253
+ "members":{
1254
+ "RegionName":{"shape":"RegionName"}
1255
+ }
1256
+ },
1212
1257
  "DeleteRequest":{
1213
1258
  "type":"structure",
1214
1259
  "required":["Key"],
@@ -1321,6 +1366,19 @@
1321
1366
  "Table":{"shape":"TableDescription"}
1322
1367
  }
1323
1368
  },
1369
+ "DescribeTableReplicaAutoScalingInput":{
1370
+ "type":"structure",
1371
+ "required":["TableName"],
1372
+ "members":{
1373
+ "TableName":{"shape":"TableName"}
1374
+ }
1375
+ },
1376
+ "DescribeTableReplicaAutoScalingOutput":{
1377
+ "type":"structure",
1378
+ "members":{
1379
+ "TableAutoScalingDescription":{"shape":"TableAutoScalingDescription"}
1380
+ }
1381
+ },
1324
1382
  "DescribeTimeToLiveInput":{
1325
1383
  "type":"structure",
1326
1384
  "required":["TableName"],
@@ -1432,6 +1490,18 @@
1432
1490
  "ProvisionedThroughput":{"shape":"ProvisionedThroughput"}
1433
1491
  }
1434
1492
  },
1493
+ "GlobalSecondaryIndexAutoScalingUpdate":{
1494
+ "type":"structure",
1495
+ "members":{
1496
+ "IndexName":{"shape":"IndexName"},
1497
+ "ProvisionedWriteCapacityAutoScalingUpdate":{"shape":"AutoScalingSettingsUpdate"}
1498
+ }
1499
+ },
1500
+ "GlobalSecondaryIndexAutoScalingUpdateList":{
1501
+ "type":"list",
1502
+ "member":{"shape":"GlobalSecondaryIndexAutoScalingUpdate"},
1503
+ "min":1
1504
+ },
1435
1505
  "GlobalSecondaryIndexDescription":{
1436
1506
  "type":"structure",
1437
1507
  "members":{
@@ -1928,6 +1998,12 @@
1928
1998
  },
1929
1999
  "exception":true
1930
2000
  },
2001
+ "ProvisionedThroughputOverride":{
2002
+ "type":"structure",
2003
+ "members":{
2004
+ "ReadCapacityUnits":{"shape":"PositiveLongObject"}
2005
+ }
2006
+ },
1931
2007
  "Put":{
1932
2008
  "type":"structure",
1933
2009
  "required":[
@@ -2029,16 +2105,98 @@
2029
2105
  },
2030
2106
  "exception":true
2031
2107
  },
2108
+ "ReplicaAutoScalingDescription":{
2109
+ "type":"structure",
2110
+ "members":{
2111
+ "RegionName":{"shape":"RegionName"},
2112
+ "GlobalSecondaryIndexes":{"shape":"ReplicaGlobalSecondaryIndexAutoScalingDescriptionList"},
2113
+ "ReplicaProvisionedReadCapacityAutoScalingSettings":{"shape":"AutoScalingSettingsDescription"},
2114
+ "ReplicaProvisionedWriteCapacityAutoScalingSettings":{"shape":"AutoScalingSettingsDescription"},
2115
+ "ReplicaStatus":{"shape":"ReplicaStatus"}
2116
+ }
2117
+ },
2118
+ "ReplicaAutoScalingDescriptionList":{
2119
+ "type":"list",
2120
+ "member":{"shape":"ReplicaAutoScalingDescription"}
2121
+ },
2122
+ "ReplicaAutoScalingUpdate":{
2123
+ "type":"structure",
2124
+ "required":["RegionName"],
2125
+ "members":{
2126
+ "RegionName":{"shape":"RegionName"},
2127
+ "ReplicaGlobalSecondaryIndexUpdates":{"shape":"ReplicaGlobalSecondaryIndexAutoScalingUpdateList"},
2128
+ "ReplicaProvisionedReadCapacityAutoScalingUpdate":{"shape":"AutoScalingSettingsUpdate"}
2129
+ }
2130
+ },
2131
+ "ReplicaAutoScalingUpdateList":{
2132
+ "type":"list",
2133
+ "member":{"shape":"ReplicaAutoScalingUpdate"},
2134
+ "min":1
2135
+ },
2032
2136
  "ReplicaDescription":{
2033
2137
  "type":"structure",
2034
2138
  "members":{
2035
- "RegionName":{"shape":"RegionName"}
2139
+ "RegionName":{"shape":"RegionName"},
2140
+ "ReplicaStatus":{"shape":"ReplicaStatus"},
2141
+ "ReplicaStatusDescription":{"shape":"ReplicaStatusDescription"},
2142
+ "ReplicaStatusPercentProgress":{"shape":"ReplicaStatusPercentProgress"},
2143
+ "KMSMasterKeyId":{"shape":"KMSMasterKeyId"},
2144
+ "ProvisionedThroughputOverride":{"shape":"ProvisionedThroughputOverride"},
2145
+ "GlobalSecondaryIndexes":{"shape":"ReplicaGlobalSecondaryIndexDescriptionList"}
2036
2146
  }
2037
2147
  },
2038
2148
  "ReplicaDescriptionList":{
2039
2149
  "type":"list",
2040
2150
  "member":{"shape":"ReplicaDescription"}
2041
2151
  },
2152
+ "ReplicaGlobalSecondaryIndex":{
2153
+ "type":"structure",
2154
+ "required":["IndexName"],
2155
+ "members":{
2156
+ "IndexName":{"shape":"IndexName"},
2157
+ "ProvisionedThroughputOverride":{"shape":"ProvisionedThroughputOverride"}
2158
+ }
2159
+ },
2160
+ "ReplicaGlobalSecondaryIndexAutoScalingDescription":{
2161
+ "type":"structure",
2162
+ "members":{
2163
+ "IndexName":{"shape":"IndexName"},
2164
+ "IndexStatus":{"shape":"IndexStatus"},
2165
+ "ProvisionedReadCapacityAutoScalingSettings":{"shape":"AutoScalingSettingsDescription"},
2166
+ "ProvisionedWriteCapacityAutoScalingSettings":{"shape":"AutoScalingSettingsDescription"}
2167
+ }
2168
+ },
2169
+ "ReplicaGlobalSecondaryIndexAutoScalingDescriptionList":{
2170
+ "type":"list",
2171
+ "member":{"shape":"ReplicaGlobalSecondaryIndexAutoScalingDescription"}
2172
+ },
2173
+ "ReplicaGlobalSecondaryIndexAutoScalingUpdate":{
2174
+ "type":"structure",
2175
+ "members":{
2176
+ "IndexName":{"shape":"IndexName"},
2177
+ "ProvisionedReadCapacityAutoScalingUpdate":{"shape":"AutoScalingSettingsUpdate"}
2178
+ }
2179
+ },
2180
+ "ReplicaGlobalSecondaryIndexAutoScalingUpdateList":{
2181
+ "type":"list",
2182
+ "member":{"shape":"ReplicaGlobalSecondaryIndexAutoScalingUpdate"}
2183
+ },
2184
+ "ReplicaGlobalSecondaryIndexDescription":{
2185
+ "type":"structure",
2186
+ "members":{
2187
+ "IndexName":{"shape":"IndexName"},
2188
+ "ProvisionedThroughputOverride":{"shape":"ProvisionedThroughputOverride"}
2189
+ }
2190
+ },
2191
+ "ReplicaGlobalSecondaryIndexDescriptionList":{
2192
+ "type":"list",
2193
+ "member":{"shape":"ReplicaGlobalSecondaryIndexDescription"}
2194
+ },
2195
+ "ReplicaGlobalSecondaryIndexList":{
2196
+ "type":"list",
2197
+ "member":{"shape":"ReplicaGlobalSecondaryIndex"},
2198
+ "min":1
2199
+ },
2042
2200
  "ReplicaGlobalSecondaryIndexSettingsDescription":{
2043
2201
  "type":"structure",
2044
2202
  "required":["IndexName"],
@@ -2119,11 +2277,14 @@
2119
2277
  "type":"string",
2120
2278
  "enum":[
2121
2279
  "CREATING",
2280
+ "CREATION_FAILED",
2122
2281
  "UPDATING",
2123
2282
  "DELETING",
2124
2283
  "ACTIVE"
2125
2284
  ]
2126
2285
  },
2286
+ "ReplicaStatusDescription":{"type":"string"},
2287
+ "ReplicaStatusPercentProgress":{"type":"string"},
2127
2288
  "ReplicaUpdate":{
2128
2289
  "type":"structure",
2129
2290
  "members":{
@@ -2135,6 +2296,19 @@
2135
2296
  "type":"list",
2136
2297
  "member":{"shape":"ReplicaUpdate"}
2137
2298
  },
2299
+ "ReplicationGroupUpdate":{
2300
+ "type":"structure",
2301
+ "members":{
2302
+ "Create":{"shape":"CreateReplicationGroupMemberAction"},
2303
+ "Update":{"shape":"UpdateReplicationGroupMemberAction"},
2304
+ "Delete":{"shape":"DeleteReplicationGroupMemberAction"}
2305
+ }
2306
+ },
2307
+ "ReplicationGroupUpdateList":{
2308
+ "type":"list",
2309
+ "member":{"shape":"ReplicationGroupUpdate"},
2310
+ "min":1
2311
+ },
2138
2312
  "RequestLimitExceeded":{
2139
2313
  "type":"structure",
2140
2314
  "members":{
@@ -2388,6 +2562,7 @@
2388
2562
  "StreamEnabled":{"type":"boolean"},
2389
2563
  "StreamSpecification":{
2390
2564
  "type":"structure",
2565
+ "required":["StreamEnabled"],
2391
2566
  "members":{
2392
2567
  "StreamEnabled":{"shape":"StreamEnabled"},
2393
2568
  "StreamViewType":{"shape":"StreamViewType"}
@@ -2416,6 +2591,14 @@
2416
2591
  "exception":true
2417
2592
  },
2418
2593
  "TableArn":{"type":"string"},
2594
+ "TableAutoScalingDescription":{
2595
+ "type":"structure",
2596
+ "members":{
2597
+ "TableName":{"shape":"TableName"},
2598
+ "TableStatus":{"shape":"TableStatus"},
2599
+ "Replicas":{"shape":"ReplicaAutoScalingDescriptionList"}
2600
+ }
2601
+ },
2419
2602
  "TableCreationDateTime":{"type":"timestamp"},
2420
2603
  "TableDescription":{
2421
2604
  "type":"structure",
@@ -2436,6 +2619,8 @@
2436
2619
  "StreamSpecification":{"shape":"StreamSpecification"},
2437
2620
  "LatestStreamLabel":{"shape":"String"},
2438
2621
  "LatestStreamArn":{"shape":"StreamArn"},
2622
+ "GlobalTableVersion":{"shape":"String"},
2623
+ "Replicas":{"shape":"ReplicaDescriptionList"},
2439
2624
  "RestoreSummary":{"shape":"RestoreSummary"},
2440
2625
  "SSEDescription":{"shape":"SSEDescription"}
2441
2626
  }
@@ -2759,6 +2944,16 @@
2759
2944
  "ItemCollectionMetrics":{"shape":"ItemCollectionMetrics"}
2760
2945
  }
2761
2946
  },
2947
+ "UpdateReplicationGroupMemberAction":{
2948
+ "type":"structure",
2949
+ "required":["RegionName"],
2950
+ "members":{
2951
+ "RegionName":{"shape":"RegionName"},
2952
+ "KMSMasterKeyId":{"shape":"KMSMasterKeyId"},
2953
+ "ProvisionedThroughputOverride":{"shape":"ProvisionedThroughputOverride"},
2954
+ "GlobalSecondaryIndexes":{"shape":"ReplicaGlobalSecondaryIndexList"}
2955
+ }
2956
+ },
2762
2957
  "UpdateTableInput":{
2763
2958
  "type":"structure",
2764
2959
  "required":["TableName"],
@@ -2769,7 +2964,8 @@
2769
2964
  "ProvisionedThroughput":{"shape":"ProvisionedThroughput"},
2770
2965
  "GlobalSecondaryIndexUpdates":{"shape":"GlobalSecondaryIndexUpdateList"},
2771
2966
  "StreamSpecification":{"shape":"StreamSpecification"},
2772
- "SSESpecification":{"shape":"SSESpecification"}
2967
+ "SSESpecification":{"shape":"SSESpecification"},
2968
+ "ReplicaUpdates":{"shape":"ReplicationGroupUpdateList"}
2773
2969
  }
2774
2970
  },
2775
2971
  "UpdateTableOutput":{
@@ -2778,6 +2974,22 @@
2778
2974
  "TableDescription":{"shape":"TableDescription"}
2779
2975
  }
2780
2976
  },
2977
+ "UpdateTableReplicaAutoScalingInput":{
2978
+ "type":"structure",
2979
+ "required":["TableName"],
2980
+ "members":{
2981
+ "GlobalSecondaryIndexUpdates":{"shape":"GlobalSecondaryIndexAutoScalingUpdateList"},
2982
+ "TableName":{"shape":"TableName"},
2983
+ "ProvisionedWriteCapacityAutoScalingUpdate":{"shape":"AutoScalingSettingsUpdate"},
2984
+ "ReplicaUpdates":{"shape":"ReplicaAutoScalingUpdateList"}
2985
+ }
2986
+ },
2987
+ "UpdateTableReplicaAutoScalingOutput":{
2988
+ "type":"structure",
2989
+ "members":{
2990
+ "TableAutoScalingDescription":{"shape":"TableAutoScalingDescription"}
2991
+ }
2992
+ },
2781
2993
  "UpdateTimeToLiveInput":{
2782
2994
  "type":"structure",
2783
2995
  "required":[
@@ -3507,7 +3507,6 @@
3507
3507
  "type":"structure",
3508
3508
  "required":[
3509
3509
  "AvailabilityZone",
3510
- "InstanceType",
3511
3510
  "Quantity"
3512
3511
  ],
3513
3512
  "members":{
@@ -3527,6 +3526,7 @@
3527
3526
  "shape":"String",
3528
3527
  "locationName":"instanceType"
3529
3528
  },
3529
+ "InstanceFamily":{"shape":"String"},
3530
3530
  "Quantity":{
3531
3531
  "shape":"Integer",
3532
3532
  "locationName":"quantity"
@@ -3594,6 +3594,13 @@
3594
3594
  "locationName":"item"
3595
3595
  }
3596
3596
  },
3597
+ "AllowsMultipleInstanceTypes":{
3598
+ "type":"string",
3599
+ "enum":[
3600
+ "on",
3601
+ "off"
3602
+ ]
3603
+ },
3597
3604
  "ApplySecurityGroupsToClientVpnTargetNetworkRequest":{
3598
3605
  "type":"structure",
3599
3606
  "required":[
@@ -5639,7 +5646,7 @@
5639
5646
  "locationName":"encrypted"
5640
5647
  },
5641
5648
  "KmsKeyId":{
5642
- "shape":"KmsKeyId",
5649
+ "shape":"String",
5643
5650
  "locationName":"kmsKeyId"
5644
5651
  },
5645
5652
  "Name":{"shape":"String"},
@@ -6140,7 +6147,7 @@
6140
6147
  "locationName":"dryRun"
6141
6148
  },
6142
6149
  "InstanceId":{
6143
- "shape":"InstanceId",
6150
+ "shape":"String",
6144
6151
  "locationName":"instanceId"
6145
6152
  },
6146
6153
  "Name":{
@@ -8203,7 +8210,7 @@
8203
8210
  "type":"structure",
8204
8211
  "required":["ImageId"],
8205
8212
  "members":{
8206
- "ImageId":{"shape":"ImageId"},
8213
+ "ImageId":{"shape":"String"},
8207
8214
  "DryRun":{
8208
8215
  "shape":"Boolean",
8209
8216
  "locationName":"dryRun"
@@ -14018,6 +14025,18 @@
14018
14025
  "HostRecovery":{
14019
14026
  "shape":"HostRecovery",
14020
14027
  "locationName":"hostRecovery"
14028
+ },
14029
+ "AllowsMultipleInstanceTypes":{
14030
+ "shape":"AllowsMultipleInstanceTypes",
14031
+ "locationName":"allowsMultipleInstanceTypes"
14032
+ },
14033
+ "OwnerId":{
14034
+ "shape":"String",
14035
+ "locationName":"ownerId"
14036
+ },
14037
+ "AvailabilityZoneId":{
14038
+ "shape":"String",
14039
+ "locationName":"availabilityZoneId"
14021
14040
  }
14022
14041
  }
14023
14042
  },
@@ -14032,6 +14051,10 @@
14032
14051
  "InstanceType":{
14033
14052
  "shape":"String",
14034
14053
  "locationName":"instanceType"
14054
+ },
14055
+ "OwnerId":{
14056
+ "shape":"String",
14057
+ "locationName":"ownerId"
14035
14058
  }
14036
14059
  }
14037
14060
  },
@@ -14100,6 +14123,10 @@
14100
14123
  "shape":"String",
14101
14124
  "locationName":"instanceType"
14102
14125
  },
14126
+ "InstanceFamily":{
14127
+ "shape":"String",
14128
+ "locationName":"instanceFamily"
14129
+ },
14103
14130
  "Sockets":{
14104
14131
  "shape":"Integer",
14105
14132
  "locationName":"sockets"
@@ -14570,6 +14597,35 @@
14570
14597
  }
14571
14598
  }
14572
14599
  },
14600
+ "ImportImageLicenseConfigurationRequest":{
14601
+ "type":"structure",
14602
+ "members":{
14603
+ "LicenseConfigurationArn":{"shape":"String"}
14604
+ }
14605
+ },
14606
+ "ImportImageLicenseConfigurationResponse":{
14607
+ "type":"structure",
14608
+ "members":{
14609
+ "LicenseConfigurationArn":{
14610
+ "shape":"String",
14611
+ "locationName":"licenseConfigurationArn"
14612
+ }
14613
+ }
14614
+ },
14615
+ "ImportImageLicenseSpecificationListRequest":{
14616
+ "type":"list",
14617
+ "member":{
14618
+ "shape":"ImportImageLicenseConfigurationRequest",
14619
+ "locationName":"item"
14620
+ }
14621
+ },
14622
+ "ImportImageLicenseSpecificationListResponse":{
14623
+ "type":"list",
14624
+ "member":{
14625
+ "shape":"ImportImageLicenseConfigurationResponse",
14626
+ "locationName":"item"
14627
+ }
14628
+ },
14573
14629
  "ImportImageRequest":{
14574
14630
  "type":"structure",
14575
14631
  "members":{
@@ -14584,10 +14640,11 @@
14584
14640
  "DryRun":{"shape":"Boolean"},
14585
14641
  "Encrypted":{"shape":"Boolean"},
14586
14642
  "Hypervisor":{"shape":"String"},
14587
- "KmsKeyId":{"shape":"KmsKeyId"},
14643
+ "KmsKeyId":{"shape":"String"},
14588
14644
  "LicenseType":{"shape":"String"},
14589
14645
  "Platform":{"shape":"String"},
14590
- "RoleName":{"shape":"String"}
14646
+ "RoleName":{"shape":"String"},
14647
+ "LicenseSpecifications":{"shape":"ImportImageLicenseSpecificationListRequest"}
14591
14648
  }
14592
14649
  },
14593
14650
  "ImportImageResult":{
@@ -14644,6 +14701,10 @@
14644
14701
  "StatusMessage":{
14645
14702
  "shape":"String",
14646
14703
  "locationName":"statusMessage"
14704
+ },
14705
+ "LicenseSpecifications":{
14706
+ "shape":"ImportImageLicenseSpecificationListResponse",
14707
+ "locationName":"licenseSpecifications"
14647
14708
  }
14648
14709
  }
14649
14710
  },
@@ -14701,6 +14762,10 @@
14701
14762
  "StatusMessage":{
14702
14763
  "shape":"String",
14703
14764
  "locationName":"statusMessage"
14765
+ },
14766
+ "LicenseSpecifications":{
14767
+ "shape":"ImportImageLicenseSpecificationListResponse",
14768
+ "locationName":"licenseSpecifications"
14704
14769
  }
14705
14770
  }
14706
14771
  },
@@ -16427,7 +16492,6 @@
16427
16492
  "disable"
16428
16493
  ]
16429
16494
  },
16430
- "KernelId":{"type":"string"},
16431
16495
  "KeyNameStringList":{
16432
16496
  "type":"list",
16433
16497
  "member":{
@@ -17462,7 +17526,9 @@
17462
17526
  "shape":"RequestHostIdList",
17463
17527
  "locationName":"hostId"
17464
17528
  },
17465
- "HostRecovery":{"shape":"HostRecovery"}
17529
+ "HostRecovery":{"shape":"HostRecovery"},
17530
+ "InstanceType":{"shape":"String"},
17531
+ "InstanceFamily":{"shape":"String"}
17466
17532
  }
17467
17533
  },
17468
17534
  "ModifyHostsResult":{
@@ -17517,7 +17583,7 @@
17517
17583
  "members":{
17518
17584
  "Attribute":{"shape":"String"},
17519
17585
  "Description":{"shape":"AttributeValue"},
17520
- "ImageId":{"shape":"ImageId"},
17586
+ "ImageId":{"shape":"String"},
17521
17587
  "LaunchPermission":{"shape":"LaunchPermissionModifications"},
17522
17588
  "OperationType":{"shape":"OperationType"},
17523
17589
  "ProductCodes":{
@@ -19862,7 +19928,6 @@
19862
19928
  "Windows (Amazon VPC)"
19863
19929
  ]
19864
19930
  },
19865
- "RamdiskId":{"type":"string"},
19866
19931
  "ReasonCodesList":{
19867
19932
  "type":"list",
19868
19933
  "member":{
@@ -19965,7 +20030,7 @@
19965
20030
  "locationName":"enaSupport"
19966
20031
  },
19967
20032
  "KernelId":{
19968
- "shape":"KernelId",
20033
+ "shape":"String",
19969
20034
  "locationName":"kernelId"
19970
20035
  },
19971
20036
  "Name":{
@@ -19977,7 +20042,7 @@
19977
20042
  "locationName":"BillingProduct"
19978
20043
  },
19979
20044
  "RamdiskId":{
19980
- "shape":"RamdiskId",
20045
+ "shape":"String",
19981
20046
  "locationName":"ramdiskId"
19982
20047
  },
19983
20048
  "RootDeviceName":{
@@ -21079,7 +21144,7 @@
21079
21144
  ],
21080
21145
  "members":{
21081
21146
  "Attribute":{"shape":"ResetImageAttributeName"},
21082
- "ImageId":{"shape":"ImageId"},
21147
+ "ImageId":{"shape":"String"},
21083
21148
  "DryRun":{
21084
21149
  "shape":"Boolean",
21085
21150
  "locationName":"dryRun"