aws-sdk-core 2.0.48 → 2.1.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.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6b86b078ddf7fc8ed23cd9dd7b284b8d08a48f7e
4
- data.tar.gz: c591c7af82ec564d49ad09cae0f0242d268f840e
3
+ metadata.gz: 13117254bdddddf4223c6846d2088631c80e1af4
4
+ data.tar.gz: b48fa027be73b0bf52b339c4a2a1905f36468dd1
5
5
  SHA512:
6
- metadata.gz: 9affe8127132b8c7545186bbb9b10ef2238657fe1e0a170b5571a78487df7715944738d30bc1aa700a829bed2e7803dcde8fc1805943bbe030c67f8a166ddeb8
7
- data.tar.gz: 52da64e13896d00f7080441dac72ea2ffc68e6695d070ff1dd8cc11726169b55e75aacd153339568e381ba6ef56aeda57f97268de6a723ab661936c046f60ca4
6
+ metadata.gz: 22e4d9b1d2e5d569043868acd8158e64dc9f6c9ad47cbfa23778d6537ee7d64457f1045e5991962fe74472d9fad31b4d815f169c6ec80e7e6ad668b79ef067ae
7
+ data.tar.gz: 6c5cc908a083a5935156212d58f737d3acd5204ad75211ddcf7f6422a1d954eeb6531fcab95c516ff9f5df7ef2adea18288841b083099004b9bb179812e8e171
@@ -1,4 +1,5 @@
1
1
  {
2
+ "version":"2.0",
2
3
  "metadata":{
3
4
  "apiVersion":"2011-01-01",
4
5
  "endpointPrefix":"autoscaling",
@@ -14,7 +15,41 @@
14
15
  "method":"POST",
15
16
  "requestUri":"/"
16
17
  },
17
- "input":{"shape":"AttachInstancesQuery"}
18
+ "input":{"shape":"AttachInstancesQuery"},
19
+ "errors":[
20
+ {
21
+ "shape":"ResourceContentionFault",
22
+ "error":{
23
+ "code":"ResourceContention",
24
+ "httpStatusCode":500,
25
+ "senderFault":true
26
+ },
27
+ "exception":true
28
+ }
29
+ ]
30
+ },
31
+ "AttachLoadBalancers":{
32
+ "name":"AttachLoadBalancers",
33
+ "http":{
34
+ "method":"POST",
35
+ "requestUri":"/"
36
+ },
37
+ "input":{"shape":"AttachLoadBalancersType"},
38
+ "output":{
39
+ "shape":"AttachLoadBalancersResultType",
40
+ "resultWrapper":"AttachLoadBalancersResult"
41
+ },
42
+ "errors":[
43
+ {
44
+ "shape":"ResourceContentionFault",
45
+ "error":{
46
+ "code":"ResourceContention",
47
+ "httpStatusCode":500,
48
+ "senderFault":true
49
+ },
50
+ "exception":true
51
+ }
52
+ ]
18
53
  },
19
54
  "CompleteLifecycleAction":{
20
55
  "name":"CompleteLifecycleAction",
@@ -26,7 +61,18 @@
26
61
  "output":{
27
62
  "shape":"CompleteLifecycleActionAnswer",
28
63
  "resultWrapper":"CompleteLifecycleActionResult"
29
- }
64
+ },
65
+ "errors":[
66
+ {
67
+ "shape":"ResourceContentionFault",
68
+ "error":{
69
+ "code":"ResourceContention",
70
+ "httpStatusCode":500,
71
+ "senderFault":true
72
+ },
73
+ "exception":true
74
+ }
75
+ ]
30
76
  },
31
77
  "CreateAutoScalingGroup":{
32
78
  "name":"CreateAutoScalingGroup",
@@ -53,6 +99,15 @@
53
99
  "senderFault":true
54
100
  },
55
101
  "exception":true
102
+ },
103
+ {
104
+ "shape":"ResourceContentionFault",
105
+ "error":{
106
+ "code":"ResourceContention",
107
+ "httpStatusCode":500,
108
+ "senderFault":true
109
+ },
110
+ "exception":true
56
111
  }
57
112
  ]
58
113
  },
@@ -81,6 +136,15 @@
81
136
  "senderFault":true
82
137
  },
83
138
  "exception":true
139
+ },
140
+ {
141
+ "shape":"ResourceContentionFault",
142
+ "error":{
143
+ "code":"ResourceContention",
144
+ "httpStatusCode":500,
145
+ "senderFault":true
146
+ },
147
+ "exception":true
84
148
  }
85
149
  ]
86
150
  },
