aws-sdk-core 2.8.4 → 3.129.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (714) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1287 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/ca-bundle.crt +3615 -3541
  6. data/lib/aws-defaults/default_configuration.rb +153 -0
  7. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  8. data/lib/aws-defaults.rb +3 -0
  9. data/lib/aws-sdk-core/arn.rb +92 -0
  10. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  11. data/lib/aws-sdk-core/assume_role_credentials.rb +20 -0
  12. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +109 -0
  13. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  14. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  15. data/lib/aws-sdk-core/binary/encode_handler.rb +34 -0
  16. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  17. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  18. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  19. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  20. data/lib/aws-sdk-core/binary.rb +8 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  22. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  23. data/lib/aws-sdk-core/client_stubs.rb +69 -12
  24. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  25. data/lib/aws-sdk-core/credential_provider_chain.rb +111 -32
  26. data/lib/aws-sdk-core/credentials.rb +2 -0
  27. data/lib/aws-sdk-core/deprecations.rb +17 -11
  28. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  29. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  30. data/lib/aws-sdk-core/ecs_credentials.rb +20 -11
  31. data/lib/aws-sdk-core/endpoint_cache.rb +193 -0
  32. data/lib/aws-sdk-core/errors.rb +227 -18
  33. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  34. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  35. data/lib/aws-sdk-core/instance_profile_credentials.rb +237 -45
  36. data/lib/aws-sdk-core/json/builder.rb +6 -2
  37. data/lib/aws-sdk-core/json/error_handler.rb +21 -2
  38. data/lib/aws-sdk-core/json/handler.rb +24 -3
  39. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  40. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  41. data/lib/aws-sdk-core/json/parser.rb +11 -1
  42. data/lib/aws-sdk-core/json.rb +15 -33
  43. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  44. data/lib/aws-sdk-core/log/handler.rb +2 -0
  45. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  46. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  47. data/lib/aws-sdk-core/pageable_response.rb +112 -47
  48. data/lib/aws-sdk-core/pager.rb +35 -25
  49. data/lib/aws-sdk-core/param_converter.rb +5 -3
  50. data/lib/aws-sdk-core/param_validator.rb +109 -26
  51. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  52. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  53. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  54. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  55. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  56. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  57. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  58. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +81 -0
  59. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  60. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +168 -0
  61. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +65 -0
  62. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  63. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  64. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  65. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  66. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  67. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  68. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +31 -0
  69. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  70. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  71. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  72. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  73. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  74. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  75. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  76. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  77. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  78. data/lib/aws-sdk-core/plugins/recursion_detection.rb +27 -0
  79. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +96 -28
  80. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  81. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  82. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  83. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +146 -0
  84. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  85. data/lib/aws-sdk-core/plugins/retry_errors.rb +342 -82
  86. data/lib/aws-sdk-core/plugins/signature_v2.rb +53 -0
  87. data/lib/aws-sdk-core/plugins/signature_v4.rb +144 -0
  88. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  89. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  90. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  91. data/lib/aws-sdk-core/process_credentials.rb +81 -0
  92. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  93. data/lib/aws-sdk-core/query/handler.rb +22 -16
  94. data/lib/aws-sdk-core/query/param.rb +2 -0
  95. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  96. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  97. data/lib/aws-sdk-core/query.rb +7 -0
  98. data/lib/aws-sdk-core/refreshing_credentials.rb +16 -3
  99. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  100. data/lib/aws-sdk-core/rest/handler.rb +3 -0
  101. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  102. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  103. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  104. data/lib/aws-sdk-core/rest/request/headers.rb +38 -5
  105. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  106. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  107. data/lib/aws-sdk-core/rest/response/headers.rb +13 -1
  108. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  109. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  110. data/lib/aws-sdk-core/rest.rb +12 -0
  111. data/lib/aws-sdk-core/shared_config.rb +205 -69
  112. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  113. data/lib/aws-sdk-core/sso_credentials.rb +136 -0
  114. data/lib/aws-sdk-core/structure.rb +33 -13
  115. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  116. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  117. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  118. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  119. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  120. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  121. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  122. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  123. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  124. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  125. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  126. data/lib/aws-sdk-core/type_builder.rb +2 -0
  127. data/lib/aws-sdk-core/util.rb +72 -0
  128. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  129. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  130. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  131. data/lib/aws-sdk-core/waiters.rb +5 -0
  132. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  133. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  134. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  135. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  136. data/lib/aws-sdk-core/xml/error_handler.rb +30 -6
  137. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  138. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  139. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
  140. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +7 -1
  141. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  142. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  143. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  144. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  145. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  146. data/lib/aws-sdk-core/xml.rb +11 -0
  147. data/lib/aws-sdk-core.rb +112 -440
  148. data/lib/aws-sdk-sso/client.rb +570 -0
  149. data/lib/aws-sdk-sso/client_api.rb +190 -0
  150. data/lib/aws-sdk-sso/customizations.rb +1 -0
  151. data/lib/aws-sdk-sso/errors.rb +102 -0
  152. data/lib/aws-sdk-sso/resource.rb +26 -0
  153. data/lib/aws-sdk-sso/types.rb +352 -0
  154. data/lib/aws-sdk-sso.rb +55 -0
  155. data/lib/aws-sdk-sts/client.rb +2315 -0
  156. data/lib/aws-sdk-sts/client_api.rb +344 -0
  157. data/lib/aws-sdk-sts/customizations.rb +4 -0
  158. data/lib/aws-sdk-sts/errors.rb +166 -0
  159. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  160. data/lib/aws-sdk-sts/presigner.rb +75 -0
  161. data/lib/aws-sdk-sts/resource.rb +26 -0
  162. data/lib/aws-sdk-sts/types.rb +1673 -0
  163. data/lib/aws-sdk-sts.rb +55 -0
  164. data/lib/seahorse/client/async_base.rb +52 -0
  165. data/lib/seahorse/client/async_response.rb +64 -0
  166. data/lib/seahorse/client/base.rb +8 -9
  167. data/lib/seahorse/client/block_io.rb +6 -2
  168. data/lib/seahorse/client/configuration.rb +16 -2
  169. data/lib/seahorse/client/events.rb +3 -1
  170. data/lib/seahorse/client/h2/connection.rb +250 -0
  171. data/lib/seahorse/client/h2/handler.rb +152 -0
  172. data/lib/seahorse/client/handler.rb +2 -0
  173. data/lib/seahorse/client/handler_builder.rb +2 -0
  174. data/lib/seahorse/client/handler_list.rb +2 -0
  175. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  176. data/lib/seahorse/client/http/async_response.rb +44 -0
  177. data/lib/seahorse/client/http/headers.rb +2 -0
  178. data/lib/seahorse/client/http/request.rb +5 -3
  179. data/lib/seahorse/client/http/response.rb +18 -11
  180. data/lib/seahorse/client/logging/formatter.rb +9 -1
  181. data/lib/seahorse/client/logging/handler.rb +4 -0
  182. data/lib/seahorse/client/managed_file.rb +2 -0
  183. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  184. data/lib/seahorse/client/net_http/handler.rb +29 -7
  185. data/lib/seahorse/client/net_http/patches.rb +18 -79
  186. data/lib/seahorse/client/networking_error.rb +30 -0
  187. data/lib/seahorse/client/plugin.rb +69 -6
  188. data/lib/seahorse/client/plugin_list.rb +2 -0
  189. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  190. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  191. data/lib/seahorse/client/plugins/h2.rb +69 -0
  192. data/lib/seahorse/client/plugins/logging.rb +19 -19
  193. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  194. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  195. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  196. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  197. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  198. data/lib/seahorse/client/request.rb +2 -0
  199. data/lib/seahorse/client/request_context.rb +7 -0
  200. data/lib/seahorse/client/response.rb +5 -5
  201. data/lib/seahorse/model/api.rb +43 -0
  202. data/lib/seahorse/model/authorizer.rb +23 -0
  203. data/lib/seahorse/model/operation.rb +28 -0
  204. data/lib/seahorse/model/shapes.rb +71 -2
  205. data/lib/seahorse/util.rb +9 -22
  206. data/lib/seahorse/version.rb +2 -0
  207. data/lib/seahorse.rb +63 -60
  208. metadata +132 -520
  209. data/apis/acm/2015-12-08/api-2.json +0 -595
  210. data/apis/acm/2015-12-08/examples-1.json +0 -5
  211. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  212. data/apis/apigateway/2015-07-09/api-2.json +0 -4523
  213. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  214. data/apis/apigateway/2015-07-09/paginators-1.json +0 -70
  215. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -511
  216. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  217. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  218. data/apis/appstream/2016-12-01/api-2.json +0 -820
  219. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  220. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  221. data/apis/autoscaling/2011-01-01/api-2.json +0 -2172
  222. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1395
  223. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  224. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  225. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  226. data/apis/batch/2016-08-10/api-2.json +0 -885
  227. data/apis/batch/2016-08-10/examples-1.json +0 -589
  228. data/apis/budgets/2016-10-20/api-2.json +0 -697
  229. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  230. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -3033
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -84
  234. data/apis/cloudformation/2010-05-15/api-2.json +0 -1428
  235. data/apis/cloudformation/2010-05-15/examples-1.json +0 -158
  236. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  237. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  238. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -157
  239. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  240. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  244. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  248. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  249. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  250. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  251. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  252. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  255. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  259. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  262. data/apis/cloudhsm/2014-05-30/api-2.json +0 -878
  263. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  264. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  265. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  266. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  267. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  268. data/apis/cloudtrail/2013-11-01/api-2.json +0 -907
  269. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  270. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  271. data/apis/codebuild/2016-10-06/api-2.json +0 -702
  272. data/apis/codebuild/2016-10-06/examples-1.json +0 -5
  273. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -1112
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -19
  277. data/apis/codedeploy/2014-10-06/api-2.json +0 -2300
  278. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  279. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -4
  280. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  281. data/apis/codepipeline/2015-07-09/api-2.json +0 -1714
  282. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  283. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  284. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  285. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  286. data/apis/cognito-idp/2016-04-18/api-2.json +0 -3325
  287. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  288. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  289. data/apis/config/2014-11-12/api-2.json +0 -1417
  290. data/apis/config/2014-11-12/examples-1.json +0 -5
  291. data/apis/config/2014-11-12/paginators-1.json +0 -10
  292. data/apis/cur/2017-01-06/api-2.json +0 -226
  293. data/apis/cur/2017-01-06/examples-1.json +0 -5
  294. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  295. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  296. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  297. data/apis/devicefarm/2015-06-23/api-2.json +0 -2031
  298. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  299. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  300. data/apis/directconnect/2012-10-25/api-2.json +0 -1347
  301. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  302. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  303. data/apis/discovery/2015-11-01/api-2.json +0 -867
  304. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  305. data/apis/dms/2016-01-01/api-2.json +0 -1505
  306. data/apis/dms/2016-01-01/examples-1.json +0 -5
  307. data/apis/ds/2015-04-16/api-2.json +0 -1972
  308. data/apis/ds/2015-04-16/examples-1.json +0 -5
  309. data/apis/dynamodb/2011-12-05/api-2.json +0 -802
  310. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  311. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  312. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  313. data/apis/dynamodb/2012-08-10/api-2.json +0 -1405
  314. data/apis/dynamodb/2012-08-10/examples-1.json +0 -628
  315. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  316. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  317. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  318. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  319. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  320. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  321. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  322. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  323. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  324. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  325. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  326. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  327. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  328. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  329. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  330. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  331. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  332. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  333. data/apis/ec2/2016-11-15/api-2.json +0 -15373
  334. data/apis/ec2/2016-11-15/examples-1.json +0 -3740
  335. data/apis/ec2/2016-11-15/paginators-1.json +0 -144
  336. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  337. data/apis/ec2/2016-11-15/waiters-2.json +0 -611
  338. data/apis/ecr/2015-09-21/api-2.json +0 -947
  339. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  340. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  341. data/apis/ecs/2014-11-13/api-2.json +0 -1625
  342. data/apis/ecs/2014-11-13/examples-1.json +0 -883
  343. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  344. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  345. data/apis/elasticache/2015-02-02/api-2.json +0 -2474
  346. data/apis/elasticache/2015-02-02/examples-1.json +0 -2968
  347. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  348. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  349. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2332
  350. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  351. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  352. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -714
  353. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  354. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1590
  355. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  356. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  357. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  358. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -1823
  359. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  360. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  361. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1794
  362. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  363. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  364. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  365. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1483
  366. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  367. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  368. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  369. data/apis/email/2010-12-01/api-2.json +0 -2212
  370. data/apis/email/2010-12-01/examples-1.json +0 -953
  371. data/apis/email/2010-12-01/paginators-1.json +0 -13
  372. data/apis/email/2010-12-01/waiters-2.json +0 -18
  373. data/apis/es/2015-01-01/api-2.json +0 -862
  374. data/apis/es/2015-01-01/examples-1.json +0 -5
  375. data/apis/es/2015-01-01/paginators-1.json +0 -14
  376. data/apis/events/2015-10-07/api-2.json +0 -644
  377. data/apis/events/2015-10-07/examples-1.json +0 -5
  378. data/apis/firehose/2015-08-04/api-2.json +0 -866
  379. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  380. data/apis/gamelift/2015-10-01/api-2.json +0 -2256
  381. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  382. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  383. data/apis/glacier/2012-06-01/api-2.json +0 -1734
  384. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  385. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  386. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  387. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  388. data/apis/health/2016-08-04/api-2.json +0 -547
  389. data/apis/health/2016-08-04/examples-1.json +0 -5
  390. data/apis/health/2016-08-04/paginators-1.json +0 -31
  391. data/apis/iam/2010-05-08/api-2.json +0 -4730
  392. data/apis/iam/2010-05-08/examples-1.json +0 -1191
  393. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  394. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  395. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  396. data/apis/importexport/2010-06-01/api-2.json +0 -667
  397. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  398. data/apis/inspector/2016-02-16/api-2.json +0 -1965
  399. data/apis/inspector/2016-02-16/examples-1.json +0 -1140
  400. data/apis/iot/2015-05-28/api-2.json +0 -4347
  401. data/apis/iot/2015-05-28/examples-1.json +0 -5
  402. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  403. data/apis/kinesis/2013-12-02/api-2.json +0 -890
  404. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  405. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  406. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  407. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1049
  408. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  409. data/apis/kms/2014-11-01/api-2.json +0 -1492
  410. data/apis/kms/2014-11-01/examples-1.json +0 -862
  411. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  412. data/apis/lambda/2014-11-11/api-2.json +0 -668
  413. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  414. data/apis/lambda/2015-03-31/api-2.json +0 -1514
  415. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  416. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  417. data/apis/lightsail/2016-11-28/api-2.json +0 -2137
  418. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  419. data/apis/logs/2014-03-28/api-2.json +0 -1246
  420. data/apis/logs/2014-03-28/examples-1.json +0 -5
  421. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  422. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  423. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  424. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  425. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  426. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -170
  427. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  428. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -263
  429. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  430. data/apis/monitoring/2010-08-01/api-2.json +0 -811
  431. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  432. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  433. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  434. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  435. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1665
  436. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  437. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  438. data/apis/opsworks/2013-02-18/api-2.json +0 -2607
  439. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  440. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  441. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  442. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  443. data/apis/opsworkscm/2016-11-01/api-2.json +0 -730
  444. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  445. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  446. data/apis/organizations/2016-11-28/api-2.json +0 -1989
  447. data/apis/organizations/2016-11-28/examples-1.json +0 -1398
  448. data/apis/organizations/2016-11-28/paginators-1.json +0 -4
  449. data/apis/pinpoint/2016-12-01/api-2.json +0 -2753
  450. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  451. data/apis/polly/2016-06-10/api-2.json +0 -504
  452. data/apis/polly/2016-06-10/examples-1.json +0 -171
  453. data/apis/rds/2013-01-10/api-2.json +0 -2902
  454. data/apis/rds/2013-01-10/examples-1.json +0 -5
  455. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  456. data/apis/rds/2013-02-12/api-2.json +0 -3058
  457. data/apis/rds/2013-02-12/examples-1.json +0 -5
  458. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  459. data/apis/rds/2013-09-09/api-2.json +0 -3159
  460. data/apis/rds/2013-09-09/examples-1.json +0 -5
  461. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  462. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  463. data/apis/rds/2014-09-01/api-2.json +0 -3272
  464. data/apis/rds/2014-09-01/examples-1.json +0 -5
  465. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  466. data/apis/rds/2014-10-31/api-2.json +0 -5098
  467. data/apis/rds/2014-10-31/examples-1.json +0 -1861
  468. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  469. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  470. data/apis/rds/2014-10-31/waiters-2.json +0 -90
  471. data/apis/redshift/2012-12-01/api-2.json +0 -3775
  472. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  473. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  474. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  475. data/apis/rekognition/2016-06-27/api-2.json +0 -844
  476. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  477. data/apis/rekognition/2016-06-27/paginators-1.json +0 -16
  478. data/apis/route53/2013-04-01/api-2.json +0 -3312
  479. data/apis/route53/2013-04-01/examples-1.json +0 -762
  480. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  481. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  482. data/apis/route53domains/2014-05-15/api-2.json +0 -1323
  483. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  484. data/apis/runtime.lex/2016-11-28/api-2.json +0 -243
  485. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  486. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  487. data/apis/s3/2006-03-01/api-2.json +0 -5368
  488. data/apis/s3/2006-03-01/examples-1.json +0 -5
  489. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  490. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  491. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  492. data/apis/sdb/2009-04-15/api-2.json +0 -955
  493. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  494. data/apis/servicecatalog/2015-12-10/api-2.json +0 -1955
  495. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  496. data/apis/shield/2016-06-02/api-2.json +0 -494
  497. data/apis/shield/2016-06-02/examples-1.json +0 -5
  498. data/apis/sms/2016-10-24/api-2.json +0 -612
  499. data/apis/sms/2016-10-24/examples-1.json +0 -5
  500. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  501. data/apis/snowball/2016-06-30/api-2.json +0 -834
  502. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  503. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  504. data/apis/sns/2010-03-31/api-2.json +0 -1145
  505. data/apis/sns/2010-03-31/examples-1.json +0 -5
  506. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  507. data/apis/sns/2010-03-31/resources-1.json +0 -327
  508. data/apis/sqs/2012-11-05/api-2.json +0 -986
  509. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  510. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  511. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  512. data/apis/ssm/2014-11-06/api-2.json +0 -5296
  513. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  514. data/apis/ssm/2014-11-06/paginators-1.json +0 -40
  515. data/apis/states/2016-11-23/api-2.json +0 -1021
  516. data/apis/states/2016-11-23/examples-1.json +0 -5
  517. data/apis/states/2016-11-23/paginators-1.json +0 -28
  518. data/apis/storagegateway/2013-06-30/api-2.json +0 -2551
  519. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  520. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  521. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  522. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  523. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  524. data/apis/sts/2011-06-15/api-2.json +0 -522
  525. data/apis/sts/2011-06-15/examples-1.json +0 -206
  526. data/apis/support/2013-04-15/api-2.json +0 -772
  527. data/apis/support/2013-04-15/examples-1.json +0 -5
  528. data/apis/support/2013-04-15/paginators-1.json +0 -25
  529. data/apis/swf/2012-01-25/api-2.json +0 -2839
  530. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  531. data/apis/waf/2015-08-24/api-2.json +0 -1959
  532. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  533. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  534. data/apis/waf-regional/2016-11-28/api-2.json +0 -2090
  535. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  536. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  537. data/apis/workdocs/2016-05-01/api-2.json +0 -1781
  538. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  539. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  540. data/apis/workspaces/2015-04-08/api-2.json +0 -840
  541. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  542. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  543. data/apis/xray/2016-04-12/api-2.json +0 -491
  544. data/apis/xray/2016-04-12/examples-1.json +0 -5
  545. data/bin/aws.rb +0 -180
  546. data/endpoints.json +0 -1935
  547. data/lib/aws-sdk-core/acm.rb +0 -6
  548. data/lib/aws-sdk-core/api/builder.rb +0 -106
  549. data/lib/aws-sdk-core/api/customizations.rb +0 -261
  550. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  551. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  552. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  553. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  554. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  555. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  556. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  557. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  558. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  559. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  560. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  561. data/lib/aws-sdk-core/apigateway.rb +0 -6
  562. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  563. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  564. data/lib/aws-sdk-core/appstream.rb +0 -6
  565. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  566. data/lib/aws-sdk-core/batch.rb +0 -5
  567. data/lib/aws-sdk-core/budgets.rb +0 -6
  568. data/lib/aws-sdk-core/checksums.rb +0 -51
  569. data/lib/aws-sdk-core/client.rb +0 -59
  570. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  571. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  572. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  573. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  574. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  575. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  576. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  577. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  578. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  579. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  580. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  581. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  582. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  583. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  584. data/lib/aws-sdk-core/codebuild.rb +0 -6
  585. data/lib/aws-sdk-core/codecommit.rb +0 -6
  586. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  587. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  588. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  589. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  590. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  591. data/lib/aws-sdk-core/configservice.rb +0 -6
  592. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  593. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  594. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  595. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  596. data/lib/aws-sdk-core/directconnect.rb +0 -6
  597. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  598. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  599. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  600. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  601. data/lib/aws-sdk-core/ec2.rb +0 -8
  602. data/lib/aws-sdk-core/ecr.rb +0 -6
  603. data/lib/aws-sdk-core/ecs.rb +0 -7
  604. data/lib/aws-sdk-core/efs.rb +0 -5
  605. data/lib/aws-sdk-core/elasticache.rb +0 -7
  606. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  607. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  608. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -6
  609. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  610. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  611. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  612. data/lib/aws-sdk-core/emr.rb +0 -7
  613. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  614. data/lib/aws-sdk-core/firehose.rb +0 -5
  615. data/lib/aws-sdk-core/gamelift.rb +0 -6
  616. data/lib/aws-sdk-core/glacier.rb +0 -8
  617. data/lib/aws-sdk-core/health.rb +0 -6
  618. data/lib/aws-sdk-core/iam.rb +0 -8
  619. data/lib/aws-sdk-core/importexport.rb +0 -5
  620. data/lib/aws-sdk-core/inspector.rb +0 -5
  621. data/lib/aws-sdk-core/iot.rb +0 -5
  622. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  623. data/lib/aws-sdk-core/kinesis.rb +0 -7
  624. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -5
  625. data/lib/aws-sdk-core/kms.rb +0 -6
  626. data/lib/aws-sdk-core/lambda.rb +0 -6
  627. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  628. data/lib/aws-sdk-core/lex.rb +0 -6
  629. data/lib/aws-sdk-core/lightsail.rb +0 -5
  630. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  631. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  632. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  633. data/lib/aws-sdk-core/mturk.rb +0 -6
  634. data/lib/aws-sdk-core/opsworks.rb +0 -8
  635. data/lib/aws-sdk-core/opsworkscm.rb +0 -6
  636. data/lib/aws-sdk-core/organizations.rb +0 -6
  637. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  638. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  639. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  640. data/lib/aws-sdk-core/partitions/service.rb +0 -74
  641. data/lib/aws-sdk-core/partitions.rb +0 -174
  642. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  643. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  644. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  645. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  646. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  647. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  648. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  649. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  650. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  651. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  652. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  653. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  654. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  655. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  656. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -142
  657. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  658. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  659. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  660. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  661. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  662. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  663. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  664. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  665. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  666. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  667. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  668. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  669. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  670. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  671. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  672. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  673. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  674. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  675. data/lib/aws-sdk-core/polly.rb +0 -13
  676. data/lib/aws-sdk-core/rds.rb +0 -8
  677. data/lib/aws-sdk-core/redshift.rb +0 -7
  678. data/lib/aws-sdk-core/rekognition.rb +0 -6
  679. data/lib/aws-sdk-core/route53.rb +0 -7
  680. data/lib/aws-sdk-core/route53domains.rb +0 -5
  681. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  682. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  683. data/lib/aws-sdk-core/s3.rb +0 -26
  684. data/lib/aws-sdk-core/service.rb +0 -4
  685. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  686. data/lib/aws-sdk-core/ses.rb +0 -7
  687. data/lib/aws-sdk-core/shield.rb +0 -5
  688. data/lib/aws-sdk-core/signers/base.rb +0 -31
  689. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  690. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  691. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  692. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  693. data/lib/aws-sdk-core/simpledb.rb +0 -5
  694. data/lib/aws-sdk-core/sms.rb +0 -6
  695. data/lib/aws-sdk-core/snowball.rb +0 -6
  696. data/lib/aws-sdk-core/sns.rb +0 -7
  697. data/lib/aws-sdk-core/sqs.rb +0 -7
  698. data/lib/aws-sdk-core/ssm.rb +0 -6
  699. data/lib/aws-sdk-core/states.rb +0 -6
  700. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  701. data/lib/aws-sdk-core/sts.rb +0 -5
  702. data/lib/aws-sdk-core/support.rb +0 -6
  703. data/lib/aws-sdk-core/swf.rb +0 -5
  704. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  705. data/lib/aws-sdk-core/version.rb +0 -3
  706. data/lib/aws-sdk-core/waf.rb +0 -6
  707. data/lib/aws-sdk-core/wafregional.rb +0 -6
  708. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  709. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  710. data/lib/aws-sdk-core/workdocs.rb +0 -6
  711. data/lib/aws-sdk-core/workspaces.rb +0 -6
  712. data/lib/aws-sdk-core/xray.rb +0 -5
  713. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  714. data/service-models.json +0 -381