@@ -109,6 +173,15 @@
109
173
  "senderFault":true
110
174
  },
111
175
  "exception":true
176
+ },
177
+ {
178
+ "shape":"ResourceContentionFault",
179
+ "error":{
180
+ "code":"ResourceContention",
181
+ "httpStatusCode":500,
182
+ "senderFault":true
183
+ },
184
+ "exception":true
112
185
  }
113
186
  ]
114
187
  },
@@ -137,6 +210,15 @@
137
210
  "senderFault":true
138
211
  },
139
212
  "exception":true
213
+ },
214
+ {
215
+ "shape":"ResourceContentionFault",
216
+ "error":{
217
+ "code":"ResourceContention",
218
+ "httpStatusCode":500,
219
+ "senderFault":true
220
+ },
221
+ "exception":true
140
222
  }
141
223
  ]
142
224
  },
@@ -156,6 +238,15 @@
156
238
  "senderFault":true
157
239
  },
158
240
  "exception":true
241
+ },
242
+ {
243
+ "shape":"ResourceContentionFault",
244
+ "error":{
245
+ "code":"ResourceContention",
246
+ "httpStatusCode":500,
247
+ "senderFault":true
248
+ },
249
+ "exception":true
159
250
  }
160
251
  ]
161
252
  },
@@ -169,7 +260,18 @@
169
260
  "output":{
170
261
  "shape":"DeleteLifecycleHookAnswer",
171
262
  "resultWrapper":"DeleteLifecycleHookResult"
172
- }
263
+ },
264
+ "errors":[
265
+ {
266
+ "shape":"ResourceContentionFault",
267
+ "error":{
268
+ "code":"ResourceContention",
269
+ "httpStatusCode":500,
270
+ "senderFault":true
271
+ },
272
+ "exception":true
273
+ }
274
+ ]
173
275
  },
174
276
  "DeleteNotificationConfiguration":{
175
277
  "name":"DeleteNotificationConfiguration",
@@ -177,7 +279,18 @@
177
279
  "method":"POST",
178
280
  "requestUri":"/"
179
281
  },
180
- "input":{"shape":"DeleteNotificationConfigurationType"}
282
+ "input":{"shape":"DeleteNotificationConfigurationType"},
283
+ "errors":[
284
+ {
285
+ "shape":"ResourceContentionFault",
286
+ "error":{
287
+ "code":"ResourceContention",
288
+ "httpStatusCode":500,
289
+ "senderFault":true
290
+ },
291
+ "exception":true
292
+ }
293
+ ]
181
294
  },
182
295
  "DeletePolicy":{
183
296
  "name":"DeletePolicy",
@@ -185,7 +298,18 @@
185
298
  "method":"POST",
186
299
  "requestUri":"/"
187
300
  },
188
- "input":{"shape":"DeletePolicyType"}
301
+ "input":{"shape":"DeletePolicyType"},
302
+ "errors":[
303
+ {
304
+ "shape":"ResourceContentionFault",
305
+ "error":{
306
+ "code":"ResourceContention",
307
+ "httpStatusCode":500,
308
+ "senderFault":true
309
+ },
310
+ "exception":true
311
+ }
312
+ ]
189
313
  },
190
314
  "DeleteScheduledAction":{
191
315
  "name":"DeleteScheduledAction",
@@ -193,7 +317,18 @@
193
317
  "method":"POST",
194
318
  "requestUri":"/"
195
319
  },
196
- "input":{"shape":"DeleteScheduledActionType"}
320
+ "input":{"shape":"DeleteScheduledActionType"},
321
+ "errors":[
322
+ {
323
+ "shape":"ResourceContentionFault",
324
+ "error":{
325
+ "code":"ResourceContention",
326
+ "httpStatusCode":500,
327
+ "senderFault":true
328
+ },
329
+ "exception":true
330
+ }
331
+ ]
197
332
  },
198
333
  "DeleteTags":{
199
334
  "name":"DeleteTags",
@@ -201,7 +336,18 @@
201
336
  "method":"POST",
202
337
  "requestUri":"/"
203
338
  },
204
- "input":{"shape":"DeleteTagsType"}
339
+ "input":{"shape":"DeleteTagsType"},
340
+ "errors":[
341
+ {
342
+ "shape":"ResourceContentionFault",
343
+ "error":{
344
+ "code":"ResourceContention",
345
+ "httpStatusCode":500,
346
+ "senderFault":true
347
+ },
348
+ "exception":true
349
+ }
350
+ ]
205
351
  },
206
352
  "DescribeAccountLimits":{
207
353
  "name":"DescribeAccountLimits",
@@ -212,7 +358,18 @@
212
358
  "output":{
213
359
  "shape":"DescribeAccountLimitsAnswer",
214
360
  "resultWrapper":"DescribeAccountLimitsResult"
215
- }
361
+ },
362
+ "errors":[
363
+ {
364
+ "shape":"ResourceContentionFault",
365
+ "error":{
366
+ "code":"ResourceContention",
367
+ "httpStatusCode":500,
368
+ "senderFault":true
369
+ },
370
+ "exception":true
371
+ }
372
+ ]
216
373
  },
217
374
  "DescribeAdjustmentTypes":{
218
375
  "name":"DescribeAdjustmentTypes",
@@ -223,7 +380,18 @@
223
380
  "output":{
224
381
  "shape":"DescribeAdjustmentTypesAnswer",
225
382
  "resultWrapper":"DescribeAdjustmentTypesResult"
226
- }
383
+ },
384
+ "errors":[
385
+ {
386
+ "shape":"ResourceContentionFault",
387
+ "error":{
388
+ "code":"ResourceContention",
389
+ "httpStatusCode":500,
390
+ "senderFault":true
391
+ },
392
+ "exception":true
393
+ }
394
+ ]
227
395
  },
228
396
  "DescribeAutoScalingGroups":{
229
397
  "name":"DescribeAutoScalingGroups",
@@ -245,6 +413,15 @@
245
413
  "senderFault":true
246
414
  },
247
415
  "exception":true
416
+ },
417
+ {
418
+ "shape":"ResourceContentionFault",
419
+ "error":{
420
+ "code":"ResourceContention",
421
+ "httpStatusCode":500,
422
+ "senderFault":true
423
+ },
424
+ "exception":true
248
425
  }
249
426
  ]
250
427
  },
@@ -268,6 +445,15 @@
268
445
  "senderFault":true
269
446
  },
270
447
  "exception":true
448
+ },
449
+ {
450
+ "shape":"ResourceContentionFault",
451
+ "error":{
452
+ "code":"ResourceContention",
453
+ "httpStatusCode":500,
454
+ "senderFault":true
455
+ },
456
+ "exception":true
271
457
  }
272
458
  ]
273
459
  },
@@ -280,7 +466,18 @@
280
466
  "output":{
281
467
  "shape":"DescribeAutoScalingNotificationTypesAnswer",
282
468
  "resultWrapper":"DescribeAutoScalingNotificationTypesResult"
283
- }
469
+ },
470
+ "errors":[
471
+ {
472
+ "shape":"ResourceContentionFault",
473
+ "error":{
474
+ "code":"ResourceContention",
475
+ "httpStatusCode":500,
476
+ "senderFault":true
477
+ },
478
+ "exception":true
479
+ }
480
+ ]
284
481
  },
285
482
  "DescribeLaunchConfigurations":{
286
483
  "name":"DescribeLaunchConfigurations",
@@ -302,6 +499,15 @@
302
499
  "senderFault":true
303
500
  },
304
501
  "exception":true
502
+ },
503
+ {
504
+ "shape":"ResourceContentionFault",
505
+ "error":{
506
+ "code":"ResourceContention",
507
+ "httpStatusCode":500,
508
+ "senderFault":true
509
+ },
510
+ "exception":true
305
511
  }
306
512
  ]
307
513
  },
@@ -314,7 +520,18 @@
314
520
  "output":{
315
521
  "shape":"DescribeLifecycleHookTypesAnswer",
316
522
  "resultWrapper":"DescribeLifecycleHookTypesResult"
317
- }
523
+ },
524
+ "errors":[
525
+ {
526
+ "shape":"ResourceContentionFault",
527
+ "error":{
528
+ "code":"ResourceContention",
529
+ "httpStatusCode":500,
530
+ "senderFault":true
531
+ },
532
+ "exception":true
533
+ }
534
+ ]
318
535
  },