@@ -1,2300 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-10-06",
5
- "endpointPrefix":"codedeploy",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"CodeDeploy",
9
- "serviceFullName":"AWS CodeDeploy",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"CodeDeploy_20141006",
12
- "timestampFormat":"unixTimestamp",
13
- "uid":"codedeploy-2014-10-06"
14
- },
15
- "operations":{
16
- "AddTagsToOnPremisesInstances":{
17
- "name":"AddTagsToOnPremisesInstances",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"AddTagsToOnPremisesInstancesInput"},
23
- "errors":[
24
- {"shape":"InstanceNameRequiredException"},
25
- {"shape":"TagRequiredException"},
26
- {"shape":"InvalidTagException"},
27
- {"shape":"TagLimitExceededException"},
28
- {"shape":"InstanceLimitExceededException"},
29
- {"shape":"InstanceNotRegisteredException"}
30
- ]
31
- },
32
- "BatchGetApplicationRevisions":{
33
- "name":"BatchGetApplicationRevisions",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/"
37
- },
38
- "input":{"shape":"BatchGetApplicationRevisionsInput"},
39
- "output":{"shape":"BatchGetApplicationRevisionsOutput"},
40
- "errors":[
41
- {"shape":"ApplicationDoesNotExistException"},
42
- {"shape":"ApplicationNameRequiredException"},
43
- {"shape":"InvalidApplicationNameException"},
44
- {"shape":"RevisionRequiredException"},
45
- {"shape":"InvalidRevisionException"},
46
- {"shape":"BatchLimitExceededException"}
47
- ]
48
- },
49
- "BatchGetApplications":{
50
- "name":"BatchGetApplications",
51
- "http":{
52
- "method":"POST",
53
- "requestUri":"/"
54
- },
55
- "input":{"shape":"BatchGetApplicationsInput"},
56
- "output":{"shape":"BatchGetApplicationsOutput"},
57
- "errors":[
58
- {"shape":"ApplicationNameRequiredException"},
59
- {"shape":"InvalidApplicationNameException"},
60
- {"shape":"ApplicationDoesNotExistException"},
61
- {"shape":"BatchLimitExceededException"}
62
- ]
63
- },
64
- "BatchGetDeploymentGroups":{
65
- "name":"BatchGetDeploymentGroups",
66
- "http":{
67
- "method":"POST",
68
- "requestUri":"/"
69
- },
70
- "input":{"shape":"BatchGetDeploymentGroupsInput"},
71
- "output":{"shape":"BatchGetDeploymentGroupsOutput"},
72
- "errors":[
73
- {"shape":"ApplicationNameRequiredException"},
74
- {"shape":"InvalidApplicationNameException"},
75
- {"shape":"ApplicationDoesNotExistException"},
76
- {"shape":"DeploymentGroupNameRequiredException"},
77
- {"shape":"InvalidDeploymentGroupNameException"},
78
- {"shape":"BatchLimitExceededException"}
79
- ]
80
- },
81
- "BatchGetDeploymentInstances":{
82
- "name":"BatchGetDeploymentInstances",
83
- "http":{
84
- "method":"POST",
85
- "requestUri":"/"
86
- },
87
- "input":{"shape":"BatchGetDeploymentInstancesInput"},
88
- "output":{"shape":"BatchGetDeploymentInstancesOutput"},
89
- "errors":[
90
- {"shape":"DeploymentIdRequiredException"},
91
- {"shape":"DeploymentDoesNotExistException"},
92
- {"shape":"InstanceIdRequiredException"},
93
- {"shape":"InvalidDeploymentIdException"},
94
- {"shape":"InvalidInstanceNameException"},
95
- {"shape":"BatchLimitExceededException"}
96
- ]
97
- },
98
- "BatchGetDeployments":{
99
- "name":"BatchGetDeployments",
100
- "http":{
101
- "method":"POST",
102
- "requestUri":"/"
103
- },
104
- "input":{"shape":"BatchGetDeploymentsInput"},
105
- "output":{"shape":"BatchGetDeploymentsOutput"},
106
- "errors":[
107
- {"shape":"DeploymentIdRequiredException"},
108
- {"shape":"InvalidDeploymentIdException"},
109
- {"shape":"BatchLimitExceededException"}
110
- ]
111
- },
112
- "BatchGetOnPremisesInstances":{
113
- "name":"BatchGetOnPremisesInstances",
114
- "http":{
115
- "method":"POST",
116
- "requestUri":"/"
117
- },
118
- "input":{"shape":"BatchGetOnPremisesInstancesInput"},
119
- "output":{"shape":"BatchGetOnPremisesInstancesOutput"},
120
- "errors":[
121
- {"shape":"InstanceNameRequiredException"},
122
- {"shape":"InvalidInstanceNameException"},
123
- {"shape":"BatchLimitExceededException"}
124
- ]
125
- },
126
- "ContinueDeployment":{
127
- "name":"ContinueDeployment",
128
- "http":{
129
- "method":"POST",
130
- "requestUri":"/"
131
- },
132
- "input":{"shape":"ContinueDeploymentInput"},
133
- "errors":[
134
- {"shape":"DeploymentIdRequiredException"},
135
- {"shape":"DeploymentDoesNotExistException"},
136
- {"shape":"DeploymentAlreadyCompletedException"},
137
- {"shape":"InvalidDeploymentIdException"},
138
- {"shape":"DeploymentIsNotInReadyStateException"},
139
- {"shape":"UnsupportedActionForDeploymentTypeException"}
140
- ]
141
- },
142
- "CreateApplication":{
143
- "name":"CreateApplication",
144
- "http":{
145
- "method":"POST",
146
- "requestUri":"/"
147
- },
148
- "input":{"shape":"CreateApplicationInput"},
149
- "output":{"shape":"CreateApplicationOutput"},
150
- "errors":[
151
- {"shape":"ApplicationNameRequiredException"},
152
- {"shape":"InvalidApplicationNameException"},
153
- {"shape":"ApplicationAlreadyExistsException"},
154
- {"shape":"ApplicationLimitExceededException"}
155
- ]
156
- },
157
- "CreateDeployment":{
158
- "name":"CreateDeployment",
159
- "http":{
160
- "method":"POST",
161
- "requestUri":"/"
162
- },
163
- "input":{"shape":"CreateDeploymentInput"},
164
- "output":{"shape":"CreateDeploymentOutput"},
165
- "errors":[
166
- {"shape":"ApplicationNameRequiredException"},
167
- {"shape":"InvalidApplicationNameException"},
168
- {"shape":"ApplicationDoesNotExistException"},
169
- {"shape":"DeploymentGroupNameRequiredException"},
170
- {"shape":"InvalidDeploymentGroupNameException"},
171
- {"shape":"DeploymentGroupDoesNotExistException"},
172
- {"shape":"RevisionRequiredException"},
173
- {"shape":"RevisionDoesNotExistException"},
174
- {"shape":"InvalidRevisionException"},
175
- {"shape":"InvalidDeploymentConfigNameException"},
176
- {"shape":"DeploymentConfigDoesNotExistException"},
177
- {"shape":"DescriptionTooLongException"},
178
- {"shape":"DeploymentLimitExceededException"},
179
- {"shape":"InvalidTargetInstancesException"},
180
- {"shape":"InvalidAutoRollbackConfigException"},
181
- {"shape":"InvalidLoadBalancerInfoException"}
182
- ]
183
- },
184
- "CreateDeploymentConfig":{
185
- "name":"CreateDeploymentConfig",
186
- "http":{
187
- "method":"POST",
188
- "requestUri":"/"
189
- },
190
- "input":{"shape":"CreateDeploymentConfigInput"},
191
- "output":{"shape":"CreateDeploymentConfigOutput"},
192
- "errors":[
193
- {"shape":"InvalidDeploymentConfigNameException"},
194
- {"shape":"DeploymentConfigNameRequiredException"},
195
- {"shape":"DeploymentConfigAlreadyExistsException"},
196
- {"shape":"InvalidMinimumHealthyHostValueException"},
197
- {"shape":"DeploymentConfigLimitExceededException"}
198
- ]
199
- },
200
- "CreateDeploymentGroup":{
201
- "name":"CreateDeploymentGroup",
202
- "http":{
203
- "method":"POST",
204
- "requestUri":"/"
205
- },
206
- "input":{"shape":"CreateDeploymentGroupInput"},
207
- "output":{"shape":"CreateDeploymentGroupOutput"},
208
- "errors":[
209
- {"shape":"ApplicationNameRequiredException"},
210
- {"shape":"InvalidApplicationNameException"},
211
- {"shape":"ApplicationDoesNotExistException"},
212
- {"shape":"DeploymentGroupNameRequiredException"},
213
- {"shape":"InvalidDeploymentGroupNameException"},
214
- {"shape":"DeploymentGroupAlreadyExistsException"},
215
- {"shape":"InvalidEC2TagException"},
216
- {"shape":"InvalidTagException"},
217
- {"shape":"InvalidAutoScalingGroupException"},
218
- {"shape":"InvalidDeploymentConfigNameException"},
219
- {"shape":"DeploymentConfigDoesNotExistException"},
220
- {"shape":"RoleRequiredException"},
221
- {"shape":"InvalidRoleException"},
222
- {"shape":"DeploymentGroupLimitExceededException"},
223
- {"shape":"LifecycleHookLimitExceededException"},
224
- {"shape":"InvalidTriggerConfigException"},
225
- {"shape":"TriggerTargetsLimitExceededException"},
226
- {"shape":"InvalidAlarmConfigException"},
227
- {"shape":"AlarmsLimitExceededException"},
228
- {"shape":"InvalidAutoRollbackConfigException"},
229
- {"shape":"InvalidLoadBalancerInfoException"},
230
- {"shape":"InvalidDeploymentStyleException"},
231
- {"shape":"InvalidBlueGreenDeploymentConfigurationException"}
232
- ]
233
- },
234
- "DeleteApplication":{
235
- "name":"DeleteApplication",
236
- "http":{
237
- "method":"POST",
238
- "requestUri":"/"
239
- },
240
- "input":{"shape":"DeleteApplicationInput"},
241
- "errors":[
242
- {"shape":"ApplicationNameRequiredException"},
243
- {"shape":"InvalidApplicationNameException"}
244
- ]
245
- },
246
- "DeleteDeploymentConfig":{
247
- "name":"DeleteDeploymentConfig",
248
- "http":{
249
- "method":"POST",
250
- "requestUri":"/"
251
- },
252
- "input":{"shape":"DeleteDeploymentConfigInput"},
253
- "errors":[
254
- {"shape":"InvalidDeploymentConfigNameException"},
255
- {"shape":"DeploymentConfigNameRequiredException"},
256
- {"shape":"DeploymentConfigInUseException"},
257
- {"shape":"InvalidOperationException"}
258
- ]
259
- },
260
- "DeleteDeploymentGroup":{
261
- "name":"DeleteDeploymentGroup",
262
- "http":{
263
- "method":"POST",
264
- "requestUri":"/"
265
- },
266
- "input":{"shape":"DeleteDeploymentGroupInput"},
267
- "output":{"shape":"DeleteDeploymentGroupOutput"},
268
- "errors":[
269
- {"shape":"ApplicationNameRequiredException"},
270
- {"shape":"InvalidApplicationNameException"},
271
- {"shape":"DeploymentGroupNameRequiredException"},
272
- {"shape":"InvalidDeploymentGroupNameException"},
273
- {"shape":"InvalidRoleException"}
274
- ]
275
- },
276
- "DeregisterOnPremisesInstance":{
277
- "name":"DeregisterOnPremisesInstance",
278
- "http":{
279
- "method":"POST",
280
- "requestUri":"/"
281
- },
282
- "input":{"shape":"DeregisterOnPremisesInstanceInput"},
283
- "errors":[
284
- {"shape":"InstanceNameRequiredException"},
285
- {"shape":"InvalidInstanceNameException"}
286
- ]
287
- },
288
- "GetApplication":{
289
- "name":"GetApplication",
290
- "http":{
291
- "method":"POST",
292
- "requestUri":"/"
293
- },
294
- "input":{"shape":"GetApplicationInput"},
295
- "output":{"shape":"GetApplicationOutput"},
296
- "errors":[
297
- {"shape":"ApplicationNameRequiredException"},
298
- {"shape":"InvalidApplicationNameException"},
299
- {"shape":"ApplicationDoesNotExistException"}
300
- ]
301
- },
302
- "GetApplicationRevision":{
303
- "name":"GetApplicationRevision",
304
- "http":{
305
- "method":"POST",
306
- "requestUri":"/"
307
- },
308
- "input":{"shape":"GetApplicationRevisionInput"},
309
- "output":{"shape":"GetApplicationRevisionOutput"},
310
- "errors":[
311
- {"shape":"ApplicationDoesNotExistException"},
312
- {"shape":"ApplicationNameRequiredException"},
313
- {"shape":"InvalidApplicationNameException"},
314
- {"shape":"RevisionDoesNotExistException"},
315
- {"shape":"RevisionRequiredException"},
316
- {"shape":"InvalidRevisionException"}
317
- ]
318
- },
319
- "GetDeployment":{
320
- "name":"GetDeployment",
321
- "http":{
322
- "method":"POST",
323
- "requestUri":"/"
324
- },
325
- "input":{"shape":"GetDeploymentInput"},
326
- "output":{"shape":"GetDeploymentOutput"},
327
- "errors":[
328
- {"shape":"DeploymentIdRequiredException"},
329
- {"shape":"InvalidDeploymentIdException"},
330
- {"shape":"DeploymentDoesNotExistException"}
331
- ]
332
- },
333
- "GetDeploymentConfig":{
334
- "name":"GetDeploymentConfig",
335
- "http":{
336
- "method":"POST",
337
- "requestUri":"/"
338
- },
339
- "input":{"shape":"GetDeploymentConfigInput"},
340
- "output":{"shape":"GetDeploymentConfigOutput"},
341
- "errors":[
342
- {"shape":"InvalidDeploymentConfigNameException"},
343
- {"shape":"DeploymentConfigNameRequiredException"},
344
- {"shape":"DeploymentConfigDoesNotExistException"}
345
- ]
346
- },
347
- "GetDeploymentGroup":{
348
- "name":"GetDeploymentGroup",
349
- "http":{
350
- "method":"POST",
351
- "requestUri":"/"
352
- },
353
- "input":{"shape":"GetDeploymentGroupInput"},
354
- "output":{"shape":"GetDeploymentGroupOutput"},
355
- "errors":[
356
- {"shape":"ApplicationNameRequiredException"},
357
- {"shape":"InvalidApplicationNameException"},
358
- {"shape":"ApplicationDoesNotExistException"},
359
- {"shape":"DeploymentGroupNameRequiredException"},
360
- {"shape":"InvalidDeploymentGroupNameException"},
361
- {"shape":"DeploymentGroupDoesNotExistException"}
362
- ]
363
- },
364
- "GetDeploymentInstance":{
365
- "name":"GetDeploymentInstance",
366
- "http":{
367
- "method":"POST",
368
- "requestUri":"/"
369
- },
370
- "input":{"shape":"GetDeploymentInstanceInput"},
371
- "output":{"shape":"GetDeploymentInstanceOutput"},
372
- "errors":[
373
- {"shape":"DeploymentIdRequiredException"},
374
- {"shape":"DeploymentDoesNotExistException"},
375
- {"shape":"InstanceIdRequiredException"},
376
- {"shape":"InvalidDeploymentIdException"},
377
- {"shape":"InstanceDoesNotExistException"},
378
- {"shape":"InvalidInstanceNameException"}
379
- ]
380
- },
381
- "GetOnPremisesInstance":{
382
- "name":"GetOnPremisesInstance",
383
- "http":{
384
- "method":"POST",
385
- "requestUri":"/"
386
- },
387
- "input":{"shape":"GetOnPremisesInstanceInput"},
388
- "output":{"shape":"GetOnPremisesInstanceOutput"},
389
- "errors":[
390
- {"shape":"InstanceNameRequiredException"},
391
- {"shape":"InstanceNotRegisteredException"},
392
- {"shape":"InvalidInstanceNameException"}
393
- ]
394
- },
395
- "ListApplicationRevisions":{
396
- "name":"ListApplicationRevisions",
397
- "http":{
398
- "method":"POST",
399
- "requestUri":"/"
400
- },
401
- "input":{"shape":"ListApplicationRevisionsInput"},
402
- "output":{"shape":"ListApplicationRevisionsOutput"},
403
- "errors":[
404
- {"shape":"ApplicationDoesNotExistException"},
405
- {"shape":"ApplicationNameRequiredException"},
406
- {"shape":"InvalidApplicationNameException"},
407
- {"shape":"InvalidSortByException"},
408
- {"shape":"InvalidSortOrderException"},
409
- {"shape":"InvalidBucketNameFilterException"},
410
- {"shape":"InvalidKeyPrefixFilterException"},
411
- {"shape":"BucketNameFilterRequiredException"},
412
- {"shape":"InvalidDeployedStateFilterException"},
413
- {"shape":"InvalidNextTokenException"}
414
- ]
415
- },
416
- "ListApplications":{
417
- "name":"ListApplications",
418
- "http":{
419
- "method":"POST",
420
- "requestUri":"/"
421
- },
422
- "input":{"shape":"ListApplicationsInput"},
423
- "output":{"shape":"ListApplicationsOutput"},
424
- "errors":[
425
- {"shape":"InvalidNextTokenException"}
426
- ]
427
- },
428
- "ListDeploymentConfigs":{
429
- "name":"ListDeploymentConfigs",
430
- "http":{
431
- "method":"POST",
432
- "requestUri":"/"
433
- },
434
- "input":{"shape":"ListDeploymentConfigsInput"},
435
- "output":{"shape":"ListDeploymentConfigsOutput"},
436
- "errors":[
437
- {"shape":"InvalidNextTokenException"}
438
- ]
439
- },
440
- "ListDeploymentGroups":{
441
- "name":"ListDeploymentGroups",
442
- "http":{
443
- "method":"POST",
444
- "requestUri":"/"
445
- },
446
- "input":{"shape":"ListDeploymentGroupsInput"},
447
- "output":{"shape":"ListDeploymentGroupsOutput"},
448
- "errors":[
449
- {"shape":"ApplicationNameRequiredException"},
450
- {"shape":"InvalidApplicationNameException"},
451
- {"shape":"ApplicationDoesNotExistException"},
452
- {"shape":"InvalidNextTokenException"}
453
- ]
454
- },
455
- "ListDeploymentInstances":{
456
- "name":"ListDeploymentInstances",
457
- "http":{
458
- "method":"POST",
459
- "requestUri":"/"
460
- },
461
- "input":{"shape":"ListDeploymentInstancesInput"},
462
- "output":{"shape":"ListDeploymentInstancesOutput"},
463
- "errors":[
464
- {"shape":"DeploymentIdRequiredException"},
465
- {"shape":"DeploymentDoesNotExistException"},
466
- {"shape":"DeploymentNotStartedException"},
467
- {"shape":"InvalidNextTokenException"},
468
- {"shape":"InvalidDeploymentIdException"},
469
- {"shape":"InvalidInstanceStatusException"},
470
- {"shape":"InvalidInstanceTypeException"}
471
- ]
472
- },
473
- "ListDeployments":{
474
- "name":"ListDeployments",
475
- "http":{
476
- "method":"POST",
477
- "requestUri":"/"
478
- },
479
- "input":{"shape":"ListDeploymentsInput"},
480
- "output":{"shape":"ListDeploymentsOutput"},
481
- "errors":[
482
- {"shape":"ApplicationNameRequiredException"},
483
- {"shape":"InvalidApplicationNameException"},
484
- {"shape":"ApplicationDoesNotExistException"},
485
- {"shape":"InvalidDeploymentGroupNameException"},
486
- {"shape":"DeploymentGroupDoesNotExistException"},
487
- {"shape":"DeploymentGroupNameRequiredException"},
488
- {"shape":"InvalidTimeRangeException"},
489
- {"shape":"InvalidDeploymentStatusException"},
490
- {"shape":"InvalidNextTokenException"}
491
- ]
492
- },
493
- "ListOnPremisesInstances":{
494
- "name":"ListOnPremisesInstances",
495
- "http":{
496
- "method":"POST",
497
- "requestUri":"/"
498
- },
499
- "input":{"shape":"ListOnPremisesInstancesInput"},
500
- "output":{"shape":"ListOnPremisesInstancesOutput"},
501
- "errors":[
502
- {"shape":"InvalidRegistrationStatusException"},
503
- {"shape":"InvalidTagFilterException"},
504
- {"shape":"InvalidNextTokenException"}
505
- ]
506
- },
507
- "RegisterApplicationRevision":{
508
- "name":"RegisterApplicationRevision",
509
- "http":{
510
- "method":"POST",
511
- "requestUri":"/"
512
- },
513
- "input":{"shape":"RegisterApplicationRevisionInput"},
514
- "errors":[
515
- {"shape":"ApplicationDoesNotExistException"},
516
- {"shape":"ApplicationNameRequiredException"},
517
- {"shape":"InvalidApplicationNameException"},
518
- {"shape":"DescriptionTooLongException"},
519
- {"shape":"RevisionRequiredException"},
520
- {"shape":"InvalidRevisionException"}
521
- ]
522
- },
523
- "RegisterOnPremisesInstance":{
524
- "name":"RegisterOnPremisesInstance",
525
- "http":{
526
- "method":"POST",
527
- "requestUri":"/"
528
- },
529
- "input":{"shape":"RegisterOnPremisesInstanceInput"},
530
- "errors":[
531
- {"shape":"InstanceNameAlreadyRegisteredException"},
532
- {"shape":"IamArnRequiredException"},
533
- {"shape":"IamSessionArnAlreadyRegisteredException"},
534
- {"shape":"IamUserArnAlreadyRegisteredException"},
535
- {"shape":"InstanceNameRequiredException"},
536
- {"shape":"IamUserArnRequiredException"},
537
- {"shape":"InvalidInstanceNameException"},
538
- {"shape":"InvalidIamSessionArnException"},
539
- {"shape":"InvalidIamUserArnException"},
540
- {"shape":"MultipleIamArnsProvidedException"}
541
- ]
542
- },
543
- "RemoveTagsFromOnPremisesInstances":{
544
- "name":"RemoveTagsFromOnPremisesInstances",
545
- "http":{
546
- "method":"POST",
547
- "requestUri":"/"
548
- },
549
- "input":{"shape":"RemoveTagsFromOnPremisesInstancesInput"},
550
- "errors":[
551
- {"shape":"InstanceNameRequiredException"},
552
- {"shape":"TagRequiredException"},
553
- {"shape":"InvalidTagException"},
554
- {"shape":"TagLimitExceededException"},
555
- {"shape":"InstanceLimitExceededException"},
556
- {"shape":"InstanceNotRegisteredException"}
557
- ]
558
- },
559
- "SkipWaitTimeForInstanceTermination":{
560
- "name":"SkipWaitTimeForInstanceTermination",
561
- "http":{
562
- "method":"POST",
563
- "requestUri":"/"
564
- },
565
- "input":{"shape":"SkipWaitTimeForInstanceTerminationInput"},
566
- "errors":[
567
- {"shape":"DeploymentIdRequiredException"},
568
- {"shape":"DeploymentDoesNotExistException"},
569
- {"shape":"DeploymentAlreadyCompletedException"},
570
- {"shape":"InvalidDeploymentIdException"},
571
- {"shape":"DeploymentNotStartedException"},
572
- {"shape":"UnsupportedActionForDeploymentTypeException"}
573
- ]
574
- },
575
- "StopDeployment":{
576
- "name":"StopDeployment",
577
- "http":{
578
- "method":"POST",
579
- "requestUri":"/"
580
- },
581
- "input":{"shape":"StopDeploymentInput"},
582
- "output":{"shape":"StopDeploymentOutput"},
583
- "errors":[
584
- {"shape":"DeploymentIdRequiredException"},
585
- {"shape":"DeploymentDoesNotExistException"},
586
- {"shape":"DeploymentAlreadyCompletedException"},
587
- {"shape":"InvalidDeploymentIdException"}
588
- ]
589
- },
590
- "UpdateApplication":{
591
- "name":"UpdateApplication",
592
- "http":{
593
- "method":"POST",
594
- "requestUri":"/"
595
- },
596
- "input":{"shape":"UpdateApplicationInput"},
597
- "errors":[
598
- {"shape":"ApplicationNameRequiredException"},
599
- {"shape":"InvalidApplicationNameException"},
600
- {"shape":"ApplicationAlreadyExistsException"},
601
- {"shape":"ApplicationDoesNotExistException"}
602
- ]
603
- },
604
- "UpdateDeploymentGroup":{
605
- "name":"UpdateDeploymentGroup",
606
- "http":{
607
- "method":"POST",
608
- "requestUri":"/"
609
- },
610
- "input":{"shape":"UpdateDeploymentGroupInput"},
611
- "output":{"shape":"UpdateDeploymentGroupOutput"},
612
- "errors":[
613
- {"shape":"ApplicationNameRequiredException"},
614
- {"shape":"InvalidApplicationNameException"},
615
- {"shape":"ApplicationDoesNotExistException"},
616
- {"shape":"InvalidDeploymentGroupNameException"},
617
- {"shape":"DeploymentGroupAlreadyExistsException"},
618
- {"shape":"DeploymentGroupNameRequiredException"},
619
- {"shape":"DeploymentGroupDoesNotExistException"},
620
- {"shape":"InvalidEC2TagException"},
621
- {"shape":"InvalidTagException"},
622
- {"shape":"InvalidAutoScalingGroupException"},
623
- {"shape":"InvalidDeploymentConfigNameException"},
624
- {"shape":"DeploymentConfigDoesNotExistException"},
625
- {"shape":"InvalidRoleException"},
626
- {"shape":"LifecycleHookLimitExceededException"},
627
- {"shape":"InvalidTriggerConfigException"},
628
- {"shape":"TriggerTargetsLimitExceededException"},
629
- {"shape":"InvalidAlarmConfigException"},
630
- {"shape":"AlarmsLimitExceededException"},
631
- {"shape":"InvalidAutoRollbackConfigException"},
632
- {"shape":"InvalidLoadBalancerInfoException"},
633
- {"shape":"InvalidDeploymentStyleException"},
634
- {"shape":"InvalidBlueGreenDeploymentConfigurationException"}
635
- ]
636
- }
637
- },
638
- "shapes":{
639
- "AddTagsToOnPremisesInstancesInput":{
640
- "type":"structure",
641
- "required":[
642
- "tags",
643
- "instanceNames"
644
- ],
645
- "members":{
646
- "tags":{"shape":"TagList"},
647
- "instanceNames":{"shape":"InstanceNameList"}
648
- }
649
- },
650
- "AdditionalDeploymentStatusInfo":{"type":"string"},
651
- "Alarm":{
652
- "type":"structure",
653
- "members":{
654
- "name":{"shape":"AlarmName"}
655
- }
656
- },
657
- "AlarmConfiguration":{
658
- "type":"structure",
659
- "members":{
660
- "enabled":{"shape":"Boolean"},
661
- "ignorePollAlarmFailure":{"shape":"Boolean"},
662
- "alarms":{"shape":"AlarmList"}
663
- }
664
- },
665
- "AlarmList":{
666
- "type":"list",
667
- "member":{"shape":"Alarm"}
668
- },
669
- "AlarmName":{"type":"string"},
670
- "AlarmsLimitExceededException":{
671
- "type":"structure",
672
- "members":{
673
- },
674
- "exception":true
675
- },
676
- "ApplicationAlreadyExistsException":{
677
- "type":"structure",
678
- "members":{
679
- },
680
- "exception":true
681
- },
682
- "ApplicationDoesNotExistException":{
683
- "type":"structure",
684
- "members":{
685
- },
686
- "exception":true
687
- },
688
- "ApplicationId":{"type":"string"},
689
- "ApplicationInfo":{
690
- "type":"structure",
691
- "members":{
692
- "applicationId":{"shape":"ApplicationId"},
693
- "applicationName":{"shape":"ApplicationName"},
694
- "createTime":{"shape":"Timestamp"},
695
- "linkedToGitHub":{"shape":"Boolean"}
696
- }
697
- },
698
- "ApplicationLimitExceededException":{
699
- "type":"structure",
700
- "members":{
701
- },
702
- "exception":true
703
- },
704
- "ApplicationName":{
705
- "type":"string",
706
- "max":100,
707
- "min":1
708
- },
709
- "ApplicationNameRequiredException":{
710
- "type":"structure",
711
- "members":{
712
- },
713
- "exception":true
714
- },
715
- "ApplicationRevisionSortBy":{
716
- "type":"string",
717
- "enum":[
718
- "registerTime",
719
- "firstUsedTime",
720
- "lastUsedTime"
721
- ]
722
- },
723
- "ApplicationsInfoList":{
724
- "type":"list",
725
- "member":{"shape":"ApplicationInfo"}
726
- },
727
- "ApplicationsList":{
728
- "type":"list",
729
- "member":{"shape":"ApplicationName"}
730
- },
731
- "AutoRollbackConfiguration":{
732
- "type":"structure",
733
- "members":{
734
- "enabled":{"shape":"Boolean"},
735
- "events":{"shape":"AutoRollbackEventsList"}
736
- }
737
- },
738
- "AutoRollbackEvent":{
739
- "type":"string",
740
- "enum":[
741
- "DEPLOYMENT_FAILURE",
742
- "DEPLOYMENT_STOP_ON_ALARM",
743
- "DEPLOYMENT_STOP_ON_REQUEST"
744
- ]
745
- },
746
- "AutoRollbackEventsList":{
747
- "type":"list",
748
- "member":{"shape":"AutoRollbackEvent"}
749
- },
750
- "AutoScalingGroup":{
751
- "type":"structure",
752
- "members":{
753
- "name":{"shape":"AutoScalingGroupName"},
754
- "hook":{"shape":"AutoScalingGroupHook"}
755
- }
756
- },
757
- "AutoScalingGroupHook":{"type":"string"},
758
- "AutoScalingGroupList":{
759
- "type":"list",
760
- "member":{"shape":"AutoScalingGroup"}
761
- },
762
- "AutoScalingGroupName":{"type":"string"},
763
- "AutoScalingGroupNameList":{
764
- "type":"list",
765
- "member":{"shape":"AutoScalingGroupName"}
766
- },
767
- "BatchGetApplicationRevisionsInput":{
768
- "type":"structure",
769
- "required":[
770
- "applicationName",
771
- "revisions"
772
- ],
773
- "members":{
774
- "applicationName":{"shape":"ApplicationName"},
775
- "revisions":{"shape":"RevisionLocationList"}
776
- }
777
- },
778
- "BatchGetApplicationRevisionsOutput":{
779
- "type":"structure",
780
- "members":{
781
- "applicationName":{"shape":"ApplicationName"},
782
- "errorMessage":{"shape":"ErrorMessage"},
783
- "revisions":{"shape":"RevisionInfoList"}
784
- }
785
- },
786
- "BatchGetApplicationsInput":{
787
- "type":"structure",
788
- "members":{
789
- "applicationNames":{"shape":"ApplicationsList"}
790
- }
791
- },
792
- "BatchGetApplicationsOutput":{
793
- "type":"structure",
794
- "members":{
795
- "applicationsInfo":{"shape":"ApplicationsInfoList"}
796
- }
797
- },
798
- "BatchGetDeploymentGroupsInput":{
799
- "type":"structure",
800
- "required":[
801
- "applicationName",
802
- "deploymentGroupNames"
803
- ],
804
- "members":{
805
- "applicationName":{"shape":"ApplicationName"},
806
- "deploymentGroupNames":{"shape":"DeploymentGroupsList"}
807
- }
808
- },
809
- "BatchGetDeploymentGroupsOutput":{
810
- "type":"structure",
811
- "members":{
812
- "deploymentGroupsInfo":{"shape":"DeploymentGroupInfoList"},
813
- "errorMessage":{"shape":"ErrorMessage"}
814
- }
815
- },
816
- "BatchGetDeploymentInstancesInput":{
817
- "type":"structure",
818
- "required":[
819
- "deploymentId",
820
- "instanceIds"
821
- ],
822
- "members":{
823
- "deploymentId":{"shape":"DeploymentId"},
824
- "instanceIds":{"shape":"InstancesList"}
825
- }
826
- },
827
- "BatchGetDeploymentInstancesOutput":{
828
- "type":"structure",
829
- "members":{
830
- "instancesSummary":{"shape":"InstanceSummaryList"},
831
- "errorMessage":{"shape":"ErrorMessage"}
832
- }
833
- },
834
- "BatchGetDeploymentsInput":{
835
- "type":"structure",
836
- "members":{
837
- "deploymentIds":{"shape":"DeploymentsList"}
838
- }
839
- },
840
- "BatchGetDeploymentsOutput":{
841
- "type":"structure",
842
- "members":{
843
- "deploymentsInfo":{"shape":"DeploymentsInfoList"}
844
- }
845
- },
846
- "BatchGetOnPremisesInstancesInput":{
847
- "type":"structure",
848
- "members":{
849
- "instanceNames":{"shape":"InstanceNameList"}
850
- }
851
- },
852
- "BatchGetOnPremisesInstancesOutput":{
853
- "type":"structure",
854
- "members":{
855
- "instanceInfos":{"shape":"InstanceInfoList"}
856
- }
857
- },
858
- "BatchLimitExceededException":{
859
- "type":"structure",
860
- "members":{
861
- },
862
- "exception":true
863
- },
864
- "BlueGreenDeploymentConfiguration":{
865
- "type":"structure",
866
- "members":{
867
- "terminateBlueInstancesOnDeploymentSuccess":{"shape":"BlueInstanceTerminationOption"},
868
- "deploymentReadyOption":{"shape":"DeploymentReadyOption"},
869
- "greenFleetProvisioningOption":{"shape":"GreenFleetProvisioningOption"}
870
- }
871
- },
872
- "BlueInstanceTerminationOption":{
873
- "type":"structure",
874
- "members":{
875
- "action":{"shape":"InstanceAction"},
876
- "terminationWaitTimeInMinutes":{"shape":"Duration"}
877
- }
878
- },
879
- "Boolean":{"type":"boolean"},
880
- "BucketNameFilterRequiredException":{
881
- "type":"structure",
882
- "members":{
883
- },
884
- "exception":true
885
- },
886
- "BundleType":{
887
- "type":"string",
888
- "enum":[
889
- "tar",
890
- "tgz",
891
- "zip"
892
- ]
893
- },
894
- "CommitId":{"type":"string"},
895
- "ContinueDeploymentInput":{
896
- "type":"structure",
897
- "members":{
898
- "deploymentId":{"shape":"DeploymentId"}
899
- }
900
- },
901
- "CreateApplicationInput":{
902
- "type":"structure",
903
- "required":["applicationName"],
904
- "members":{
905
- "applicationName":{"shape":"ApplicationName"}
906
- }
907
- },
908
- "CreateApplicationOutput":{
909
- "type":"structure",
910
- "members":{
911
- "applicationId":{"shape":"ApplicationId"}
912
- }
913
- },
914
- "CreateDeploymentConfigInput":{
915
- "type":"structure",
916
- "required":["deploymentConfigName"],
917
- "members":{
918
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
919
- "minimumHealthyHosts":{"shape":"MinimumHealthyHosts"}
920
- }
921
- },
922
- "CreateDeploymentConfigOutput":{
923
- "type":"structure",
924
- "members":{
925
- "deploymentConfigId":{"shape":"DeploymentConfigId"}
926
- }
927
- },
928
- "CreateDeploymentGroupInput":{
929
- "type":"structure",
930
- "required":[
931
- "applicationName",
932
- "deploymentGroupName",
933
- "serviceRoleArn"
934
- ],
935
- "members":{
936
- "applicationName":{"shape":"ApplicationName"},
937
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
938
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
939
- "ec2TagFilters":{"shape":"EC2TagFilterList"},
940
- "onPremisesInstanceTagFilters":{"shape":"TagFilterList"},
941
- "autoScalingGroups":{"shape":"AutoScalingGroupNameList"},
942
- "serviceRoleArn":{"shape":"Role"},
943
- "triggerConfigurations":{"shape":"TriggerConfigList"},
944
- "alarmConfiguration":{"shape":"AlarmConfiguration"},
945
- "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
946
- "deploymentStyle":{"shape":"DeploymentStyle"},
947
- "blueGreenDeploymentConfiguration":{"shape":"BlueGreenDeploymentConfiguration"},
948
- "loadBalancerInfo":{"shape":"LoadBalancerInfo"}
949
- }
950
- },
951
- "CreateDeploymentGroupOutput":{
952
- "type":"structure",
953
- "members":{
954
- "deploymentGroupId":{"shape":"DeploymentGroupId"}
955
- }
956
- },
957
- "CreateDeploymentInput":{
958
- "type":"structure",
959
- "required":["applicationName"],
960
- "members":{
961
- "applicationName":{"shape":"ApplicationName"},
962
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
963
- "revision":{"shape":"RevisionLocation"},
964
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
965
- "description":{"shape":"Description"},
966
- "ignoreApplicationStopFailures":{"shape":"Boolean"},
967
- "targetInstances":{"shape":"TargetInstances"},
968
- "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
969
- "updateOutdatedInstancesOnly":{"shape":"Boolean"}
970
- }
971
- },
972
- "CreateDeploymentOutput":{
973
- "type":"structure",
974
- "members":{
975
- "deploymentId":{"shape":"DeploymentId"}
976
- }
977
- },
978
- "DeleteApplicationInput":{
979
- "type":"structure",
980
- "required":["applicationName"],
981
- "members":{
982
- "applicationName":{"shape":"ApplicationName"}
983
- }
984
- },
985
- "DeleteDeploymentConfigInput":{
986
- "type":"structure",
987
- "required":["deploymentConfigName"],
988
- "members":{
989
- "deploymentConfigName":{"shape":"DeploymentConfigName"}
990
- }
991
- },
992
- "DeleteDeploymentGroupInput":{
993
- "type":"structure",
994
- "required":[
995
- "applicationName",
996
- "deploymentGroupName"
997
- ],
998
- "members":{
999
- "applicationName":{"shape":"ApplicationName"},
1000
- "deploymentGroupName":{"shape":"DeploymentGroupName"}
1001
- }
1002
- },
1003
- "DeleteDeploymentGroupOutput":{
1004
- "type":"structure",
1005
- "members":{
1006
- "hooksNotCleanedUp":{"shape":"AutoScalingGroupList"}
1007
- }
1008
- },
1009
- "DeploymentAlreadyCompletedException":{
1010
- "type":"structure",
1011
- "members":{
1012
- },
1013
- "exception":true
1014
- },
1015
- "DeploymentConfigAlreadyExistsException":{
1016
- "type":"structure",
1017
- "members":{
1018
- },
1019
- "exception":true
1020
- },
1021
- "DeploymentConfigDoesNotExistException":{
1022
- "type":"structure",
1023
- "members":{
1024
- },
1025
- "exception":true
1026
- },
1027
- "DeploymentConfigId":{"type":"string"},
1028
- "DeploymentConfigInUseException":{
1029
- "type":"structure",
1030
- "members":{
1031
- },
1032
- "exception":true
1033
- },
1034
- "DeploymentConfigInfo":{
1035
- "type":"structure",
1036
- "members":{
1037
- "deploymentConfigId":{"shape":"DeploymentConfigId"},
1038
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
1039
- "minimumHealthyHosts":{"shape":"MinimumHealthyHosts"},
1040
- "createTime":{"shape":"Timestamp"}
1041
- }
1042
- },
1043
- "DeploymentConfigLimitExceededException":{
1044
- "type":"structure",
1045
- "members":{
1046
- },
1047
- "exception":true
1048
- },
1049
- "DeploymentConfigName":{
1050
- "type":"string",
1051
- "max":100,
1052
- "min":1
1053
- },
1054
- "DeploymentConfigNameRequiredException":{
1055
- "type":"structure",
1056
- "members":{
1057
- },
1058
- "exception":true
1059
- },
1060
- "DeploymentConfigsList":{
1061
- "type":"list",
1062
- "member":{"shape":"DeploymentConfigName"}
1063
- },
1064
- "DeploymentCreator":{
1065
- "type":"string",
1066
- "enum":[
1067
- "user",
1068
- "autoscaling",
1069
- "codeDeployRollback"
1070
- ]
1071
- },
1072
- "DeploymentDoesNotExistException":{
1073
- "type":"structure",
1074
- "members":{
1075
- },
1076
- "exception":true
1077
- },
1078
- "DeploymentGroupAlreadyExistsException":{
1079
- "type":"structure",
1080
- "members":{
1081
- },
1082
- "exception":true
1083
- },
1084
- "DeploymentGroupDoesNotExistException":{
1085
- "type":"structure",
1086
- "members":{
1087
- },
1088
- "exception":true
1089
- },
1090
- "DeploymentGroupId":{"type":"string"},
1091
- "DeploymentGroupInfo":{
1092
- "type":"structure",
1093
- "members":{
1094
- "applicationName":{"shape":"ApplicationName"},
1095
- "deploymentGroupId":{"shape":"DeploymentGroupId"},
1096
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
1097
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
1098
- "ec2TagFilters":{"shape":"EC2TagFilterList"},
1099
- "onPremisesInstanceTagFilters":{"shape":"TagFilterList"},
1100
- "autoScalingGroups":{"shape":"AutoScalingGroupList"},
1101
- "serviceRoleArn":{"shape":"Role"},
1102
- "targetRevision":{"shape":"RevisionLocation"},
1103
- "triggerConfigurations":{"shape":"TriggerConfigList"},
1104
- "alarmConfiguration":{"shape":"AlarmConfiguration"},
1105
- "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
1106
- "deploymentStyle":{"shape":"DeploymentStyle"},
1107
- "blueGreenDeploymentConfiguration":{"shape":"BlueGreenDeploymentConfiguration"},
1108
- "loadBalancerInfo":{"shape":"LoadBalancerInfo"}
1109
- }
1110
- },
1111
- "DeploymentGroupInfoList":{
1112
- "type":"list",
1113
- "member":{"shape":"DeploymentGroupInfo"}
1114
- },
1115
- "DeploymentGroupLimitExceededException":{
1116
- "type":"structure",
1117
- "members":{
1118
- },
1119
- "exception":true
1120
- },
1121
- "DeploymentGroupName":{
1122
- "type":"string",
1123
- "max":100,
1124
- "min":1
1125
- },
1126
- "DeploymentGroupNameRequiredException":{
1127
- "type":"structure",
1128
- "members":{
1129
- },
1130
- "exception":true
1131
- },
1132
- "DeploymentGroupsList":{
1133
- "type":"list",
1134
- "member":{"shape":"DeploymentGroupName"}
1135
- },
1136
- "DeploymentId":{"type":"string"},
1137
- "DeploymentIdRequiredException":{
1138
- "type":"structure",
1139
- "members":{
1140
- },
1141
- "exception":true
1142
- },
1143
- "DeploymentInfo":{
1144
- "type":"structure",
1145
- "members":{
1146
- "applicationName":{"shape":"ApplicationName"},
1147
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
1148
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
1149
- "deploymentId":{"shape":"DeploymentId"},
1150
- "revision":{"shape":"RevisionLocation"},
1151
- "status":{"shape":"DeploymentStatus"},
1152
- "errorInformation":{"shape":"ErrorInformation"},
1153
- "createTime":{"shape":"Timestamp"},
1154
- "startTime":{"shape":"Timestamp"},
1155
- "completeTime":{"shape":"Timestamp"},
1156
- "deploymentOverview":{"shape":"DeploymentOverview"},
1157
- "description":{"shape":"Description"},
1158
- "creator":{"shape":"DeploymentCreator"},
1159
- "ignoreApplicationStopFailures":{"shape":"Boolean"},
1160
- "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
1161
- "updateOutdatedInstancesOnly":{"shape":"Boolean"},
1162
- "rollbackInfo":{"shape":"RollbackInfo"},
1163
- "deploymentStyle":{"shape":"DeploymentStyle"},
1164
- "targetInstances":{"shape":"TargetInstances"},
1165
- "instanceTerminationWaitTimeStarted":{"shape":"Boolean"},
1166
- "blueGreenDeploymentConfiguration":{"shape":"BlueGreenDeploymentConfiguration"},
1167
- "loadBalancerInfo":{"shape":"LoadBalancerInfo"},
1168
- "additionalDeploymentStatusInfo":{"shape":"AdditionalDeploymentStatusInfo"}
1169
- }
1170
- },
1171
- "DeploymentIsNotInReadyStateException":{
1172
- "type":"structure",
1173
- "members":{
1174
- },
1175
- "exception":true
1176
- },
1177
- "DeploymentLimitExceededException":{
1178
- "type":"structure",
1179
- "members":{
1180
- },
1181
- "exception":true
1182
- },
1183
- "DeploymentNotStartedException":{
1184
- "type":"structure",
1185
- "members":{
1186
- },
1187
- "exception":true
1188
- },
1189
- "DeploymentOption":{
1190
- "type":"string",
1191
- "enum":[
1192
- "WITH_TRAFFIC_CONTROL",
1193
- "WITHOUT_TRAFFIC_CONTROL"
1194
- ]
1195
- },
1196
- "DeploymentOverview":{
1197
- "type":"structure",
1198
- "members":{
1199
- "Pending":{"shape":"InstanceCount"},
1200
- "InProgress":{"shape":"InstanceCount"},
1201
- "Succeeded":{"shape":"InstanceCount"},
1202
- "Failed":{"shape":"InstanceCount"},
1203
- "Skipped":{"shape":"InstanceCount"},
1204
- "Ready":{"shape":"InstanceCount"}
1205
- }
1206
- },
1207
- "DeploymentReadyAction":{
1208
- "type":"string",
1209
- "enum":[
1210
- "CONTINUE_DEPLOYMENT",
1211
- "STOP_DEPLOYMENT"
1212
- ]
1213
- },
1214
- "DeploymentReadyOption":{
1215
- "type":"structure",
1216
- "members":{
1217
- "actionOnTimeout":{"shape":"DeploymentReadyAction"},
1218
- "waitTimeInMinutes":{"shape":"Duration"}
1219
- }
1220
- },
1221
- "DeploymentStatus":{
1222
- "type":"string",
1223
- "enum":[
1224
- "Created",
1225
- "Queued",
1226
- "InProgress",
1227
- "Succeeded",
1228
- "Failed",
1229
- "Stopped",
1230
- "Ready"
1231
- ]
1232
- },
1233
- "DeploymentStatusList":{
1234
- "type":"list",
1235
- "member":{"shape":"DeploymentStatus"}
1236
- },
1237
- "DeploymentStyle":{
1238
- "type":"structure",
1239
- "members":{
1240
- "deploymentType":{"shape":"DeploymentType"},
1241
- "deploymentOption":{"shape":"DeploymentOption"}
1242
- }
1243
- },
1244
- "DeploymentType":{
1245
- "type":"string",
1246
- "enum":[
1247
- "IN_PLACE",
1248
- "BLUE_GREEN"
1249
- ]
1250
- },
1251
- "DeploymentsInfoList":{
1252
- "type":"list",
1253
- "member":{"shape":"DeploymentInfo"}
1254
- },
1255
- "DeploymentsList":{
1256
- "type":"list",
1257
- "member":{"shape":"DeploymentId"}
1258
- },
1259
- "DeregisterOnPremisesInstanceInput":{
1260
- "type":"structure",
1261
- "required":["instanceName"],
1262
- "members":{
1263
- "instanceName":{"shape":"InstanceName"}
1264
- }
1265
- },
1266
- "Description":{"type":"string"},
1267
- "DescriptionTooLongException":{
1268
- "type":"structure",
1269
- "members":{
1270
- },
1271
- "exception":true
1272
- },
1273
- "Diagnostics":{
1274
- "type":"structure",
1275
- "members":{
1276
- "errorCode":{"shape":"LifecycleErrorCode"},
1277
- "scriptName":{"shape":"ScriptName"},
1278
- "message":{"shape":"LifecycleMessage"},
1279
- "logTail":{"shape":"LogTail"}
1280
- }
1281
- },
1282
- "Duration":{"type":"integer"},
1283
- "EC2TagFilter":{
1284
- "type":"structure",
1285
- "members":{
1286
- "Key":{"shape":"Key"},
1287
- "Value":{"shape":"Value"},
1288
- "Type":{"shape":"EC2TagFilterType"}
1289
- }
1290
- },
1291
- "EC2TagFilterList":{
1292
- "type":"list",
1293
- "member":{"shape":"EC2TagFilter"}
1294
- },
1295
- "EC2TagFilterType":{
1296
- "type":"string",
1297
- "enum":[
1298
- "KEY_ONLY",
1299
- "VALUE_ONLY",
1300
- "KEY_AND_VALUE"
1301
- ]
1302
- },
1303
- "ELBInfo":{
1304
- "type":"structure",
1305
- "members":{
1306
- "name":{"shape":"ELBName"}
1307
- }
1308
- },
1309
- "ELBInfoList":{
1310
- "type":"list",
1311
- "member":{"shape":"ELBInfo"}
1312
- },
1313
- "ELBName":{"type":"string"},
1314
- "ETag":{"type":"string"},
1315
- "ErrorCode":{
1316
- "type":"string",
1317
- "enum":[
1318
- "DEPLOYMENT_GROUP_MISSING",
1319
- "APPLICATION_MISSING",
1320
- "REVISION_MISSING",
1321
- "IAM_ROLE_MISSING",
1322
- "IAM_ROLE_PERMISSIONS",
1323
- "NO_EC2_SUBSCRIPTION",
1324
- "OVER_MAX_INSTANCES",
1325
- "NO_INSTANCES",
1326
- "TIMEOUT",
1327
- "HEALTH_CONSTRAINTS_INVALID",
1328
- "HEALTH_CONSTRAINTS",
1329
- "INTERNAL_ERROR",
1330
- "THROTTLED",
1331
- "ALARM_ACTIVE",
1332
- "AGENT_ISSUE",
1333
- "AUTO_SCALING_IAM_ROLE_PERMISSIONS",
1334
- "AUTO_SCALING_CONFIGURATION",
1335
- "MANUAL_STOP"
1336
- ]
1337
- },
1338
- "ErrorInformation":{
1339
- "type":"structure",
1340
- "members":{
1341
- "code":{"shape":"ErrorCode"},
1342
- "message":{"shape":"ErrorMessage"}
1343
- }
1344
- },
1345
- "ErrorMessage":{"type":"string"},
1346
- "GenericRevisionInfo":{
1347
- "type":"structure",
1348
- "members":{
1349
- "description":{"shape":"Description"},
1350
- "deploymentGroups":{"shape":"DeploymentGroupsList"},
1351
- "firstUsedTime":{"shape":"Timestamp"},
1352
- "lastUsedTime":{"shape":"Timestamp"},
1353
- "registerTime":{"shape":"Timestamp"}
1354
- }
1355
- },
1356
- "GetApplicationInput":{
1357
- "type":"structure",
1358
- "required":["applicationName"],
1359
- "members":{
1360
- "applicationName":{"shape":"ApplicationName"}
1361
- }
1362
- },
1363
- "GetApplicationOutput":{
1364
- "type":"structure",
1365
- "members":{
1366
- "application":{"shape":"ApplicationInfo"}
1367
- }
1368
- },
1369
- "GetApplicationRevisionInput":{
1370
- "type":"structure",
1371
- "required":[
1372
- "applicationName",
1373
- "revision"
1374
- ],
1375
- "members":{
1376
- "applicationName":{"shape":"ApplicationName"},
1377
- "revision":{"shape":"RevisionLocation"}
1378
- }
1379
- },
1380
- "GetApplicationRevisionOutput":{
1381
- "type":"structure",
1382
- "members":{
1383
- "applicationName":{"shape":"ApplicationName"},
1384
- "revision":{"shape":"RevisionLocation"},
1385
- "revisionInfo":{"shape":"GenericRevisionInfo"}
1386
- }
1387
- },
1388
- "GetDeploymentConfigInput":{
1389
- "type":"structure",
1390
- "required":["deploymentConfigName"],
1391
- "members":{
1392
- "deploymentConfigName":{"shape":"DeploymentConfigName"}
1393
- }
1394
- },
1395
- "GetDeploymentConfigOutput":{
1396
- "type":"structure",
1397
- "members":{
1398
- "deploymentConfigInfo":{"shape":"DeploymentConfigInfo"}
1399
- }
1400
- },
1401
- "GetDeploymentGroupInput":{
1402
- "type":"structure",
1403
- "required":[
1404
- "applicationName",
1405
- "deploymentGroupName"
1406
- ],
1407
- "members":{
1408
- "applicationName":{"shape":"ApplicationName"},
1409
- "deploymentGroupName":{"shape":"DeploymentGroupName"}
1410
- }
1411
- },
1412
- "GetDeploymentGroupOutput":{
1413
- "type":"structure",
1414
- "members":{
1415
- "deploymentGroupInfo":{"shape":"DeploymentGroupInfo"}
1416
- }
1417
- },
1418
- "GetDeploymentInput":{
1419
- "type":"structure",
1420
- "required":["deploymentId"],
1421
- "members":{
1422
- "deploymentId":{"shape":"DeploymentId"}
1423
- }
1424
- },
1425
- "GetDeploymentInstanceInput":{
1426
- "type":"structure",
1427
- "required":[
1428
- "deploymentId",
1429
- "instanceId"
1430
- ],
1431
- "members":{
1432
- "deploymentId":{"shape":"DeploymentId"},
1433
- "instanceId":{"shape":"InstanceId"}
1434
- }
1435
- },
1436
- "GetDeploymentInstanceOutput":{
1437
- "type":"structure",
1438
- "members":{
1439
- "instanceSummary":{"shape":"InstanceSummary"}
1440
- }
1441
- },
1442
- "GetDeploymentOutput":{
1443
- "type":"structure",
1444
- "members":{
1445
- "deploymentInfo":{"shape":"DeploymentInfo"}
1446
- }
1447
- },
1448
- "GetOnPremisesInstanceInput":{
1449
- "type":"structure",
1450
- "required":["instanceName"],
1451
- "members":{
1452
- "instanceName":{"shape":"InstanceName"}
1453
- }
1454
- },
1455
- "GetOnPremisesInstanceOutput":{
1456
- "type":"structure",
1457
- "members":{
1458
- "instanceInfo":{"shape":"InstanceInfo"}
1459
- }
1460
- },
1461
- "GitHubLocation":{
1462
- "type":"structure",
1463
- "members":{
1464
- "repository":{"shape":"Repository"},
1465
- "commitId":{"shape":"CommitId"}
1466
- }
1467
- },
1468
- "GreenFleetProvisioningAction":{
1469
- "type":"string",
1470
- "enum":[
1471
- "DISCOVER_EXISTING",
1472
- "COPY_AUTO_SCALING_GROUP"
1473
- ]
1474
- },
1475
- "GreenFleetProvisioningOption":{
1476
- "type":"structure",
1477
- "members":{
1478
- "action":{"shape":"GreenFleetProvisioningAction"}
1479
- }
1480
- },
1481
- "IamArnRequiredException":{
1482
- "type":"structure",
1483
- "members":{
1484
- },
1485
- "exception":true
1486
- },
1487
- "IamSessionArn":{"type":"string"},
1488
- "IamSessionArnAlreadyRegisteredException":{
1489
- "type":"structure",
1490
- "members":{
1491
- },
1492
- "exception":true
1493
- },
1494
- "IamUserArn":{"type":"string"},
1495
- "IamUserArnAlreadyRegisteredException":{
1496
- "type":"structure",
1497
- "members":{
1498
- },
1499
- "exception":true
1500
- },
1501
- "IamUserArnRequiredException":{
1502
- "type":"structure",
1503
- "members":{
1504
- },
1505
- "exception":true
1506
- },
1507
- "InstanceAction":{
1508
- "type":"string",
1509
- "enum":[
1510
- "TERMINATE",
1511
- "KEEP_ALIVE"
1512
- ]
1513
- },
1514
- "InstanceArn":{"type":"string"},
1515
- "InstanceCount":{"type":"long"},
1516
- "InstanceDoesNotExistException":{
1517
- "type":"structure",
1518
- "members":{
1519
- },
1520
- "exception":true
1521
- },
1522
- "InstanceId":{"type":"string"},
1523
- "InstanceIdRequiredException":{
1524
- "type":"structure",
1525
- "members":{
1526
- },
1527
- "exception":true
1528
- },
1529
- "InstanceInfo":{
1530
- "type":"structure",
1531
- "members":{
1532
- "instanceName":{"shape":"InstanceName"},
1533
- "iamSessionArn":{"shape":"IamSessionArn"},
1534
- "iamUserArn":{"shape":"IamUserArn"},
1535
- "instanceArn":{"shape":"InstanceArn"},
1536
- "registerTime":{"shape":"Timestamp"},
1537
- "deregisterTime":{"shape":"Timestamp"},
1538
- "tags":{"shape":"TagList"}
1539
- }
1540
- },
1541
- "InstanceInfoList":{
1542
- "type":"list",
1543
- "member":{"shape":"InstanceInfo"}
1544
- },
1545
- "InstanceLimitExceededException":{
1546
- "type":"structure",
1547
- "members":{
1548
- },
1549
- "exception":true
1550
- },
1551
- "InstanceName":{"type":"string"},
1552
- "InstanceNameAlreadyRegisteredException":{
1553
- "type":"structure",
1554
- "members":{
1555
- },
1556
- "exception":true
1557
- },
1558
- "InstanceNameList":{
1559
- "type":"list",
1560
- "member":{"shape":"InstanceName"}
1561
- },
1562
- "InstanceNameRequiredException":{
1563
- "type":"structure",
1564
- "members":{
1565
- },
1566
- "exception":true
1567
- },
1568
- "InstanceNotRegisteredException":{
1569
- "type":"structure",
1570
- "members":{
1571
- },
1572
- "exception":true
1573
- },
1574
- "InstanceStatus":{
1575
- "type":"string",
1576
- "enum":[
1577
- "Pending",
1578
- "InProgress",
1579
- "Succeeded",
1580
- "Failed",
1581
- "Skipped",
1582
- "Unknown",
1583
- "Ready"
1584
- ]
1585
- },
1586
- "InstanceStatusList":{
1587
- "type":"list",
1588
- "member":{"shape":"InstanceStatus"}
1589
- },
1590
- "InstanceSummary":{
1591
- "type":"structure",
1592
- "members":{
1593
- "deploymentId":{"shape":"DeploymentId"},
1594
- "instanceId":{"shape":"InstanceId"},
1595
- "status":{"shape":"InstanceStatus"},
1596
- "lastUpdatedAt":{"shape":"Timestamp"},
1597
- "lifecycleEvents":{"shape":"LifecycleEventList"},
1598
- "instanceType":{"shape":"InstanceType"}
1599
- }
1600
- },
1601
- "InstanceSummaryList":{
1602
- "type":"list",
1603
- "member":{"shape":"InstanceSummary"}
1604
- },
1605
- "InstanceType":{
1606
- "type":"string",
1607
- "enum":[
1608
- "Blue",
1609
- "Green"
1610
- ]
1611
- },
1612
- "InstanceTypeList":{
1613
- "type":"list",
1614
- "member":{"shape":"InstanceType"}
1615
- },
1616
- "InstancesList":{
1617
- "type":"list",
1618
- "member":{"shape":"InstanceId"}
1619
- },
1620
- "InvalidAlarmConfigException":{
1621
- "type":"structure",
1622
- "members":{
1623
- },
1624
- "exception":true
1625
- },
1626
- "InvalidApplicationNameException":{
1627
- "type":"structure",
1628
- "members":{
1629
- },
1630
- "exception":true
1631
- },
1632
- "InvalidAutoRollbackConfigException":{
1633
- "type":"structure",
1634
- "members":{
1635
- },
1636
- "exception":true
1637
- },
1638
- "InvalidAutoScalingGroupException":{
1639
- "type":"structure",
1640
- "members":{
1641
- },
1642
- "exception":true
1643
- },
1644
- "InvalidBlueGreenDeploymentConfigurationException":{
1645
- "type":"structure",
1646
- "members":{
1647
- },
1648
- "exception":true
1649
- },
1650
- "InvalidBucketNameFilterException":{
1651
- "type":"structure",
1652
- "members":{
1653
- },
1654
- "exception":true
1655
- },
1656
- "InvalidDeployedStateFilterException":{
1657
- "type":"structure",
1658
- "members":{
1659
- },
1660
- "exception":true
1661
- },
1662
- "InvalidDeploymentConfigNameException":{
1663
- "type":"structure",
1664
- "members":{
1665
- },
1666
- "exception":true
1667
- },
1668
- "InvalidDeploymentGroupNameException":{
1669
- "type":"structure",
1670
- "members":{
1671
- },
1672
- "exception":true
1673
- },
1674
- "InvalidDeploymentIdException":{
1675
- "type":"structure",
1676
- "members":{
1677
- },
1678
- "exception":true
1679
- },
1680
- "InvalidDeploymentStatusException":{
1681
- "type":"structure",
1682
- "members":{
1683
- },
1684
- "exception":true
1685
- },
1686
- "InvalidDeploymentStyleException":{
1687
- "type":"structure",
1688
- "members":{
1689
- },
1690
- "exception":true
1691
- },
1692
- "InvalidEC2TagException":{
1693
- "type":"structure",
1694
- "members":{
1695
- },
1696
- "exception":true
1697
- },
1698
- "InvalidIamSessionArnException":{
1699
- "type":"structure",
1700
- "members":{
1701
- },
1702
- "exception":true
1703
- },
1704
- "InvalidIamUserArnException":{
1705
- "type":"structure",
1706
- "members":{
1707
- },
1708
- "exception":true
1709
- },
1710
- "InvalidInstanceNameException":{
1711
- "type":"structure",
1712
- "members":{
1713
- },
1714
- "exception":true
1715
- },
1716
- "InvalidInstanceStatusException":{
1717
- "type":"structure",
1718
- "members":{
1719
- },
1720
- "exception":true
1721
- },
1722
- "InvalidInstanceTypeException":{
1723
- "type":"structure",
1724
- "members":{
1725
- },
1726
- "exception":true
1727
- },
1728
- "InvalidKeyPrefixFilterException":{
1729
- "type":"structure",
1730
- "members":{
1731
- },
1732
- "exception":true
1733
- },
1734
- "InvalidLoadBalancerInfoException":{
1735
- "type":"structure",
1736
- "members":{
1737
- },
1738
- "exception":true
1739
- },
1740
- "InvalidMinimumHealthyHostValueException":{
1741
- "type":"structure",
1742
- "members":{
1743
- },
1744
- "exception":true
1745
- },
1746
- "InvalidNextTokenException":{
1747
- "type":"structure",
1748
- "members":{
1749
- },
1750
- "exception":true
1751
- },
1752
- "InvalidOperationException":{
1753
- "type":"structure",
1754
- "members":{
1755
- },
1756
- "exception":true
1757
- },
1758
- "InvalidRegistrationStatusException":{
1759
- "type":"structure",
1760
- "members":{
1761
- },
1762
- "exception":true
1763
- },
1764
- "InvalidRevisionException":{
1765
- "type":"structure",
1766
- "members":{
1767
- },
1768
- "exception":true
1769
- },
1770
- "InvalidRoleException":{
1771
- "type":"structure",
1772
- "members":{
1773
- },
1774
- "exception":true
1775
- },
1776
- "InvalidSortByException":{
1777
- "type":"structure",
1778
- "members":{
1779
- },
1780
- "exception":true
1781
- },
1782
- "InvalidSortOrderException":{
1783
- "type":"structure",
1784
- "members":{
1785
- },
1786
- "exception":true
1787
- },
1788
- "InvalidTagException":{
1789
- "type":"structure",
1790
- "members":{
1791
- },
1792
- "exception":true
1793
- },
1794
- "InvalidTagFilterException":{
1795
- "type":"structure",
1796
- "members":{
1797
- },
1798
- "exception":true
1799
- },
1800
- "InvalidTargetInstancesException":{
1801
- "type":"structure",
1802
- "members":{
1803
- },
1804
- "exception":true
1805
- },
1806
- "InvalidTimeRangeException":{
1807
- "type":"structure",
1808
- "members":{
1809
- },
1810
- "exception":true
1811
- },
1812
- "InvalidTriggerConfigException":{
1813
- "type":"structure",
1814
- "members":{
1815
- },
1816
- "exception":true
1817
- },
1818
- "Key":{"type":"string"},
1819
- "LifecycleErrorCode":{
1820
- "type":"string",
1821
- "enum":[
1822
- "Success",
1823
- "ScriptMissing",
1824
- "ScriptNotExecutable",
1825
- "ScriptTimedOut",
1826
- "ScriptFailed",
1827
- "UnknownError"
1828
- ]
1829
- },
1830
- "LifecycleEvent":{
1831
- "type":"structure",
1832
- "members":{
1833
- "lifecycleEventName":{"shape":"LifecycleEventName"},
1834
- "diagnostics":{"shape":"Diagnostics"},
1835
- "startTime":{"shape":"Timestamp"},
1836
- "endTime":{"shape":"Timestamp"},
1837
- "status":{"shape":"LifecycleEventStatus"}
1838
- }
1839
- },
1840
- "LifecycleEventList":{
1841
- "type":"list",
1842
- "member":{"shape":"LifecycleEvent"}
1843
- },
1844
- "LifecycleEventName":{"type":"string"},
1845
- "LifecycleEventStatus":{
1846
- "type":"string",
1847
- "enum":[
1848
- "Pending",
1849
- "InProgress",
1850
- "Succeeded",
1851
- "Failed",
1852
- "Skipped",
1853
- "Unknown"
1854
- ]
1855
- },
1856
- "LifecycleHookLimitExceededException":{
1857
- "type":"structure",
1858
- "members":{
1859
- },
1860
- "exception":true
1861
- },
1862
- "LifecycleMessage":{"type":"string"},
1863
- "ListApplicationRevisionsInput":{
1864
- "type":"structure",
1865
- "required":["applicationName"],
1866
- "members":{
1867
- "applicationName":{"shape":"ApplicationName"},
1868
- "sortBy":{"shape":"ApplicationRevisionSortBy"},
1869
- "sortOrder":{"shape":"SortOrder"},
1870
- "s3Bucket":{"shape":"S3Bucket"},
1871
- "s3KeyPrefix":{"shape":"S3Key"},
1872
- "deployed":{"shape":"ListStateFilterAction"},
1873
- "nextToken":{"shape":"NextToken"}
1874
- }
1875
- },
1876
- "ListApplicationRevisionsOutput":{
1877
- "type":"structure",
1878
- "members":{
1879
- "revisions":{"shape":"RevisionLocationList"},
1880
- "nextToken":{"shape":"NextToken"}
1881
- }
1882
- },
1883
- "ListApplicationsInput":{
1884
- "type":"structure",
1885
- "members":{
1886
- "nextToken":{"shape":"NextToken"}
1887
- }
1888
- },
1889
- "ListApplicationsOutput":{
1890
- "type":"structure",
1891
- "members":{
1892
- "applications":{"shape":"ApplicationsList"},
1893
- "nextToken":{"shape":"NextToken"}
1894
- }
1895
- },
1896
- "ListDeploymentConfigsInput":{
1897
- "type":"structure",
1898
- "members":{
1899
- "nextToken":{"shape":"NextToken"}
1900
- }
1901
- },
1902
- "ListDeploymentConfigsOutput":{
1903
- "type":"structure",
1904
- "members":{
1905
- "deploymentConfigsList":{"shape":"DeploymentConfigsList"},
1906
- "nextToken":{"shape":"NextToken"}
1907
- }
1908
- },
1909
- "ListDeploymentGroupsInput":{
1910
- "type":"structure",
1911
- "required":["applicationName"],
1912
- "members":{
1913
- "applicationName":{"shape":"ApplicationName"},
1914
- "nextToken":{"shape":"NextToken"}
1915
- }
1916
- },
1917
- "ListDeploymentGroupsOutput":{
1918
- "type":"structure",
1919
- "members":{
1920
- "applicationName":{"shape":"ApplicationName"},
1921
- "deploymentGroups":{"shape":"DeploymentGroupsList"},
1922
- "nextToken":{"shape":"NextToken"}
1923
- }
1924
- },
1925
- "ListDeploymentInstancesInput":{
1926
- "type":"structure",
1927
- "required":["deploymentId"],
1928
- "members":{
1929
- "deploymentId":{"shape":"DeploymentId"},
1930
- "nextToken":{"shape":"NextToken"},
1931
- "instanceStatusFilter":{"shape":"InstanceStatusList"},
1932
- "instanceTypeFilter":{"shape":"InstanceTypeList"}
1933
- }
1934
- },
1935
- "ListDeploymentInstancesOutput":{
1936
- "type":"structure",
1937
- "members":{
1938
- "instancesList":{"shape":"InstancesList"},
1939
- "nextToken":{"shape":"NextToken"}
1940
- }
1941
- },
1942
- "ListDeploymentsInput":{
1943
- "type":"structure",
1944
- "members":{
1945
- "applicationName":{"shape":"ApplicationName"},
1946
- "deploymentGroupName":{"shape":"DeploymentGroupName"},
1947
- "includeOnlyStatuses":{"shape":"DeploymentStatusList"},
1948
- "createTimeRange":{"shape":"TimeRange"},
1949
- "nextToken":{"shape":"NextToken"}
1950
- }
1951
- },
1952
- "ListDeploymentsOutput":{
1953
- "type":"structure",
1954
- "members":{
1955
- "deployments":{"shape":"DeploymentsList"},
1956
- "nextToken":{"shape":"NextToken"}
1957
- }
1958
- },
1959
- "ListOnPremisesInstancesInput":{
1960
- "type":"structure",
1961
- "members":{
1962
- "registrationStatus":{"shape":"RegistrationStatus"},
1963
- "tagFilters":{"shape":"TagFilterList"},
1964
- "nextToken":{"shape":"NextToken"}
1965
- }
1966
- },
1967
- "ListOnPremisesInstancesOutput":{
1968
- "type":"structure",
1969
- "members":{
1970
- "instanceNames":{"shape":"InstanceNameList"},
1971
- "nextToken":{"shape":"NextToken"}
1972
- }
1973
- },
1974
- "ListStateFilterAction":{
1975
- "type":"string",
1976
- "enum":[
1977
- "include",
1978
- "exclude",
1979
- "ignore"
1980
- ]
1981
- },
1982
- "LoadBalancerInfo":{
1983
- "type":"structure",
1984
- "members":{
1985
- "elbInfoList":{"shape":"ELBInfoList"}
1986
- }
1987
- },
1988
- "LogTail":{"type":"string"},
1989
- "Message":{"type":"string"},
1990
- "MinimumHealthyHosts":{
1991
- "type":"structure",
1992
- "members":{
1993
- "value":{"shape":"MinimumHealthyHostsValue"},
1994
- "type":{"shape":"MinimumHealthyHostsType"}
1995
- }
1996
- },
1997
- "MinimumHealthyHostsType":{
1998
- "type":"string",
1999
- "enum":[
2000
- "HOST_COUNT",
2001
- "FLEET_PERCENT"
2002
- ]
2003
- },
2004
- "MinimumHealthyHostsValue":{"type":"integer"},
2005
- "MultipleIamArnsProvidedException":{
2006
- "type":"structure",
2007
- "members":{
2008
- },
2009
- "exception":true
2010
- },
2011
- "NextToken":{"type":"string"},
2012
- "NullableBoolean":{"type":"boolean"},
2013
- "RegisterApplicationRevisionInput":{
2014
- "type":"structure",
2015
- "required":[
2016
- "applicationName",
2017
- "revision"
2018
- ],
2019
- "members":{
2020
- "applicationName":{"shape":"ApplicationName"},
2021
- "description":{"shape":"Description"},
2022
- "revision":{"shape":"RevisionLocation"}
2023
- }
2024
- },
2025
- "RegisterOnPremisesInstanceInput":{
2026
- "type":"structure",
2027
- "required":["instanceName"],
2028
- "members":{
2029
- "instanceName":{"shape":"InstanceName"},
2030
- "iamSessionArn":{"shape":"IamSessionArn"},
2031
- "iamUserArn":{"shape":"IamUserArn"}
2032
- }
2033
- },
2034
- "RegistrationStatus":{
2035
- "type":"string",
2036
- "enum":[
2037
- "Registered",
2038
- "Deregistered"
2039
- ]
2040
- },
2041
- "RemoveTagsFromOnPremisesInstancesInput":{
2042
- "type":"structure",
2043
- "required":[
2044
- "tags",
2045
- "instanceNames"
2046
- ],
2047
- "members":{
2048
- "tags":{"shape":"TagList"},
2049
- "instanceNames":{"shape":"InstanceNameList"}
2050
- }
2051
- },
2052
- "Repository":{"type":"string"},
2053
- "RevisionDoesNotExistException":{
2054
- "type":"structure",
2055
- "members":{
2056
- },
2057
- "exception":true
2058
- },
2059
- "RevisionInfo":{
2060
- "type":"structure",
2061
- "members":{
2062
- "revisionLocation":{"shape":"RevisionLocation"},
2063
- "genericRevisionInfo":{"shape":"GenericRevisionInfo"}
2064
- }
2065
- },
2066
- "RevisionInfoList":{
2067
- "type":"list",
2068
- "member":{"shape":"RevisionInfo"}
2069
- },
2070
- "RevisionLocation":{
2071
- "type":"structure",
2072
- "members":{
2073
- "revisionType":{"shape":"RevisionLocationType"},
2074
- "s3Location":{"shape":"S3Location"},
2075
- "gitHubLocation":{"shape":"GitHubLocation"}
2076
- }
2077
- },
2078
- "RevisionLocationList":{
2079
- "type":"list",
2080
- "member":{"shape":"RevisionLocation"}
2081
- },
2082
- "RevisionLocationType":{
2083
- "type":"string",
2084
- "enum":[
2085
- "S3",
2086
- "GitHub"
2087
- ]
2088
- },
2089
- "RevisionRequiredException":{
2090
- "type":"structure",
2091
- "members":{
2092
- },
2093
- "exception":true
2094
- },
2095
- "Role":{"type":"string"},
2096
- "RoleRequiredException":{
2097
- "type":"structure",
2098
- "members":{
2099
- },
2100
- "exception":true
2101
- },
2102
- "RollbackInfo":{
2103
- "type":"structure",
2104
- "members":{
2105
- "rollbackDeploymentId":{"shape":"DeploymentId"},
2106
- "rollbackTriggeringDeploymentId":{"shape":"DeploymentId"},
2107
- "rollbackMessage":{"shape":"Description"}
2108
- }
2109
- },
2110
- "S3Bucket":{"type":"string"},
2111
- "S3Key":{"type":"string"},
2112
- "S3Location":{
2113
- "type":"structure",
2114
- "members":{
2115
- "bucket":{"shape":"S3Bucket"},
2116
- "key":{"shape":"S3Key"},
2117
- "bundleType":{"shape":"BundleType"},
2118
- "version":{"shape":"VersionId"},
2119
- "eTag":{"shape":"ETag"}
2120
- }
2121
- },
2122
- "ScriptName":{"type":"string"},
2123
- "SkipWaitTimeForInstanceTerminationInput":{
2124
- "type":"structure",
2125
- "members":{
2126
- "deploymentId":{"shape":"DeploymentId"}
2127
- }
2128
- },
2129
- "SortOrder":{
2130
- "type":"string",
2131
- "enum":[
2132
- "ascending",
2133
- "descending"
2134
- ]
2135
- },
2136
- "StopDeploymentInput":{
2137
- "type":"structure",
2138
- "required":["deploymentId"],
2139
- "members":{
2140
- "deploymentId":{"shape":"DeploymentId"},
2141
- "autoRollbackEnabled":{"shape":"NullableBoolean"}
2142
- }
2143
- },
2144
- "StopDeploymentOutput":{
2145
- "type":"structure",
2146
- "members":{
2147
- "status":{"shape":"StopStatus"},
2148
- "statusMessage":{"shape":"Message"}
2149
- }
2150
- },
2151
- "StopStatus":{
2152
- "type":"string",
2153
- "enum":[
2154
- "Pending",
2155
- "Succeeded"
2156
- ]
2157
- },
2158
- "Tag":{
2159
- "type":"structure",
2160
- "members":{
2161
- "Key":{"shape":"Key"},
2162
- "Value":{"shape":"Value"}
2163
- }
2164
- },
2165
- "TagFilter":{
2166
- "type":"structure",
2167
- "members":{
2168
- "Key":{"shape":"Key"},
2169
- "Value":{"shape":"Value"},
2170
- "Type":{"shape":"TagFilterType"}
2171
- }
2172
- },
2173
- "TagFilterList":{
2174
- "type":"list",
2175
- "member":{"shape":"TagFilter"}
2176
- },
2177
- "TagFilterType":{
2178
- "type":"string",
2179
- "enum":[
2180
- "KEY_ONLY",
2181
- "VALUE_ONLY",
2182
- "KEY_AND_VALUE"
2183
- ]
2184
- },
2185
- "TagLimitExceededException":{
2186
- "type":"structure",
2187
- "members":{
2188
- },
2189
- "exception":true
2190
- },
2191
- "TagList":{
2192
- "type":"list",
2193
- "member":{"shape":"Tag"}
2194
- },
2195
- "TagRequiredException":{
2196
- "type":"structure",
2197
- "members":{
2198
- },
2199
- "exception":true
2200
- },
2201
- "TargetInstances":{
2202
- "type":"structure",
2203
- "members":{
2204
- "tagFilters":{"shape":"EC2TagFilterList"},
2205
- "autoScalingGroups":{"shape":"AutoScalingGroupNameList"}
2206
- }
2207
- },
2208
- "TimeRange":{
2209
- "type":"structure",
2210
- "members":{
2211
- "start":{"shape":"Timestamp"},
2212
- "end":{"shape":"Timestamp"}
2213
- }
2214
- },
2215
- "Timestamp":{"type":"timestamp"},
2216
- "TriggerConfig":{
2217
- "type":"structure",
2218
- "members":{
2219
- "triggerName":{"shape":"TriggerName"},
2220
- "triggerTargetArn":{"shape":"TriggerTargetArn"},
2221
- "triggerEvents":{"shape":"TriggerEventTypeList"}
2222
- }
2223
- },
2224
- "TriggerConfigList":{
2225
- "type":"list",
2226
- "member":{"shape":"TriggerConfig"}
2227
- },
2228
- "TriggerEventType":{
2229
- "type":"string",
2230
- "enum":[
2231
- "DeploymentStart",
2232
- "DeploymentSuccess",
2233
- "DeploymentFailure",
2234
- "DeploymentStop",
2235
- "DeploymentRollback",
2236
- "DeploymentReady",
2237
- "InstanceStart",
2238
- "InstanceSuccess",
2239
- "InstanceFailure",
2240
- "InstanceReady"
2241
- ]
2242
- },
2243
- "TriggerEventTypeList":{
2244
- "type":"list",
2245
- "member":{"shape":"TriggerEventType"}
2246
- },
2247
- "TriggerName":{"type":"string"},
2248
- "TriggerTargetArn":{"type":"string"},
2249
- "TriggerTargetsLimitExceededException":{
2250
- "type":"structure",
2251
- "members":{
2252
- },
2253
- "exception":true
2254
- },
2255
- "UnsupportedActionForDeploymentTypeException":{
2256
- "type":"structure",
2257
- "members":{
2258
- },
2259
- "exception":true
2260
- },
2261
- "UpdateApplicationInput":{
2262
- "type":"structure",
2263
- "members":{
2264
- "applicationName":{"shape":"ApplicationName"},
2265
- "newApplicationName":{"shape":"ApplicationName"}
2266
- }
2267
- },
2268
- "UpdateDeploymentGroupInput":{
2269
- "type":"structure",
2270
- "required":[
2271
- "applicationName",
2272
- "currentDeploymentGroupName"
2273
- ],
2274
- "members":{
2275
- "applicationName":{"shape":"ApplicationName"},
2276
- "currentDeploymentGroupName":{"shape":"DeploymentGroupName"},
2277
- "newDeploymentGroupName":{"shape":"DeploymentGroupName"},
2278
- "deploymentConfigName":{"shape":"DeploymentConfigName"},
2279
- "ec2TagFilters":{"shape":"EC2TagFilterList"},
2280
- "onPremisesInstanceTagFilters":{"shape":"TagFilterList"},
2281
- "autoScalingGroups":{"shape":"AutoScalingGroupNameList"},
2282
- "serviceRoleArn":{"shape":"Role"},
2283
- "triggerConfigurations":{"shape":"TriggerConfigList"},
2284
- "alarmConfiguration":{"shape":"AlarmConfiguration"},
2285
- "autoRollbackConfiguration":{"shape":"AutoRollbackConfiguration"},
2286
- "deploymentStyle":{"shape":"DeploymentStyle"},
2287
- "blueGreenDeploymentConfiguration":{"shape":"BlueGreenDeploymentConfiguration"},
2288
- "loadBalancerInfo":{"shape":"LoadBalancerInfo"}
2289
- }
2290
- },
2291
- "UpdateDeploymentGroupOutput":{
2292
- "type":"structure",
2293
- "members":{
2294
- "hooksNotCleanedUp":{"shape":"AutoScalingGroupList"}
2295
- }
2296
- },
2297
- "Value":{"type":"string"},
2298
- "VersionId":{"type":"string"}
2299
- }
2300
- }