319
536
  "DescribeLifecycleHooks":{
320
537
  "name":"DescribeLifecycleHooks",
@@ -326,7 +543,41 @@
326
543
  "output":{
327
544
  "shape":"DescribeLifecycleHooksAnswer",
328
545
  "resultWrapper":"DescribeLifecycleHooksResult"
329
- }
546
+ },
547
+ "errors":[
548
+ {
549
+ "shape":"ResourceContentionFault",
550
+ "error":{
551
+ "code":"ResourceContention",
552
+ "httpStatusCode":500,
553
+ "senderFault":true
554
+ },
555
+ "exception":true
556
+ }
557
+ ]
558
+ },
559
+ "DescribeLoadBalancers":{
560
+ "name":"DescribeLoadBalancers",
561
+ "http":{
562
+ "method":"POST",
563
+ "requestUri":"/"
564
+ },
565
+ "input":{"shape":"DescribeLoadBalancersRequest"},
566
+ "output":{
567
+ "shape":"DescribeLoadBalancersResponse",
568
+ "resultWrapper":"DescribeLoadBalancersResult"
569
+ },
570
+ "errors":[
571
+ {
572
+ "shape":"ResourceContentionFault",
573
+ "error":{
574
+ "code":"ResourceContention",
575
+ "httpStatusCode":500,
576
+ "senderFault":true
577
+ },
578
+ "exception":true
579
+ }
580
+ ]
330
581
  },
331
582
  "DescribeMetricCollectionTypes":{
332
583
  "name":"DescribeMetricCollectionTypes",
@@ -337,7 +588,18 @@
337
588
  "output":{
338
589
  "shape":"DescribeMetricCollectionTypesAnswer",
339
590
  "resultWrapper":"DescribeMetricCollectionTypesResult"
340
- }
591
+ },
592
+ "errors":[
593
+ {
594
+ "shape":"ResourceContentionFault",
595
+ "error":{
596
+ "code":"ResourceContention",
597
+ "httpStatusCode":500,
598
+ "senderFault":true
599
+ },
600
+ "exception":true
601
+ }
602
+ ]
341
603
  },
342
604
  "DescribeNotificationConfigurations":{
343
605
  "name":"DescribeNotificationConfigurations",
@@ -359,6 +621,15 @@
359
621
  "senderFault":true
360
622
  },
361
623
  "exception":true
624
+ },
625
+ {
626
+ "shape":"ResourceContentionFault",
627
+ "error":{
628
+ "code":"ResourceContention",
629
+ "httpStatusCode":500,
630
+ "senderFault":true
631
+ },
632
+ "exception":true
362
633
  }
363
634
  ]
364
635
  },
@@ -382,6 +653,15 @@
382
653
  "senderFault":true
383
654
  },
384
655
  "exception":true
656
+ },
657
+ {
658
+ "shape":"ResourceContentionFault",
659
+ "error":{
660
+ "code":"ResourceContention",
661
+ "httpStatusCode":500,
662
+ "senderFault":true
663
+ },
664
+ "exception":true
385
665
  }
386
666
  ]
387
667
  },
@@ -405,6 +685,15 @@
405
685
  "senderFault":true
406
686
  },
407
687
  "exception":true
688
+ },
689
+ {
690
+ "shape":"ResourceContentionFault",
691
+ "error":{
692
+ "code":"ResourceContention",
693
+ "httpStatusCode":500,
694
+ "senderFault":true
695
+ },
696
+ "exception":true
408
697
  }
409
698
  ]
410
699
  },
@@ -417,7 +706,18 @@
417
706
  "output":{
418
707
  "shape":"ProcessesType",
419
708
  "resultWrapper":"DescribeScalingProcessTypesResult"
420
- }
709
+ },
710
+ "errors":[
711
+ {
712
+ "shape":"ResourceContentionFault",
713
+ "error":{
714
+ "code":"ResourceContention",
715
+ "httpStatusCode":500,
716
+ "senderFault":true
717
+ },
718
+ "exception":true
719
+ }
720
+ ]
421
721
  },
422
722
  "DescribeScheduledActions":{
423
723
  "name":"DescribeScheduledActions",
@@ -439,6 +739,15 @@
439
739
  "senderFault":true
440
740
  },
441
741
  "exception":true
742
+ },
743
+ {
744
+ "shape":"ResourceContentionFault",
745
+ "error":{
746
+ "code":"ResourceContention",
747
+ "httpStatusCode":500,
748
+ "senderFault":true
749
+ },
750
+ "exception":true
442
751
  }
443
752
  ]
444
753
  },
@@ -462,6 +771,15 @@
462
771
  "senderFault":true
463
772
  },
464
773
  "exception":true
774
+ },
775
+ {
776
+ "shape":"ResourceContentionFault",
777
+ "error":{
778
+ "code":"ResourceContention",
779
+ "httpStatusCode":500,
780
+ "senderFault":true
781
+ },
782
+ "exception":true
465
783
  }
466
784
  ]
467
785
  },
@@ -474,7 +792,18 @@
474
792
  "output":{
475
793
  "shape":"DescribeTerminationPolicyTypesAnswer",
476
794
  "resultWrapper":"DescribeTerminationPolicyTypesResult"
477
- }
795
+ },
796
+ "errors":[
797
+ {
798
+ "shape":"ResourceContentionFault",
799
+ "error":{
800
+ "code":"ResourceContention",
801
+ "httpStatusCode":500,
802
+ "senderFault":true
803
+ },
804
+ "exception":true
805
+ }
806
+ ]
478
807
  },
479
808
  "DetachInstances":{
480
809
  "name":"DetachInstances",
@@ -486,7 +815,41 @@
486
815
  "output":{
487
816
  "shape":"DetachInstancesAnswer",
488
817
  "resultWrapper":"DetachInstancesResult"
489
- }
818
+ },
819
+ "errors":[
820
+ {
821
+ "shape":"ResourceContentionFault",
822
+ "error":{
823
+ "code":"ResourceContention",
824
+ "httpStatusCode":500,
825
+ "senderFault":true
826
+ },
827
+ "exception":true
828
+ }
829
+ ]
830
+ },
831
+ "DetachLoadBalancers":{
832
+ "name":"DetachLoadBalancers",
833
+ "http":{
834
+ "method":"POST",
835
+ "requestUri":"/"
836
+ },
837
+ "input":{"shape":"DetachLoadBalancersType"},
838
+ "output":{
839
+ "shape":"DetachLoadBalancersResultType",
840
+ "resultWrapper":"DetachLoadBalancersResult"
841
+ },
842
+ "errors":[
843
+ {
844
+ "shape":"ResourceContentionFault",
845
+ "error":{
846
+ "code":"ResourceContention",
847
+ "httpStatusCode":500,
848
+ "senderFault":true
849
+ },
850
+ "exception":true
851
+ }
852
+ ]
490
853
  },
491
854
  "DisableMetricsCollection":{
492
855
  "name":"DisableMetricsCollection",
@@ -494,7 +857,18 @@
494
857
  "method":"POST",
495
858
  "requestUri":"/"
496
859
  },
497
- "input":{"shape":"DisableMetricsCollectionQuery"}
860
+ "input":{"shape":"DisableMetricsCollectionQuery"},
861
+ "errors":[
862
+ {
863
+ "shape":"ResourceContentionFault",
864
+ "error":{
865
+ "code":"ResourceContention",
866
+ "httpStatusCode":500,
867
+ "senderFault":true
868
+ },
869
+ "exception":true
870
+ }
871
+ ]
498
872
  },
499
873
  "EnableMetricsCollection":{
500
874
  "name":"EnableMetricsCollection",
@@ -502,7 +876,18 @@
502
876
  "method":"POST",
503
877
  "requestUri":"/"
504
878
  },
505
- "input":{"shape":"EnableMetricsCollectionQuery"}
879
+ "input":{"shape":"EnableMetricsCollectionQuery"},
880
+ "errors":[
881
+ {
882
+ "shape":"ResourceContentionFault",
883
+ "error":{
884
+ "code":"ResourceContention",
885
+ "httpStatusCode":500,
886
+ "senderFault":true
887
+ },
888
+ "exception":true
889
+ }
890
+ ]
506
891
  },
507
892
  "EnterStandby":{
508
893
  "name":"EnterStandby",
@@ -514,7 +899,18 @@
514
899
  "output":{
515
900
  "shape":"EnterStandbyAnswer",
516
901
  "resultWrapper":"EnterStandbyResult"
517
- }
902
+ },
903
+ "errors":[
904
+ {
905
+ "shape":"ResourceContentionFault",
906
+ "error":{
907
+ "code":"ResourceContention",
908
+ "httpStatusCode":500,
909
+ "senderFault":true
910
+ },
911
+ "exception":true
912
+ }
913
+ ]
518
914
  },
519
915
  "ExecutePolicy":{
520
916
  "name":"ExecutePolicy",
@@ -532,6 +928,15 @@
532
928
  "senderFault":true
533
929
  },
534
930
  "exception":true
931
+ },
932
+ {
933
+ "shape":"ResourceContentionFault",
934
+ "error":{
935
+ "code":"ResourceContention",
936
+ "httpStatusCode":500,
937
+ "senderFault":true
938
+ },
939
+ "exception":true
535
940
  }
536
941
  ]
537
942
  },
@@ -545,7 +950,18 @@
545
950
  "output":{
546
951
  "shape":"ExitStandbyAnswer",
547
952
  "resultWrapper":"ExitStandbyResult"
548
- }
953
+ },
954
+ "errors":[
955
+ {
956
+ "shape":"ResourceContentionFault",
957
+ "error":{
958
+ "code":"ResourceContention",
959
+ "httpStatusCode":500,
960
+ "senderFault":true
961
+ },
962
+ "exception":true
963
+ }
964
+ ]
549
965
  },
550
966
  "PutLifecycleHook":{
551
967
  "name":"PutLifecycleHook",
@@ -567,6 +983,15 @@
567
983
  "senderFault":true
568
984
  },
569
985
  "exception":true
986
+ },
987
+ {
988
+ "shape":"ResourceContentionFault",
989
+ "error":{
990
+ "code":"ResourceContention",
991
+ "httpStatusCode":500,
992
+ "senderFault":true
993
+ },
994
+ "exception":true
570
995
  }
571
996
  ]
572
997
  },
@@ -586,6 +1011,15 @@
586
1011
  "senderFault":true
587
1012
  },
588
1013
  "exception":true
1014
+ },
1015
+ {
1016
+ "shape":"ResourceContentionFault",
1017
+ "error":{
1018
+ "code":"ResourceContention",
1019
+ "httpStatusCode":500,
1020
+ "senderFault":true
1021
+ },
1022
+ "exception":true
589
1023
  }
590
1024
  ]
591
1025
  },
@@ -609,6 +1043,15 @@
609
1043
  "senderFault":true
610
1044
  },
611
1045
  "exception":true
1046
+ },
1047
+ {
1048
+ "shape":"ResourceContentionFault",
1049
+ "error":{
1050
+ "code":"ResourceContention",
1051
+ "httpStatusCode":500,
1052
+ "senderFault":true
1053
+ },
1054
+ "exception":true
612
1055
  }
613
1056
  ]
614
1057
  },
@@ -637,6 +1080,15 @@
637
1080
  "senderFault":true
638
1081
  },
639
1082
  "exception":true
1083
+ },
1084
+ {
1085
+ "shape":"ResourceContentionFault",
1086
+ "error":{
1087
+ "code":"ResourceContention",
1088
+ "httpStatusCode":500,
1089
+ "senderFault":true
1090
+ },
1091
+ "exception":true
640
1092
  }
641
1093
  ]
642
1094
  },
@@ -650,7 +1102,18 @@
650
1102
  "output":{
651
1103
  "shape":"RecordLifecycleActionHeartbeatAnswer",
652
1104
  "resultWrapper":"RecordLifecycleActionHeartbeatResult"
653
- }
1105
+ },
1106
+ "errors":[
1107
+ {
1108
+ "shape":"ResourceContentionFault",
1109
+ "error":{
1110
+ "code":"ResourceContention",
1111
+ "httpStatusCode":500,
1112
+ "senderFault":true
1113
+ },
1114
+ "exception":true
1115
+ }
1116
+ ]
654
1117
  },
655
1118
  "ResumeProcesses":{
656
1119
  "name":"ResumeProcesses",
@@ -658,7 +1121,27 @@
658
1121
  "method":"POST",
659
1122
  "requestUri":"/"
660
1123
  },
661
- "input":{"shape":"ScalingProcessQuery"}
1124
+ "input":{"shape":"ScalingProcessQuery"},
1125
+ "errors":[
1126
+ {
1127
+ "shape":"ResourceInUseFault",
1128
+ "error":{
1129
+ "code":"ResourceInUse",
1130
+ "httpStatusCode":400,
1131
+ "senderFault":true
1132
+ },
1133
+ "exception":true
1134
+ },
1135
+ {
1136
+ "shape":"ResourceContentionFault",
1137
+ "error":{
1138
+ "code":"ResourceContention",
1139
+ "httpStatusCode":500,
1140
+ "senderFault":true
1141
+ },
1142
+ "exception":true
1143
+ }
1144
+ ]
662
1145
  },
663
1146
  "SetDesiredCapacity":{
664
1147
  "name":"SetDesiredCapacity",
@@ -676,6 +1159,15 @@
676
1159
  "senderFault":true
677
1160
  },
678
1161
  "exception":true
1162
+ },
1163
+ {
1164
+ "shape":"ResourceContentionFault",
1165
+ "error":{
1166
+ "code":"ResourceContention",
1167
+ "httpStatusCode":500,
1168
+ "senderFault":true
1169
+ },
1170
+ "exception":true
679
1171
  }
680
1172
  ]
681
1173
  },
@@ -685,7 +1177,18 @@
685
1177
  "method":"POST",
686
1178
  "requestUri":"/"
687
1179
  },
688
- "input":{"shape":"SetInstanceHealthQuery"}
1180
+ "input":{"shape":"SetInstanceHealthQuery"},
1181
+ "errors":[
1182
+ {
1183
+ "shape":"ResourceContentionFault",
1184
+ "error":{
1185
+ "code":"ResourceContention",
1186
+ "httpStatusCode":500,
1187
+ "senderFault":true
1188
+ },
1189
+ "exception":true
1190
+ }
1191
+ ]
689
1192
  },
690
1193
  "SuspendProcesses":{
691
1194
  "name":"SuspendProcesses",
@@ -693,7 +1196,27 @@
693
1196
  "method":"POST",
694
1197
  "requestUri":"/"
695
1198
  },
696
- "input":{"shape":"ScalingProcessQuery"}
1199
+ "input":{"shape":"ScalingProcessQuery"},
1200
+ "errors":[
1201
+ {
1202
+ "shape":"ResourceInUseFault",
1203
+ "error":{
1204
+ "code":"ResourceInUse",
1205
+ "httpStatusCode":400,
1206
+ "senderFault":true
1207
+ },
1208
+ "exception":true
1209
+ },
1210
+ {
1211
+ "shape":"ResourceContentionFault",
1212
+ "error":{
1213
+ "code":"ResourceContention",
1214
+ "httpStatusCode":500,
1215
+ "senderFault":true
1216
+ },
1217
+ "exception":true
1218
+ }
1219
+ ]
697
1220
  },
698
1221
  "TerminateInstanceInAutoScalingGroup":{
699
1222
  "name":"TerminateInstanceInAutoScalingGroup",
@@ -715,6 +1238,15 @@
715
1238
  "senderFault":true
716
1239
  },
717
1240
  "exception":true
1241
+ },
1242
+ {
1243
+ "shape":"ResourceContentionFault",
1244
+ "error":{
1245
+ "code":"ResourceContention",
1246
+ "httpStatusCode":500,
1247
+ "senderFault":true
1248
+ },
1249
+ "exception":true
718
1250
  }
719
1251
  ]
720
1252
  },
@@ -734,6 +1266,15 @@
734
1266
  "senderFault":true
735
1267
  },
736
1268
  "exception":true
1269
+ },
1270
+ {
1271
+ "shape":"ResourceContentionFault",
1272
+ "error":{
1273
+ "code":"ResourceContention",
1274
+ "httpStatusCode":500,
1275
+ "senderFault":true
1276
+ },
1277
+ "exception":true
737
1278
  }
738
1279
  ]
739
1280
  }
@@ -831,6 +1372,18 @@
831
1372
  "AutoScalingGroupName":{"shape":"ResourceName"}
832
1373
  }
833
1374
  },
1375
+ "AttachLoadBalancersResultType":{
1376
+ "type":"structure",
1377
+ "members":{
1378
+ }
1379
+ },
1380
+ "AttachLoadBalancersType":{
1381
+ "type":"structure",
1382
+ "members":{
1383
+ "AutoScalingGroupName":{"shape":"ResourceName"},
1384
+ "LoadBalancerNames":{"shape":"LoadBalancerNames"}
1385
+ }
1386
+ },
834
1387
  "AutoScalingGroup":{
835
1388
  "type":"structure",
836
1389
  "required":[
@@ -937,7 +1490,7 @@
937
1490
  "BlockDeviceEbsIops":{
938
1491
  "type":"integer",
939
1492
  "min":100,
940
- "max":30000
1493
+ "max":20000
941
1494
  },
942
1495
  "BlockDeviceEbsVolumeSize":{
943
1496
  "type":"integer",
@@ -1149,6 +1702,22 @@
1149
1702
  "LifecycleHookNames":{"shape":"LifecycleHookNames"}
1150
1703
  }
1151
1704
  },
1705
+ "DescribeLoadBalancersRequest":{
1706
+ "type":"structure",
1707
+ "required":["AutoScalingGroupName"],
1708
+ "members":{
1709
+ "AutoScalingGroupName":{"shape":"ResourceName"},
1710
+ "NextToken":{"shape":"XmlString"},
1711
+ "MaxRecords":{"shape":"MaxRecords"}
1712
+ }
1713
+ },
1714
+ "DescribeLoadBalancersResponse":{
1715
+ "type":"structure",
1716
+ "members":{
1717
+ "LoadBalancers":{"shape":"LoadBalancerStates"},
1718
+ "NextToken":{"shape":"XmlString"}
1719
+ }
1720
+ },
1152
1721
  "DescribeMetricCollectionTypesAnswer":{
1153
1722
  "type":"structure",
1154
1723
  "members":{
@@ -1233,6 +1802,18 @@
1233
1802
  "ShouldDecrementDesiredCapacity":{"shape":"ShouldDecrementDesiredCapacity"}
1234
1803
  }
1235
1804
  },
1805
+ "DetachLoadBalancersResultType":{
1806
+ "type":"structure",
1807
+ "members":{
1808
+ }
1809
+ },
1810
+ "DetachLoadBalancersType":{
1811
+ "type":"structure",
1812
+ "members":{
1813
+ "AutoScalingGroupName":{"shape":"ResourceName"},
1814
+ "LoadBalancerNames":{"shape":"LoadBalancerNames"}
1815
+ }
1816
+ },
1236
1817
  "DisableMetricsCollectionQuery":{
1237
1818
  "type":"structure",
1238
1819
  "required":["AutoScalingGroupName"],
@@ -1499,6 +2080,17 @@
1499
2080
  "type":"list",
1500
2081
  "member":{"shape":"XmlStringMaxLen255"}
1501
2082
  },
2083
+ "LoadBalancerState":{
2084
+ "type":"structure",
2085
+ "members":{
2086
+ "LoadBalancerName":{"shape":"XmlStringMaxLen255"},
2087
+ "State":{"shape":"XmlStringMaxLen255"}
2088
+ }
2089
+ },
2090
+ "LoadBalancerStates":{
2091
+ "type":"list",
2092
+ "member":{"shape":"LoadBalancerState"}
2093
+ },
1502
2094
  "MaxNumberOfAutoScalingGroups":{"type":"integer"},
1503
2095
  "MaxNumberOfLaunchConfigurations":{"type":"integer"},
1504
2096
  "MaxRecords":{"type":"integer"},
@@ -1622,16 +2214,15 @@
1622
2214
  "required":[
1623
2215
  "AutoScalingGroupName",
1624
2216
  "PolicyName",
1625
- "ScalingAdjustment",
1626
2217
  "AdjustmentType"
1627
2218
  ],
1628
2219
  "members":{
1629
2220
  "AutoScalingGroupName":{"shape":"ResourceName"},
1630
2221
  "PolicyName":{"shape":"XmlStringMaxLen255"},
1631
- "ScalingAdjustment":{"shape":"PolicyIncrement"},
1632
2222
  "AdjustmentType":{"shape":"XmlStringMaxLen255"},
1633
- "Cooldown":{"shape":"Cooldown"},
1634
- "MinAdjustmentStep":{"shape":"MinAdjustmentStep"}
2223
+ "MinAdjustmentStep":{"shape":"MinAdjustmentStep"},
2224
+ "ScalingAdjustment":{"shape":"PolicyIncrement"},
2225
+ "Cooldown":{"shape":"Cooldown"}
1635
2226
  }
1636
2227
  },
1637
2228
  "PutScheduledUpdateGroupActionType":{
@@ -1670,6 +2261,18 @@
1670
2261
  "LifecycleActionToken":{"shape":"LifecycleActionToken"}
1671
2262
  }
1672
2263
  },
2264
+ "ResourceContentionFault":{
2265
+ "type":"structure",
2266
+ "members":{
2267
+ "message":{"shape":"XmlStringMaxLen255"}
2268
+ },
2269
+ "error":{
2270
+ "code":"ResourceContention",
2271
+ "httpStatusCode":500,
2272
+ "senderFault":true
2273
+ },
2274
+ "exception":true
2275
+ },
1673
2276
  "ResourceInUseFault":{
1674
2277
  "type":"structure",
1675
2278
  "members":{
@@ -1724,12 +2327,12 @@
1724
2327
  "members":{
1725
2328
  "AutoScalingGroupName":{"shape":"XmlStringMaxLen255"},
1726
2329
  "PolicyName":{"shape":"XmlStringMaxLen255"},
1727
- "ScalingAdjustment":{"shape":"PolicyIncrement"},
2330
+ "PolicyARN":{"shape":"ResourceName"},
2331
+ "MinAdjustmentStep":{"shape":"MinAdjustmentStep"},
1728
2332
  "AdjustmentType":{"shape":"XmlStringMaxLen255"},
2333
+ "ScalingAdjustment":{"shape":"PolicyIncrement"},
1729
2334
  "Cooldown":{"shape":"Cooldown"},
1730
- "PolicyARN":{"shape":"ResourceName"},
1731
- "Alarms":{"shape":"Alarms"},
1732
- "MinAdjustmentStep":{"shape":"MinAdjustmentStep"}
2335
+ "Alarms":{"shape":"Alarms"}
1733
2336
  }
1734
2337
  },
1735
2338
  "ScalingProcessQuery":{