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,2607 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "uid":"opsworks-2013-02-18",
5
- "apiVersion":"2013-02-18",
6
- "endpointPrefix":"opsworks",
7
- "jsonVersion":"1.1",
8
- "protocol":"json",
9
- "serviceFullName":"AWS OpsWorks",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"OpsWorks_20130218"
12
- },
13
- "operations":{
14
- "AssignInstance":{
15
- "name":"AssignInstance",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"AssignInstanceRequest"},
21
- "errors":[
22
- {"shape":"ValidationException"},
23
- {"shape":"ResourceNotFoundException"}
24
- ]
25
- },
26
- "AssignVolume":{
27
- "name":"AssignVolume",
28
- "http":{
29
- "method":"POST",
30
- "requestUri":"/"
31
- },
32
- "input":{"shape":"AssignVolumeRequest"},
33
- "errors":[
34
- {"shape":"ValidationException"},
35
- {"shape":"ResourceNotFoundException"}
36
- ]
37
- },
38
- "AssociateElasticIp":{
39
- "name":"AssociateElasticIp",
40
- "http":{
41
- "method":"POST",
42
- "requestUri":"/"
43
- },
44
- "input":{"shape":"AssociateElasticIpRequest"},
45
- "errors":[
46
- {"shape":"ValidationException"},
47
- {"shape":"ResourceNotFoundException"}
48
- ]
49
- },
50
- "AttachElasticLoadBalancer":{
51
- "name":"AttachElasticLoadBalancer",
52
- "http":{
53
- "method":"POST",
54
- "requestUri":"/"
55
- },
56
- "input":{"shape":"AttachElasticLoadBalancerRequest"},
57
- "errors":[
58
- {"shape":"ValidationException"},
59
- {"shape":"ResourceNotFoundException"}
60
- ]
61
- },
62
- "CloneStack":{
63
- "name":"CloneStack",
64
- "http":{
65
- "method":"POST",
66
- "requestUri":"/"
67
- },
68
- "input":{"shape":"CloneStackRequest"},
69
- "output":{"shape":"CloneStackResult"},
70
- "errors":[
71
- {"shape":"ValidationException"},
72
- {"shape":"ResourceNotFoundException"}
73
- ]
74
- },
75
- "CreateApp":{
76
- "name":"CreateApp",
77
- "http":{
78
- "method":"POST",
79
- "requestUri":"/"
80
- },
81
- "input":{"shape":"CreateAppRequest"},
82
- "output":{"shape":"CreateAppResult"},
83
- "errors":[
84
- {"shape":"ValidationException"},
85
- {"shape":"ResourceNotFoundException"}
86
- ]
87
- },
88
- "CreateDeployment":{
89
- "name":"CreateDeployment",
90
- "http":{
91
- "method":"POST",
92
- "requestUri":"/"
93
- },
94
- "input":{"shape":"CreateDeploymentRequest"},
95
- "output":{"shape":"CreateDeploymentResult"},
96
- "errors":[
97
- {"shape":"ValidationException"},
98
- {"shape":"ResourceNotFoundException"}
99
- ]
100
- },
101
- "CreateInstance":{
102
- "name":"CreateInstance",
103
- "http":{
104
- "method":"POST",
105
- "requestUri":"/"
106
- },
107
- "input":{"shape":"CreateInstanceRequest"},
108
- "output":{"shape":"CreateInstanceResult"},
109
- "errors":[
110
- {"shape":"ValidationException"},
111
- {"shape":"ResourceNotFoundException"}
112
- ]
113
- },
114
- "CreateLayer":{
115
- "name":"CreateLayer",
116
- "http":{
117
- "method":"POST",
118
- "requestUri":"/"
119
- },
120
- "input":{"shape":"CreateLayerRequest"},
121
- "output":{"shape":"CreateLayerResult"},
122
- "errors":[
123
- {"shape":"ValidationException"},
124
- {"shape":"ResourceNotFoundException"}
125
- ]
126
- },
127
- "CreateStack":{
128
- "name":"CreateStack",
129
- "http":{
130
- "method":"POST",
131
- "requestUri":"/"
132
- },
133
- "input":{"shape":"CreateStackRequest"},
134
- "output":{"shape":"CreateStackResult"},
135
- "errors":[
136
- {"shape":"ValidationException"}
137
- ]
138
- },
139
- "CreateUserProfile":{
140
- "name":"CreateUserProfile",
141
- "http":{
142
- "method":"POST",
143
- "requestUri":"/"
144
- },
145
- "input":{"shape":"CreateUserProfileRequest"},
146
- "output":{"shape":"CreateUserProfileResult"},
147
- "errors":[
148
- {"shape":"ValidationException"}
149
- ]
150
- },
151
- "DeleteApp":{
152
- "name":"DeleteApp",
153
- "http":{
154
- "method":"POST",
155
- "requestUri":"/"
156
- },
157
- "input":{"shape":"DeleteAppRequest"},
158
- "errors":[
159
- {"shape":"ValidationException"},
160
- {"shape":"ResourceNotFoundException"}
161
- ]
162
- },
163
- "DeleteInstance":{
164
- "name":"DeleteInstance",
165
- "http":{
166
- "method":"POST",
167
- "requestUri":"/"
168
- },
169
- "input":{"shape":"DeleteInstanceRequest"},
170
- "errors":[
171
- {"shape":"ValidationException"},
172
- {"shape":"ResourceNotFoundException"}
173
- ]
174
- },
175
- "DeleteLayer":{
176
- "name":"DeleteLayer",
177
- "http":{
178
- "method":"POST",
179
- "requestUri":"/"
180
- },
181
- "input":{"shape":"DeleteLayerRequest"},
182
- "errors":[
183
- {"shape":"ValidationException"},
184
- {"shape":"ResourceNotFoundException"}
185
- ]
186
- },
187
- "DeleteStack":{
188
- "name":"DeleteStack",
189
- "http":{
190
- "method":"POST",
191
- "requestUri":"/"
192
- },
193
- "input":{"shape":"DeleteStackRequest"},
194
- "errors":[
195
- {"shape":"ValidationException"},
196
- {"shape":"ResourceNotFoundException"}
197
- ]
198
- },
199
- "DeleteUserProfile":{
200
- "name":"DeleteUserProfile",
201
- "http":{
202
- "method":"POST",
203
- "requestUri":"/"
204
- },
205
- "input":{"shape":"DeleteUserProfileRequest"},
206
- "errors":[
207
- {"shape":"ValidationException"},
208
- {"shape":"ResourceNotFoundException"}
209
- ]
210
- },
211
- "DeregisterEcsCluster":{
212
- "name":"DeregisterEcsCluster",
213
- "http":{
214
- "method":"POST",
215
- "requestUri":"/"
216
- },
217
- "input":{"shape":"DeregisterEcsClusterRequest"},
218
- "errors":[
219
- {"shape":"ValidationException"},
220
- {"shape":"ResourceNotFoundException"}
221
- ]
222
- },
223
- "DeregisterElasticIp":{
224
- "name":"DeregisterElasticIp",
225
- "http":{
226
- "method":"POST",
227
- "requestUri":"/"
228
- },
229
- "input":{"shape":"DeregisterElasticIpRequest"},
230
- "errors":[
231
- {"shape":"ValidationException"},
232
- {"shape":"ResourceNotFoundException"}
233
- ]
234
- },
235
- "DeregisterInstance":{
236
- "name":"DeregisterInstance",
237
- "http":{
238
- "method":"POST",
239
- "requestUri":"/"
240
- },
241
- "input":{"shape":"DeregisterInstanceRequest"},
242
- "errors":[
243
- {"shape":"ValidationException"},
244
- {"shape":"ResourceNotFoundException"}
245
- ]
246
- },
247
- "DeregisterRdsDbInstance":{
248
- "name":"DeregisterRdsDbInstance",
249
- "http":{
250
- "method":"POST",
251
- "requestUri":"/"
252
- },
253
- "input":{"shape":"DeregisterRdsDbInstanceRequest"},
254
- "errors":[
255
- {"shape":"ValidationException"},
256
- {"shape":"ResourceNotFoundException"}
257
- ]
258
- },
259
- "DeregisterVolume":{
260
- "name":"DeregisterVolume",
261
- "http":{
262
- "method":"POST",
263
- "requestUri":"/"
264
- },
265
- "input":{"shape":"DeregisterVolumeRequest"},
266
- "errors":[
267
- {"shape":"ValidationException"},
268
- {"shape":"ResourceNotFoundException"}
269
- ]
270
- },
271
- "DescribeAgentVersions":{
272
- "name":"DescribeAgentVersions",
273
- "http":{
274
- "method":"POST",
275
- "requestUri":"/"
276
- },
277
- "input":{"shape":"DescribeAgentVersionsRequest"},
278
- "output":{"shape":"DescribeAgentVersionsResult"},
279
- "errors":[
280
- {"shape":"ValidationException"},
281
- {"shape":"ResourceNotFoundException"}
282
- ]
283
- },
284
- "DescribeApps":{
285
- "name":"DescribeApps",
286
- "http":{
287
- "method":"POST",
288
- "requestUri":"/"
289
- },
290
- "input":{"shape":"DescribeAppsRequest"},
291
- "output":{"shape":"DescribeAppsResult"},
292
- "errors":[
293
- {"shape":"ValidationException"},
294
- {"shape":"ResourceNotFoundException"}
295
- ]
296
- },
297
- "DescribeCommands":{
298
- "name":"DescribeCommands",
299
- "http":{
300
- "method":"POST",
301
- "requestUri":"/"
302
- },
303
- "input":{"shape":"DescribeCommandsRequest"},
304
- "output":{"shape":"DescribeCommandsResult"},
305
- "errors":[
306
- {"shape":"ValidationException"},
307
- {"shape":"ResourceNotFoundException"}
308
- ]
309
- },
310
- "DescribeDeployments":{
311
- "name":"DescribeDeployments",
312
- "http":{
313
- "method":"POST",
314
- "requestUri":"/"
315
- },
316
- "input":{"shape":"DescribeDeploymentsRequest"},
317
- "output":{"shape":"DescribeDeploymentsResult"},
318
- "errors":[
319
- {"shape":"ValidationException"},
320
- {"shape":"ResourceNotFoundException"}
321
- ]
322
- },
323
- "DescribeEcsClusters":{
324
- "name":"DescribeEcsClusters",
325
- "http":{
326
- "method":"POST",
327
- "requestUri":"/"
328
- },
329
- "input":{"shape":"DescribeEcsClustersRequest"},
330
- "output":{"shape":"DescribeEcsClustersResult"},
331
- "errors":[
332
- {"shape":"ValidationException"},
333
- {"shape":"ResourceNotFoundException"}
334
- ]
335
- },
336
- "DescribeElasticIps":{
337
- "name":"DescribeElasticIps",
338
- "http":{
339
- "method":"POST",
340
- "requestUri":"/"
341
- },
342
- "input":{"shape":"DescribeElasticIpsRequest"},
343
- "output":{"shape":"DescribeElasticIpsResult"},
344
- "errors":[
345
- {"shape":"ValidationException"},
346
- {"shape":"ResourceNotFoundException"}
347
- ]
348
- },
349
- "DescribeElasticLoadBalancers":{
350
- "name":"DescribeElasticLoadBalancers",
351
- "http":{
352
- "method":"POST",
353
- "requestUri":"/"
354
- },
355
- "input":{"shape":"DescribeElasticLoadBalancersRequest"},
356
- "output":{"shape":"DescribeElasticLoadBalancersResult"},
357
- "errors":[
358
- {"shape":"ValidationException"},
359
- {"shape":"ResourceNotFoundException"}
360
- ]
361
- },
362
- "DescribeInstances":{
363
- "name":"DescribeInstances",
364
- "http":{
365
- "method":"POST",
366
- "requestUri":"/"
367
- },
368
- "input":{"shape":"DescribeInstancesRequest"},
369
- "output":{"shape":"DescribeInstancesResult"},
370
- "errors":[
371
- {"shape":"ValidationException"},
372
- {"shape":"ResourceNotFoundException"}
373
- ]
374
- },
375
- "DescribeLayers":{
376
- "name":"DescribeLayers",
377
- "http":{
378
- "method":"POST",
379
- "requestUri":"/"
380
- },
381
- "input":{"shape":"DescribeLayersRequest"},
382
- "output":{"shape":"DescribeLayersResult"},
383
- "errors":[
384
- {"shape":"ValidationException"},
385
- {"shape":"ResourceNotFoundException"}
386
- ]
387
- },
388
- "DescribeLoadBasedAutoScaling":{
389
- "name":"DescribeLoadBasedAutoScaling",
390
- "http":{
391
- "method":"POST",
392
- "requestUri":"/"
393
- },
394
- "input":{"shape":"DescribeLoadBasedAutoScalingRequest"},
395
- "output":{"shape":"DescribeLoadBasedAutoScalingResult"},
396
- "errors":[
397
- {"shape":"ValidationException"},
398
- {"shape":"ResourceNotFoundException"}
399
- ]
400
- },
401
- "DescribeMyUserProfile":{
402
- "name":"DescribeMyUserProfile",
403
- "http":{
404
- "method":"POST",
405
- "requestUri":"/"
406
- },
407
- "output":{"shape":"DescribeMyUserProfileResult"}
408
- },
409
- "DescribePermissions":{
410
- "name":"DescribePermissions",
411
- "http":{
412
- "method":"POST",
413
- "requestUri":"/"
414
- },
415
- "input":{"shape":"DescribePermissionsRequest"},
416
- "output":{"shape":"DescribePermissionsResult"},
417
- "errors":[
418
- {"shape":"ValidationException"},
419
- {"shape":"ResourceNotFoundException"}
420
- ]
421
- },
422
- "DescribeRaidArrays":{
423
- "name":"DescribeRaidArrays",
424
- "http":{
425
- "method":"POST",
426
- "requestUri":"/"
427
- },
428
- "input":{"shape":"DescribeRaidArraysRequest"},
429
- "output":{"shape":"DescribeRaidArraysResult"},
430
- "errors":[
431
- {"shape":"ValidationException"},
432
- {"shape":"ResourceNotFoundException"}
433
- ]
434
- },
435
- "DescribeRdsDbInstances":{
436
- "name":"DescribeRdsDbInstances",
437
- "http":{
438
- "method":"POST",
439
- "requestUri":"/"
440
- },
441
- "input":{"shape":"DescribeRdsDbInstancesRequest"},
442
- "output":{"shape":"DescribeRdsDbInstancesResult"},
443
- "errors":[
444
- {"shape":"ValidationException"},
445
- {"shape":"ResourceNotFoundException"}
446
- ]
447
- },
448
- "DescribeServiceErrors":{
449
- "name":"DescribeServiceErrors",
450
- "http":{
451
- "method":"POST",
452
- "requestUri":"/"
453
- },
454
- "input":{"shape":"DescribeServiceErrorsRequest"},
455
- "output":{"shape":"DescribeServiceErrorsResult"},
456
- "errors":[
457
- {"shape":"ValidationException"},
458
- {"shape":"ResourceNotFoundException"}
459
- ]
460
- },
461
- "DescribeStackProvisioningParameters":{
462
- "name":"DescribeStackProvisioningParameters",
463
- "http":{
464
- "method":"POST",
465
- "requestUri":"/"
466
- },
467
- "input":{"shape":"DescribeStackProvisioningParametersRequest"},
468
- "output":{"shape":"DescribeStackProvisioningParametersResult"},
469
- "errors":[
470
- {"shape":"ValidationException"},
471
- {"shape":"ResourceNotFoundException"}
472
- ]
473
- },
474
- "DescribeStackSummary":{
475
- "name":"DescribeStackSummary",
476
- "http":{
477
- "method":"POST",
478
- "requestUri":"/"
479
- },
480
- "input":{"shape":"DescribeStackSummaryRequest"},
481
- "output":{"shape":"DescribeStackSummaryResult"},
482
- "errors":[
483
- {"shape":"ValidationException"},
484
- {"shape":"ResourceNotFoundException"}
485
- ]
486
- },
487
- "DescribeStacks":{
488
- "name":"DescribeStacks",
489
- "http":{
490
- "method":"POST",
491
- "requestUri":"/"
492
- },
493
- "input":{"shape":"DescribeStacksRequest"},
494
- "output":{"shape":"DescribeStacksResult"},
495
- "errors":[
496
- {"shape":"ValidationException"},
497
- {"shape":"ResourceNotFoundException"}
498
- ]
499
- },
500
- "DescribeTimeBasedAutoScaling":{
501
- "name":"DescribeTimeBasedAutoScaling",
502
- "http":{
503
- "method":"POST",
504
- "requestUri":"/"
505
- },
506
- "input":{"shape":"DescribeTimeBasedAutoScalingRequest"},
507
- "output":{"shape":"DescribeTimeBasedAutoScalingResult"},
508
- "errors":[
509
- {"shape":"ValidationException"},
510
- {"shape":"ResourceNotFoundException"}
511
- ]
512
- },
513
- "DescribeUserProfiles":{
514
- "name":"DescribeUserProfiles",
515
- "http":{
516
- "method":"POST",
517
- "requestUri":"/"
518
- },
519
- "input":{"shape":"DescribeUserProfilesRequest"},
520
- "output":{"shape":"DescribeUserProfilesResult"},
521
- "errors":[
522
- {"shape":"ValidationException"},
523
- {"shape":"ResourceNotFoundException"}
524
- ]
525
- },
526
- "DescribeVolumes":{
527
- "name":"DescribeVolumes",
528
- "http":{
529
- "method":"POST",
530
- "requestUri":"/"
531
- },
532
- "input":{"shape":"DescribeVolumesRequest"},
533
- "output":{"shape":"DescribeVolumesResult"},
534
- "errors":[
535
- {"shape":"ValidationException"},
536
- {"shape":"ResourceNotFoundException"}
537
- ]
538
- },
539
- "DetachElasticLoadBalancer":{
540
- "name":"DetachElasticLoadBalancer",
541
- "http":{
542
- "method":"POST",
543
- "requestUri":"/"
544
- },
545
- "input":{"shape":"DetachElasticLoadBalancerRequest"},
546
- "errors":[
547
- {"shape":"ResourceNotFoundException"}
548
- ]
549
- },
550
- "DisassociateElasticIp":{
551
- "name":"DisassociateElasticIp",
552
- "http":{
553
- "method":"POST",
554
- "requestUri":"/"
555
- },
556
- "input":{"shape":"DisassociateElasticIpRequest"},
557
- "errors":[
558
- {"shape":"ValidationException"},
559
- {"shape":"ResourceNotFoundException"}
560
- ]
561
- },
562
- "GetHostnameSuggestion":{
563
- "name":"GetHostnameSuggestion",
564
- "http":{
565
- "method":"POST",
566
- "requestUri":"/"
567
- },
568
- "input":{"shape":"GetHostnameSuggestionRequest"},
569
- "output":{"shape":"GetHostnameSuggestionResult"},
570
- "errors":[
571
- {"shape":"ValidationException"},
572
- {"shape":"ResourceNotFoundException"}
573
- ]
574
- },
575
- "GrantAccess":{
576
- "name":"GrantAccess",
577
- "http":{
578
- "method":"POST",
579
- "requestUri":"/"
580
- },
581
- "input":{"shape":"GrantAccessRequest"},
582
- "output":{"shape":"GrantAccessResult"},
583
- "errors":[
584
- {"shape":"ValidationException"},
585
- {"shape":"ResourceNotFoundException"}
586
- ]
587
- },
588
- "RebootInstance":{
589
- "name":"RebootInstance",
590
- "http":{
591
- "method":"POST",
592
- "requestUri":"/"
593
- },
594
- "input":{"shape":"RebootInstanceRequest"},
595
- "errors":[
596
- {"shape":"ValidationException"},
597
- {"shape":"ResourceNotFoundException"}
598
- ]
599
- },
600
- "RegisterEcsCluster":{
601
- "name":"RegisterEcsCluster",
602
- "http":{
603
- "method":"POST",
604
- "requestUri":"/"
605
- },
606
- "input":{"shape":"RegisterEcsClusterRequest"},
607
- "output":{"shape":"RegisterEcsClusterResult"},
608
- "errors":[
609
- {"shape":"ValidationException"},
610
- {"shape":"ResourceNotFoundException"}
611
- ]
612
- },
613
- "RegisterElasticIp":{
614
- "name":"RegisterElasticIp",
615
- "http":{
616
- "method":"POST",
617
- "requestUri":"/"
618
- },
619
- "input":{"shape":"RegisterElasticIpRequest"},
620
- "output":{"shape":"RegisterElasticIpResult"},
621
- "errors":[
622
- {"shape":"ValidationException"},
623
- {"shape":"ResourceNotFoundException"}
624
- ]
625
- },
626
- "RegisterInstance":{
627
- "name":"RegisterInstance",
628
- "http":{
629
- "method":"POST",
630
- "requestUri":"/"
631
- },
632
- "input":{"shape":"RegisterInstanceRequest"},
633
- "output":{"shape":"RegisterInstanceResult"},
634
- "errors":[
635
- {"shape":"ValidationException"},
636
- {"shape":"ResourceNotFoundException"}
637
- ]
638
- },
639
- "RegisterRdsDbInstance":{
640
- "name":"RegisterRdsDbInstance",
641
- "http":{
642
- "method":"POST",
643
- "requestUri":"/"
644
- },
645
- "input":{"shape":"RegisterRdsDbInstanceRequest"},
646
- "errors":[
647
- {"shape":"ValidationException"},
648
- {"shape":"ResourceNotFoundException"}
649
- ]
650
- },
651
- "RegisterVolume":{
652
- "name":"RegisterVolume",
653
- "http":{
654
- "method":"POST",
655
- "requestUri":"/"
656
- },
657
- "input":{"shape":"RegisterVolumeRequest"},
658
- "output":{"shape":"RegisterVolumeResult"},
659
- "errors":[
660
- {"shape":"ValidationException"},
661
- {"shape":"ResourceNotFoundException"}
662
- ]
663
- },
664
- "SetLoadBasedAutoScaling":{
665
- "name":"SetLoadBasedAutoScaling",
666
- "http":{
667
- "method":"POST",
668
- "requestUri":"/"
669
- },
670
- "input":{"shape":"SetLoadBasedAutoScalingRequest"},
671
- "errors":[
672
- {"shape":"ValidationException"},
673
- {"shape":"ResourceNotFoundException"}
674
- ]
675
- },
676
- "SetPermission":{
677
- "name":"SetPermission",
678
- "http":{
679
- "method":"POST",
680
- "requestUri":"/"
681
- },
682
- "input":{"shape":"SetPermissionRequest"},
683
- "errors":[
684
- {"shape":"ValidationException"},
685
- {"shape":"ResourceNotFoundException"}
686
- ]
687
- },
688
- "SetTimeBasedAutoScaling":{
689
- "name":"SetTimeBasedAutoScaling",
690
- "http":{
691
- "method":"POST",
692
- "requestUri":"/"
693
- },
694
- "input":{"shape":"SetTimeBasedAutoScalingRequest"},
695
- "errors":[
696
- {"shape":"ValidationException"},
697
- {"shape":"ResourceNotFoundException"}
698
- ]
699
- },
700
- "StartInstance":{
701
- "name":"StartInstance",
702
- "http":{
703
- "method":"POST",
704
- "requestUri":"/"
705
- },
706
- "input":{"shape":"StartInstanceRequest"},
707
- "errors":[
708
- {"shape":"ValidationException"},
709
- {"shape":"ResourceNotFoundException"}
710
- ]
711
- },
712
- "StartStack":{
713
- "name":"StartStack",
714
- "http":{
715
- "method":"POST",
716
- "requestUri":"/"
717
- },
718
- "input":{"shape":"StartStackRequest"},
719
- "errors":[
720
- {"shape":"ValidationException"},
721
- {"shape":"ResourceNotFoundException"}
722
- ]
723
- },
724
- "StopInstance":{
725
- "name":"StopInstance",
726
- "http":{
727
- "method":"POST",
728
- "requestUri":"/"
729
- },
730
- "input":{"shape":"StopInstanceRequest"},
731
- "errors":[
732
- {"shape":"ValidationException"},
733
- {"shape":"ResourceNotFoundException"}
734
- ]
735
- },
736
- "StopStack":{
737
- "name":"StopStack",
738
- "http":{
739
- "method":"POST",
740
- "requestUri":"/"
741
- },
742
- "input":{"shape":"StopStackRequest"},
743
- "errors":[
744
- {"shape":"ValidationException"},
745
- {"shape":"ResourceNotFoundException"}
746
- ]
747
- },
748
- "UnassignInstance":{
749
- "name":"UnassignInstance",
750
- "http":{
751
- "method":"POST",
752
- "requestUri":"/"
753
- },
754
- "input":{"shape":"UnassignInstanceRequest"},
755
- "errors":[
756
- {"shape":"ValidationException"},
757
- {"shape":"ResourceNotFoundException"}
758
- ]
759
- },
760
- "UnassignVolume":{
761
- "name":"UnassignVolume",
762
- "http":{
763
- "method":"POST",
764
- "requestUri":"/"
765
- },
766
- "input":{"shape":"UnassignVolumeRequest"},
767
- "errors":[
768
- {"shape":"ValidationException"},
769
- {"shape":"ResourceNotFoundException"}
770
- ]
771
- },
772
- "UpdateApp":{
773
- "name":"UpdateApp",
774
- "http":{
775
- "method":"POST",
776
- "requestUri":"/"
777
- },
778
- "input":{"shape":"UpdateAppRequest"},
779
- "errors":[
780
- {"shape":"ValidationException"},
781
- {"shape":"ResourceNotFoundException"}
782
- ]
783
- },
784
- "UpdateElasticIp":{
785
- "name":"UpdateElasticIp",
786
- "http":{
787
- "method":"POST",
788
- "requestUri":"/"
789
- },
790
- "input":{"shape":"UpdateElasticIpRequest"},
791
- "errors":[
792
- {"shape":"ValidationException"},
793
- {"shape":"ResourceNotFoundException"}
794
- ]
795
- },
796
- "UpdateInstance":{
797
- "name":"UpdateInstance",
798
- "http":{
799
- "method":"POST",
800
- "requestUri":"/"
801
- },
802
- "input":{"shape":"UpdateInstanceRequest"},
803
- "errors":[
804
- {"shape":"ValidationException"},
805
- {"shape":"ResourceNotFoundException"}
806
- ]
807
- },
808
- "UpdateLayer":{
809
- "name":"UpdateLayer",
810
- "http":{
811
- "method":"POST",
812
- "requestUri":"/"
813
- },
814
- "input":{"shape":"UpdateLayerRequest"},
815
- "errors":[
816
- {"shape":"ValidationException"},
817
- {"shape":"ResourceNotFoundException"}
818
- ]
819
- },
820
- "UpdateMyUserProfile":{
821
- "name":"UpdateMyUserProfile",
822
- "http":{
823
- "method":"POST",
824
- "requestUri":"/"
825
- },
826
- "input":{"shape":"UpdateMyUserProfileRequest"},
827
- "errors":[
828
- {"shape":"ValidationException"}
829
- ]
830
- },
831
- "UpdateRdsDbInstance":{
832
- "name":"UpdateRdsDbInstance",
833
- "http":{
834
- "method":"POST",
835
- "requestUri":"/"
836
- },
837
- "input":{"shape":"UpdateRdsDbInstanceRequest"},
838
- "errors":[
839
- {"shape":"ValidationException"},
840
- {"shape":"ResourceNotFoundException"}
841
- ]
842
- },
843
- "UpdateStack":{
844
- "name":"UpdateStack",
845
- "http":{
846
- "method":"POST",
847
- "requestUri":"/"
848
- },
849
- "input":{"shape":"UpdateStackRequest"},
850
- "errors":[
851
- {"shape":"ValidationException"},
852
- {"shape":"ResourceNotFoundException"}
853
- ]
854
- },
855
- "UpdateUserProfile":{
856
- "name":"UpdateUserProfile",
857
- "http":{
858
- "method":"POST",
859
- "requestUri":"/"
860
- },
861
- "input":{"shape":"UpdateUserProfileRequest"},
862
- "errors":[
863
- {"shape":"ValidationException"},
864
- {"shape":"ResourceNotFoundException"}
865
- ]
866
- },
867
- "UpdateVolume":{
868
- "name":"UpdateVolume",
869
- "http":{
870
- "method":"POST",
871
- "requestUri":"/"
872
- },
873
- "input":{"shape":"UpdateVolumeRequest"},
874
- "errors":[
875
- {"shape":"ValidationException"},
876
- {"shape":"ResourceNotFoundException"}
877
- ]
878
- }
879
- },
880
- "shapes":{
881
- "AgentVersion":{
882
- "type":"structure",
883
- "members":{
884
- "Version":{"shape":"String"},
885
- "ConfigurationManager":{"shape":"StackConfigurationManager"}
886
- }
887
- },
888
- "AgentVersions":{
889
- "type":"list",
890
- "member":{"shape":"AgentVersion"}
891
- },
892
- "App":{
893
- "type":"structure",
894
- "members":{
895
- "AppId":{"shape":"String"},
896
- "StackId":{"shape":"String"},
897
- "Shortname":{"shape":"String"},
898
- "Name":{"shape":"String"},
899
- "Description":{"shape":"String"},
900
- "DataSources":{"shape":"DataSources"},
901
- "Type":{"shape":"AppType"},
902
- "AppSource":{"shape":"Source"},
903
- "Domains":{"shape":"Strings"},
904
- "EnableSsl":{"shape":"Boolean"},
905
- "SslConfiguration":{"shape":"SslConfiguration"},
906
- "Attributes":{"shape":"AppAttributes"},
907
- "CreatedAt":{"shape":"String"},
908
- "Environment":{"shape":"EnvironmentVariables"}
909
- }
910
- },
911
- "AppAttributes":{
912
- "type":"map",
913
- "key":{"shape":"AppAttributesKeys"},
914
- "value":{"shape":"String"}
915
- },
916
- "AppAttributesKeys":{
917
- "type":"string",
918
- "enum":[
919
- "DocumentRoot",
920
- "RailsEnv",
921
- "AutoBundleOnDeploy",
922
- "AwsFlowRubySettings"
923
- ]
924
- },
925
- "AppType":{
926
- "type":"string",
927
- "enum":[
928
- "aws-flow-ruby",
929
- "java",
930
- "rails",
931
- "php",
932
- "nodejs",
933
- "static",
934
- "other"
935
- ]
936
- },
937
- "Apps":{
938
- "type":"list",
939
- "member":{"shape":"App"}
940
- },
941
- "Architecture":{
942
- "type":"string",
943
- "enum":[
944
- "x86_64",
945
- "i386"
946
- ]
947
- },
948
- "AssignInstanceRequest":{
949
- "type":"structure",
950
- "required":[
951
- "InstanceId",
952
- "LayerIds"
953
- ],
954
- "members":{
955
- "InstanceId":{"shape":"String"},
956
- "LayerIds":{"shape":"Strings"}
957
- }
958
- },
959
- "AssignVolumeRequest":{
960
- "type":"structure",
961
- "required":["VolumeId"],
962
- "members":{
963
- "VolumeId":{"shape":"String"},
964
- "InstanceId":{"shape":"String"}
965
- }
966
- },
967
- "AssociateElasticIpRequest":{
968
- "type":"structure",
969
- "required":["ElasticIp"],
970
- "members":{
971
- "ElasticIp":{"shape":"String"},
972
- "InstanceId":{"shape":"String"}
973
- }
974
- },
975
- "AttachElasticLoadBalancerRequest":{
976
- "type":"structure",
977
- "required":[
978
- "ElasticLoadBalancerName",
979
- "LayerId"
980
- ],
981
- "members":{
982
- "ElasticLoadBalancerName":{"shape":"String"},
983
- "LayerId":{"shape":"String"}
984
- }
985
- },
986
- "AutoScalingThresholds":{
987
- "type":"structure",
988
- "members":{
989
- "InstanceCount":{"shape":"Integer"},
990
- "ThresholdsWaitTime":{"shape":"Minute"},
991
- "IgnoreMetricsTime":{"shape":"Minute"},
992
- "CpuThreshold":{"shape":"Double"},
993
- "MemoryThreshold":{"shape":"Double"},
994
- "LoadThreshold":{"shape":"Double"},
995
- "Alarms":{"shape":"Strings"}
996
- }
997
- },
998
- "AutoScalingType":{
999
- "type":"string",
1000
- "enum":[
1001
- "load",
1002
- "timer"
1003
- ]
1004
- },
1005
- "BlockDeviceMapping":{
1006
- "type":"structure",
1007
- "members":{
1008
- "DeviceName":{"shape":"String"},
1009
- "NoDevice":{"shape":"String"},
1010
- "VirtualName":{"shape":"String"},
1011
- "Ebs":{"shape":"EbsBlockDevice"}
1012
- }
1013
- },
1014
- "BlockDeviceMappings":{
1015
- "type":"list",
1016
- "member":{"shape":"BlockDeviceMapping"}
1017
- },
1018
- "Boolean":{
1019
- "type":"boolean",
1020
- "box":true
1021
- },
1022
- "ChefConfiguration":{
1023
- "type":"structure",
1024
- "members":{
1025
- "ManageBerkshelf":{"shape":"Boolean"},
1026
- "BerkshelfVersion":{"shape":"String"}
1027
- }
1028
- },
1029
- "CloneStackRequest":{
1030
- "type":"structure",
1031
- "required":[
1032
- "SourceStackId",
1033
- "ServiceRoleArn"
1034
- ],
1035
- "members":{
1036
- "SourceStackId":{"shape":"String"},
1037
- "Name":{"shape":"String"},
1038
- "Region":{"shape":"String"},
1039
- "VpcId":{"shape":"String"},
1040
- "Attributes":{"shape":"StackAttributes"},
1041
- "ServiceRoleArn":{"shape":"String"},
1042
- "DefaultInstanceProfileArn":{"shape":"String"},
1043
- "DefaultOs":{"shape":"String"},
1044
- "HostnameTheme":{"shape":"String"},
1045
- "DefaultAvailabilityZone":{"shape":"String"},
1046
- "DefaultSubnetId":{"shape":"String"},
1047
- "CustomJson":{"shape":"String"},
1048
- "ConfigurationManager":{"shape":"StackConfigurationManager"},
1049
- "ChefConfiguration":{"shape":"ChefConfiguration"},
1050
- "UseCustomCookbooks":{"shape":"Boolean"},
1051
- "UseOpsworksSecurityGroups":{"shape":"Boolean"},
1052
- "CustomCookbooksSource":{"shape":"Source"},
1053
- "DefaultSshKeyName":{"shape":"String"},
1054
- "ClonePermissions":{"shape":"Boolean"},
1055
- "CloneAppIds":{"shape":"Strings"},
1056
- "DefaultRootDeviceType":{"shape":"RootDeviceType"},
1057
- "AgentVersion":{"shape":"String"}
1058
- }
1059
- },
1060
- "CloneStackResult":{
1061
- "type":"structure",
1062
- "members":{
1063
- "StackId":{"shape":"String"}
1064
- }
1065
- },
1066
- "Command":{
1067
- "type":"structure",
1068
- "members":{
1069
- "CommandId":{"shape":"String"},
1070
- "InstanceId":{"shape":"String"},
1071
- "DeploymentId":{"shape":"String"},
1072
- "CreatedAt":{"shape":"DateTime"},
1073
- "AcknowledgedAt":{"shape":"DateTime"},
1074
- "CompletedAt":{"shape":"DateTime"},
1075
- "Status":{"shape":"String"},
1076
- "ExitCode":{"shape":"Integer"},
1077
- "LogUrl":{"shape":"String"},
1078
- "Type":{"shape":"String"}
1079
- }
1080
- },
1081
- "Commands":{
1082
- "type":"list",
1083
- "member":{"shape":"Command"}
1084
- },
1085
- "CreateAppRequest":{
1086
- "type":"structure",
1087
- "required":[
1088
- "StackId",
1089
- "Name",
1090
- "Type"
1091
- ],
1092
- "members":{
1093
- "StackId":{"shape":"String"},
1094
- "Shortname":{"shape":"String"},
1095
- "Name":{"shape":"String"},
1096
- "Description":{"shape":"String"},
1097
- "DataSources":{"shape":"DataSources"},
1098
- "Type":{"shape":"AppType"},
1099
- "AppSource":{"shape":"Source"},
1100
- "Domains":{"shape":"Strings"},
1101
- "EnableSsl":{"shape":"Boolean"},
1102
- "SslConfiguration":{"shape":"SslConfiguration"},
1103
- "Attributes":{"shape":"AppAttributes"},
1104
- "Environment":{"shape":"EnvironmentVariables"}
1105
- }
1106
- },
1107
- "CreateAppResult":{
1108
- "type":"structure",
1109
- "members":{
1110
- "AppId":{"shape":"String"}
1111
- }
1112
- },
1113
- "CreateDeploymentRequest":{
1114
- "type":"structure",
1115
- "required":[
1116
- "StackId",
1117
- "Command"
1118
- ],
1119
- "members":{
1120
- "StackId":{"shape":"String"},
1121
- "AppId":{"shape":"String"},
1122
- "InstanceIds":{"shape":"Strings"},
1123
- "LayerIds":{"shape":"Strings"},
1124
- "Command":{"shape":"DeploymentCommand"},
1125
- "Comment":{"shape":"String"},
1126
- "CustomJson":{"shape":"String"}
1127
- }
1128
- },
1129
- "CreateDeploymentResult":{
1130
- "type":"structure",
1131
- "members":{
1132
- "DeploymentId":{"shape":"String"}
1133
- }
1134
- },
1135
- "CreateInstanceRequest":{
1136
- "type":"structure",
1137
- "required":[
1138
- "StackId",
1139
- "LayerIds",
1140
- "InstanceType"
1141
- ],
1142
- "members":{
1143
- "StackId":{"shape":"String"},
1144
- "LayerIds":{"shape":"Strings"},
1145
- "InstanceType":{"shape":"String"},
1146
- "AutoScalingType":{"shape":"AutoScalingType"},
1147
- "Hostname":{"shape":"String"},
1148
- "Os":{"shape":"String"},
1149
- "AmiId":{"shape":"String"},
1150
- "SshKeyName":{"shape":"String"},
1151
- "AvailabilityZone":{"shape":"String"},
1152
- "VirtualizationType":{"shape":"String"},
1153
- "SubnetId":{"shape":"String"},
1154
- "Architecture":{"shape":"Architecture"},
1155
- "RootDeviceType":{"shape":"RootDeviceType"},
1156
- "BlockDeviceMappings":{"shape":"BlockDeviceMappings"},
1157
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
1158
- "EbsOptimized":{"shape":"Boolean"},
1159
- "AgentVersion":{"shape":"String"},
1160
- "Tenancy":{"shape":"String"}
1161
- }
1162
- },
1163
- "CreateInstanceResult":{
1164
- "type":"structure",
1165
- "members":{
1166
- "InstanceId":{"shape":"String"}
1167
- }
1168
- },
1169
- "CreateLayerRequest":{
1170
- "type":"structure",
1171
- "required":[
1172
- "StackId",
1173
- "Type",
1174
- "Name",
1175
- "Shortname"
1176
- ],
1177
- "members":{
1178
- "StackId":{"shape":"String"},
1179
- "Type":{"shape":"LayerType"},
1180
- "Name":{"shape":"String"},
1181
- "Shortname":{"shape":"String"},
1182
- "Attributes":{"shape":"LayerAttributes"},
1183
- "CustomInstanceProfileArn":{"shape":"String"},
1184
- "CustomJson":{"shape":"String"},
1185
- "CustomSecurityGroupIds":{"shape":"Strings"},
1186
- "Packages":{"shape":"Strings"},
1187
- "VolumeConfigurations":{"shape":"VolumeConfigurations"},
1188
- "EnableAutoHealing":{"shape":"Boolean"},
1189
- "AutoAssignElasticIps":{"shape":"Boolean"},
1190
- "AutoAssignPublicIps":{"shape":"Boolean"},
1191
- "CustomRecipes":{"shape":"Recipes"},
1192
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
1193
- "UseEbsOptimizedInstances":{"shape":"Boolean"},
1194
- "LifecycleEventConfiguration":{"shape":"LifecycleEventConfiguration"}
1195
- }
1196
- },
1197
- "CreateLayerResult":{
1198
- "type":"structure",
1199
- "members":{
1200
- "LayerId":{"shape":"String"}
1201
- }
1202
- },
1203
- "CreateStackRequest":{
1204
- "type":"structure",
1205
- "required":[
1206
- "Name",
1207
- "Region",
1208
- "ServiceRoleArn",
1209
- "DefaultInstanceProfileArn"
1210
- ],
1211
- "members":{
1212
- "Name":{"shape":"String"},
1213
- "Region":{"shape":"String"},
1214
- "VpcId":{"shape":"String"},
1215
- "Attributes":{"shape":"StackAttributes"},
1216
- "ServiceRoleArn":{"shape":"String"},
1217
- "DefaultInstanceProfileArn":{"shape":"String"},
1218
- "DefaultOs":{"shape":"String"},
1219
- "HostnameTheme":{"shape":"String"},
1220
- "DefaultAvailabilityZone":{"shape":"String"},
1221
- "DefaultSubnetId":{"shape":"String"},
1222
- "CustomJson":{"shape":"String"},
1223
- "ConfigurationManager":{"shape":"StackConfigurationManager"},
1224
- "ChefConfiguration":{"shape":"ChefConfiguration"},
1225
- "UseCustomCookbooks":{"shape":"Boolean"},
1226
- "UseOpsworksSecurityGroups":{"shape":"Boolean"},
1227
- "CustomCookbooksSource":{"shape":"Source"},
1228
- "DefaultSshKeyName":{"shape":"String"},
1229
- "DefaultRootDeviceType":{"shape":"RootDeviceType"},
1230
- "AgentVersion":{"shape":"String"}
1231
- }
1232
- },
1233
- "CreateStackResult":{
1234
- "type":"structure",
1235
- "members":{
1236
- "StackId":{"shape":"String"}
1237
- }
1238
- },
1239
- "CreateUserProfileRequest":{
1240
- "type":"structure",
1241
- "required":["IamUserArn"],
1242
- "members":{
1243
- "IamUserArn":{"shape":"String"},
1244
- "SshUsername":{"shape":"String"},
1245
- "SshPublicKey":{"shape":"String"},
1246
- "AllowSelfManagement":{"shape":"Boolean"}
1247
- }
1248
- },
1249
- "CreateUserProfileResult":{
1250
- "type":"structure",
1251
- "members":{
1252
- "IamUserArn":{"shape":"String"}
1253
- }
1254
- },
1255
- "DailyAutoScalingSchedule":{
1256
- "type":"map",
1257
- "key":{"shape":"Hour"},
1258
- "value":{"shape":"Switch"}
1259
- },
1260
- "DataSource":{
1261
- "type":"structure",
1262
- "members":{
1263
- "Type":{"shape":"String"},
1264
- "Arn":{"shape":"String"},
1265
- "DatabaseName":{"shape":"String"}
1266
- }
1267
- },
1268
- "DataSources":{
1269
- "type":"list",
1270
- "member":{"shape":"DataSource"}
1271
- },
1272
- "DateTime":{"type":"string"},
1273
- "DeleteAppRequest":{
1274
- "type":"structure",
1275
- "required":["AppId"],
1276
- "members":{
1277
- "AppId":{"shape":"String"}
1278
- }
1279
- },
1280
- "DeleteInstanceRequest":{
1281
- "type":"structure",
1282
- "required":["InstanceId"],
1283
- "members":{
1284
- "InstanceId":{"shape":"String"},
1285
- "DeleteElasticIp":{"shape":"Boolean"},
1286
- "DeleteVolumes":{"shape":"Boolean"}
1287
- }
1288
- },
1289
- "DeleteLayerRequest":{
1290
- "type":"structure",
1291
- "required":["LayerId"],
1292
- "members":{
1293
- "LayerId":{"shape":"String"}
1294
- }
1295
- },
1296
- "DeleteStackRequest":{
1297
- "type":"structure",
1298
- "required":["StackId"],
1299
- "members":{
1300
- "StackId":{"shape":"String"}
1301
- }
1302
- },
1303
- "DeleteUserProfileRequest":{
1304
- "type":"structure",
1305
- "required":["IamUserArn"],
1306
- "members":{
1307
- "IamUserArn":{"shape":"String"}
1308
- }
1309
- },
1310
- "Deployment":{
1311
- "type":"structure",
1312
- "members":{
1313
- "DeploymentId":{"shape":"String"},
1314
- "StackId":{"shape":"String"},
1315
- "AppId":{"shape":"String"},
1316
- "CreatedAt":{"shape":"DateTime"},
1317
- "CompletedAt":{"shape":"DateTime"},
1318
- "Duration":{"shape":"Integer"},
1319
- "IamUserArn":{"shape":"String"},
1320
- "Comment":{"shape":"String"},
1321
- "Command":{"shape":"DeploymentCommand"},
1322
- "Status":{"shape":"String"},
1323
- "CustomJson":{"shape":"String"},
1324
- "InstanceIds":{"shape":"Strings"}
1325
- }
1326
- },
1327
- "DeploymentCommand":{
1328
- "type":"structure",
1329
- "required":["Name"],
1330
- "members":{
1331
- "Name":{"shape":"DeploymentCommandName"},
1332
- "Args":{"shape":"DeploymentCommandArgs"}
1333
- }
1334
- },
1335
- "DeploymentCommandArgs":{
1336
- "type":"map",
1337
- "key":{"shape":"String"},
1338
- "value":{"shape":"Strings"}
1339
- },
1340
- "DeploymentCommandName":{
1341
- "type":"string",
1342
- "enum":[
1343
- "install_dependencies",
1344
- "update_dependencies",
1345
- "update_custom_cookbooks",
1346
- "execute_recipes",
1347
- "configure",
1348
- "setup",
1349
- "deploy",
1350
- "rollback",
1351
- "start",
1352
- "stop",
1353
- "restart",
1354
- "undeploy"
1355
- ]
1356
- },
1357
- "Deployments":{
1358
- "type":"list",
1359
- "member":{"shape":"Deployment"}
1360
- },
1361
- "DeregisterEcsClusterRequest":{
1362
- "type":"structure",
1363
- "required":["EcsClusterArn"],
1364
- "members":{
1365
- "EcsClusterArn":{"shape":"String"}
1366
- }
1367
- },
1368
- "DeregisterElasticIpRequest":{
1369
- "type":"structure",
1370
- "required":["ElasticIp"],
1371
- "members":{
1372
- "ElasticIp":{"shape":"String"}
1373
- }
1374
- },
1375
- "DeregisterInstanceRequest":{
1376
- "type":"structure",
1377
- "required":["InstanceId"],
1378
- "members":{
1379
- "InstanceId":{"shape":"String"}
1380
- }
1381
- },
1382
- "DeregisterRdsDbInstanceRequest":{
1383
- "type":"structure",
1384
- "required":["RdsDbInstanceArn"],
1385
- "members":{
1386
- "RdsDbInstanceArn":{"shape":"String"}
1387
- }
1388
- },
1389
- "DeregisterVolumeRequest":{
1390
- "type":"structure",
1391
- "required":["VolumeId"],
1392
- "members":{
1393
- "VolumeId":{"shape":"String"}
1394
- }
1395
- },
1396
- "DescribeAgentVersionsRequest":{
1397
- "type":"structure",
1398
- "members":{
1399
- "StackId":{"shape":"String"},
1400
- "ConfigurationManager":{"shape":"StackConfigurationManager"}
1401
- }
1402
- },
1403
- "DescribeAgentVersionsResult":{
1404
- "type":"structure",
1405
- "members":{
1406
- "AgentVersions":{"shape":"AgentVersions"}
1407
- }
1408
- },
1409
- "DescribeAppsRequest":{
1410
- "type":"structure",
1411
- "members":{
1412
- "StackId":{"shape":"String"},
1413
- "AppIds":{"shape":"Strings"}
1414
- }
1415
- },
1416
- "DescribeAppsResult":{
1417
- "type":"structure",
1418
- "members":{
1419
- "Apps":{"shape":"Apps"}
1420
- }
1421
- },
1422
- "DescribeCommandsRequest":{
1423
- "type":"structure",
1424
- "members":{
1425
- "DeploymentId":{"shape":"String"},
1426
- "InstanceId":{"shape":"String"},
1427
- "CommandIds":{"shape":"Strings"}
1428
- }
1429
- },
1430
- "DescribeCommandsResult":{
1431
- "type":"structure",
1432
- "members":{
1433
- "Commands":{"shape":"Commands"}
1434
- }
1435
- },
1436
- "DescribeDeploymentsRequest":{
1437
- "type":"structure",
1438
- "members":{
1439
- "StackId":{"shape":"String"},
1440
- "AppId":{"shape":"String"},
1441
- "DeploymentIds":{"shape":"Strings"}
1442
- }
1443
- },
1444
- "DescribeDeploymentsResult":{
1445
- "type":"structure",
1446
- "members":{
1447
- "Deployments":{"shape":"Deployments"}
1448
- }
1449
- },
1450
- "DescribeEcsClustersRequest":{
1451
- "type":"structure",
1452
- "members":{
1453
- "EcsClusterArns":{"shape":"Strings"},
1454
- "StackId":{"shape":"String"},
1455
- "NextToken":{"shape":"String"},
1456
- "MaxResults":{"shape":"Integer"}
1457
- }
1458
- },
1459
- "DescribeEcsClustersResult":{
1460
- "type":"structure",
1461
- "members":{
1462
- "EcsClusters":{"shape":"EcsClusters"},
1463
- "NextToken":{"shape":"String"}
1464
- }
1465
- },
1466
- "DescribeElasticIpsRequest":{
1467
- "type":"structure",
1468
- "members":{
1469
- "InstanceId":{"shape":"String"},
1470
- "StackId":{"shape":"String"},
1471
- "Ips":{"shape":"Strings"}
1472
- }
1473
- },
1474
- "DescribeElasticIpsResult":{
1475
- "type":"structure",
1476
- "members":{
1477
- "ElasticIps":{"shape":"ElasticIps"}
1478
- }
1479
- },
1480
- "DescribeElasticLoadBalancersRequest":{
1481
- "type":"structure",
1482
- "members":{
1483
- "StackId":{"shape":"String"},
1484
- "LayerIds":{"shape":"Strings"}
1485
- }
1486
- },
1487
- "DescribeElasticLoadBalancersResult":{
1488
- "type":"structure",
1489
- "members":{
1490
- "ElasticLoadBalancers":{"shape":"ElasticLoadBalancers"}
1491
- }
1492
- },
1493
- "DescribeInstancesRequest":{
1494
- "type":"structure",
1495
- "members":{
1496
- "StackId":{"shape":"String"},
1497
- "LayerId":{"shape":"String"},
1498
- "InstanceIds":{"shape":"Strings"}
1499
- }
1500
- },
1501
- "DescribeInstancesResult":{
1502
- "type":"structure",
1503
- "members":{
1504
- "Instances":{"shape":"Instances"}
1505
- }
1506
- },
1507
- "DescribeLayersRequest":{
1508
- "type":"structure",
1509
- "members":{
1510
- "StackId":{"shape":"String"},
1511
- "LayerIds":{"shape":"Strings"}
1512
- }
1513
- },
1514
- "DescribeLayersResult":{
1515
- "type":"structure",
1516
- "members":{
1517
- "Layers":{"shape":"Layers"}
1518
- }
1519
- },
1520
- "DescribeLoadBasedAutoScalingRequest":{
1521
- "type":"structure",
1522
- "required":["LayerIds"],
1523
- "members":{
1524
- "LayerIds":{"shape":"Strings"}
1525
- }
1526
- },
1527
- "DescribeLoadBasedAutoScalingResult":{
1528
- "type":"structure",
1529
- "members":{
1530
- "LoadBasedAutoScalingConfigurations":{"shape":"LoadBasedAutoScalingConfigurations"}
1531
- }
1532
- },
1533
- "DescribeMyUserProfileResult":{
1534
- "type":"structure",
1535
- "members":{
1536
- "UserProfile":{"shape":"SelfUserProfile"}
1537
- }
1538
- },
1539
- "DescribePermissionsRequest":{
1540
- "type":"structure",
1541
- "members":{
1542
- "IamUserArn":{"shape":"String"},
1543
- "StackId":{"shape":"String"}
1544
- }
1545
- },
1546
- "DescribePermissionsResult":{
1547
- "type":"structure",
1548
- "members":{
1549
- "Permissions":{"shape":"Permissions"}
1550
- }
1551
- },
1552
- "DescribeRaidArraysRequest":{
1553
- "type":"structure",
1554
- "members":{
1555
- "InstanceId":{"shape":"String"},
1556
- "StackId":{"shape":"String"},
1557
- "RaidArrayIds":{"shape":"Strings"}
1558
- }
1559
- },
1560
- "DescribeRaidArraysResult":{
1561
- "type":"structure",
1562
- "members":{
1563
- "RaidArrays":{"shape":"RaidArrays"}
1564
- }
1565
- },
1566
- "DescribeRdsDbInstancesRequest":{
1567
- "type":"structure",
1568
- "required":["StackId"],
1569
- "members":{
1570
- "StackId":{"shape":"String"},
1571
- "RdsDbInstanceArns":{"shape":"Strings"}
1572
- }
1573
- },
1574
- "DescribeRdsDbInstancesResult":{
1575
- "type":"structure",
1576
- "members":{
1577
- "RdsDbInstances":{"shape":"RdsDbInstances"}
1578
- }
1579
- },
1580
- "DescribeServiceErrorsRequest":{
1581
- "type":"structure",
1582
- "members":{
1583
- "StackId":{"shape":"String"},
1584
- "InstanceId":{"shape":"String"},
1585
- "ServiceErrorIds":{"shape":"Strings"}
1586
- }
1587
- },
1588
- "DescribeServiceErrorsResult":{
1589
- "type":"structure",
1590
- "members":{
1591
- "ServiceErrors":{"shape":"ServiceErrors"}
1592
- }
1593
- },
1594
- "DescribeStackProvisioningParametersRequest":{
1595
- "type":"structure",
1596
- "required":["StackId"],
1597
- "members":{
1598
- "StackId":{"shape":"String"}
1599
- }
1600
- },
1601
- "DescribeStackProvisioningParametersResult":{
1602
- "type":"structure",
1603
- "members":{
1604
- "AgentInstallerUrl":{"shape":"String"},
1605
- "Parameters":{"shape":"Parameters"}
1606
- }
1607
- },
1608
- "DescribeStackSummaryRequest":{
1609
- "type":"structure",
1610
- "required":["StackId"],
1611
- "members":{
1612
- "StackId":{"shape":"String"}
1613
- }
1614
- },
1615
- "DescribeStackSummaryResult":{
1616
- "type":"structure",
1617
- "members":{
1618
- "StackSummary":{"shape":"StackSummary"}
1619
- }
1620
- },
1621
- "DescribeStacksRequest":{
1622
- "type":"structure",
1623
- "members":{
1624
- "StackIds":{"shape":"Strings"}
1625
- }
1626
- },
1627
- "DescribeStacksResult":{
1628
- "type":"structure",
1629
- "members":{
1630
- "Stacks":{"shape":"Stacks"}
1631
- }
1632
- },
1633
- "DescribeTimeBasedAutoScalingRequest":{
1634
- "type":"structure",
1635
- "required":["InstanceIds"],
1636
- "members":{
1637
- "InstanceIds":{"shape":"Strings"}
1638
- }
1639
- },
1640
- "DescribeTimeBasedAutoScalingResult":{
1641
- "type":"structure",
1642
- "members":{
1643
- "TimeBasedAutoScalingConfigurations":{"shape":"TimeBasedAutoScalingConfigurations"}
1644
- }
1645
- },
1646
- "DescribeUserProfilesRequest":{
1647
- "type":"structure",
1648
- "members":{
1649
- "IamUserArns":{"shape":"Strings"}
1650
- }
1651
- },
1652
- "DescribeUserProfilesResult":{
1653
- "type":"structure",
1654
- "members":{
1655
- "UserProfiles":{"shape":"UserProfiles"}
1656
- }
1657
- },
1658
- "DescribeVolumesRequest":{
1659
- "type":"structure",
1660
- "members":{
1661
- "InstanceId":{"shape":"String"},
1662
- "StackId":{"shape":"String"},
1663
- "RaidArrayId":{"shape":"String"},
1664
- "VolumeIds":{"shape":"Strings"}
1665
- }
1666
- },
1667
- "DescribeVolumesResult":{
1668
- "type":"structure",
1669
- "members":{
1670
- "Volumes":{"shape":"Volumes"}
1671
- }
1672
- },
1673
- "DetachElasticLoadBalancerRequest":{
1674
- "type":"structure",
1675
- "required":[
1676
- "ElasticLoadBalancerName",
1677
- "LayerId"
1678
- ],
1679
- "members":{
1680
- "ElasticLoadBalancerName":{"shape":"String"},
1681
- "LayerId":{"shape":"String"}
1682
- }
1683
- },
1684
- "DisassociateElasticIpRequest":{
1685
- "type":"structure",
1686
- "required":["ElasticIp"],
1687
- "members":{
1688
- "ElasticIp":{"shape":"String"}
1689
- }
1690
- },
1691
- "Double":{
1692
- "type":"double",
1693
- "box":true
1694
- },
1695
- "EbsBlockDevice":{
1696
- "type":"structure",
1697
- "members":{
1698
- "SnapshotId":{"shape":"String"},
1699
- "Iops":{"shape":"Integer"},
1700
- "VolumeSize":{"shape":"Integer"},
1701
- "VolumeType":{"shape":"VolumeType"},
1702
- "DeleteOnTermination":{"shape":"Boolean"}
1703
- }
1704
- },
1705
- "EcsCluster":{
1706
- "type":"structure",
1707
- "members":{
1708
- "EcsClusterArn":{"shape":"String"},
1709
- "EcsClusterName":{"shape":"String"},
1710
- "StackId":{"shape":"String"},
1711
- "RegisteredAt":{"shape":"DateTime"}
1712
- }
1713
- },
1714
- "EcsClusters":{
1715
- "type":"list",
1716
- "member":{"shape":"EcsCluster"}
1717
- },
1718
- "ElasticIp":{
1719
- "type":"structure",
1720
- "members":{
1721
- "Ip":{"shape":"String"},
1722
- "Name":{"shape":"String"},
1723
- "Domain":{"shape":"String"},
1724
- "Region":{"shape":"String"},
1725
- "InstanceId":{"shape":"String"}
1726
- }
1727
- },
1728
- "ElasticIps":{
1729
- "type":"list",
1730
- "member":{"shape":"ElasticIp"}
1731
- },
1732
- "ElasticLoadBalancer":{
1733
- "type":"structure",
1734
- "members":{
1735
- "ElasticLoadBalancerName":{"shape":"String"},
1736
- "Region":{"shape":"String"},
1737
- "DnsName":{"shape":"String"},
1738
- "StackId":{"shape":"String"},
1739
- "LayerId":{"shape":"String"},
1740
- "VpcId":{"shape":"String"},
1741
- "AvailabilityZones":{"shape":"Strings"},
1742
- "SubnetIds":{"shape":"Strings"},
1743
- "Ec2InstanceIds":{"shape":"Strings"}
1744
- }
1745
- },
1746
- "ElasticLoadBalancers":{
1747
- "type":"list",
1748
- "member":{"shape":"ElasticLoadBalancer"}
1749
- },
1750
- "EnvironmentVariable":{
1751
- "type":"structure",
1752
- "required":[
1753
- "Key",
1754
- "Value"
1755
- ],
1756
- "members":{
1757
- "Key":{"shape":"String"},
1758
- "Value":{"shape":"String"},
1759
- "Secure":{"shape":"Boolean"}
1760
- }
1761
- },
1762
- "EnvironmentVariables":{
1763
- "type":"list",
1764
- "member":{"shape":"EnvironmentVariable"}
1765
- },
1766
- "GetHostnameSuggestionRequest":{
1767
- "type":"structure",
1768
- "required":["LayerId"],
1769
- "members":{
1770
- "LayerId":{"shape":"String"}
1771
- }
1772
- },
1773
- "GetHostnameSuggestionResult":{
1774
- "type":"structure",
1775
- "members":{
1776
- "LayerId":{"shape":"String"},
1777
- "Hostname":{"shape":"String"}
1778
- }
1779
- },
1780
- "GrantAccessRequest":{
1781
- "type":"structure",
1782
- "required":["InstanceId"],
1783
- "members":{
1784
- "InstanceId":{"shape":"String"},
1785
- "ValidForInMinutes":{"shape":"ValidForInMinutes"}
1786
- }
1787
- },
1788
- "GrantAccessResult":{
1789
- "type":"structure",
1790
- "members":{
1791
- "TemporaryCredential":{"shape":"TemporaryCredential"}
1792
- }
1793
- },
1794
- "Hour":{"type":"string"},
1795
- "Instance":{
1796
- "type":"structure",
1797
- "members":{
1798
- "AgentVersion":{"shape":"String"},
1799
- "AmiId":{"shape":"String"},
1800
- "Architecture":{"shape":"Architecture"},
1801
- "AutoScalingType":{"shape":"AutoScalingType"},
1802
- "AvailabilityZone":{"shape":"String"},
1803
- "BlockDeviceMappings":{"shape":"BlockDeviceMappings"},
1804
- "CreatedAt":{"shape":"DateTime"},
1805
- "EbsOptimized":{"shape":"Boolean"},
1806
- "Ec2InstanceId":{"shape":"String"},
1807
- "EcsClusterArn":{"shape":"String"},
1808
- "EcsContainerInstanceArn":{"shape":"String"},
1809
- "ElasticIp":{"shape":"String"},
1810
- "Hostname":{"shape":"String"},
1811
- "InfrastructureClass":{"shape":"String"},
1812
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
1813
- "InstanceId":{"shape":"String"},
1814
- "InstanceProfileArn":{"shape":"String"},
1815
- "InstanceType":{"shape":"String"},
1816
- "LastServiceErrorId":{"shape":"String"},
1817
- "LayerIds":{"shape":"Strings"},
1818
- "Os":{"shape":"String"},
1819
- "Platform":{"shape":"String"},
1820
- "PrivateDns":{"shape":"String"},
1821
- "PrivateIp":{"shape":"String"},
1822
- "PublicDns":{"shape":"String"},
1823
- "PublicIp":{"shape":"String"},
1824
- "RegisteredBy":{"shape":"String"},
1825
- "ReportedAgentVersion":{"shape":"String"},
1826
- "ReportedOs":{"shape":"ReportedOs"},
1827
- "RootDeviceType":{"shape":"RootDeviceType"},
1828
- "RootDeviceVolumeId":{"shape":"String"},
1829
- "SecurityGroupIds":{"shape":"Strings"},
1830
- "SshHostDsaKeyFingerprint":{"shape":"String"},
1831
- "SshHostRsaKeyFingerprint":{"shape":"String"},
1832
- "SshKeyName":{"shape":"String"},
1833
- "StackId":{"shape":"String"},
1834
- "Status":{"shape":"String"},
1835
- "SubnetId":{"shape":"String"},
1836
- "Tenancy":{"shape":"String"},
1837
- "VirtualizationType":{"shape":"VirtualizationType"}
1838
- }
1839
- },
1840
- "InstanceIdentity":{
1841
- "type":"structure",
1842
- "members":{
1843
- "Document":{"shape":"String"},
1844
- "Signature":{"shape":"String"}
1845
- }
1846
- },
1847
- "Instances":{
1848
- "type":"list",
1849
- "member":{"shape":"Instance"}
1850
- },
1851
- "InstancesCount":{
1852
- "type":"structure",
1853
- "members":{
1854
- "Assigning":{"shape":"Integer"},
1855
- "Booting":{"shape":"Integer"},
1856
- "ConnectionLost":{"shape":"Integer"},
1857
- "Deregistering":{"shape":"Integer"},
1858
- "Online":{"shape":"Integer"},
1859
- "Pending":{"shape":"Integer"},
1860
- "Rebooting":{"shape":"Integer"},
1861
- "Registered":{"shape":"Integer"},
1862
- "Registering":{"shape":"Integer"},
1863
- "Requested":{"shape":"Integer"},
1864
- "RunningSetup":{"shape":"Integer"},
1865
- "SetupFailed":{"shape":"Integer"},
1866
- "ShuttingDown":{"shape":"Integer"},
1867
- "StartFailed":{"shape":"Integer"},
1868
- "Stopped":{"shape":"Integer"},
1869
- "Stopping":{"shape":"Integer"},
1870
- "Terminated":{"shape":"Integer"},
1871
- "Terminating":{"shape":"Integer"},
1872
- "Unassigning":{"shape":"Integer"}
1873
- }
1874
- },
1875
- "Integer":{
1876
- "type":"integer",
1877
- "box":true
1878
- },
1879
- "Layer":{
1880
- "type":"structure",
1881
- "members":{
1882
- "StackId":{"shape":"String"},
1883
- "LayerId":{"shape":"String"},
1884
- "Type":{"shape":"LayerType"},
1885
- "Name":{"shape":"String"},
1886
- "Shortname":{"shape":"String"},
1887
- "Attributes":{"shape":"LayerAttributes"},
1888
- "CustomInstanceProfileArn":{"shape":"String"},
1889
- "CustomJson":{"shape":"String"},
1890
- "CustomSecurityGroupIds":{"shape":"Strings"},
1891
- "DefaultSecurityGroupNames":{"shape":"Strings"},
1892
- "Packages":{"shape":"Strings"},
1893
- "VolumeConfigurations":{"shape":"VolumeConfigurations"},
1894
- "EnableAutoHealing":{"shape":"Boolean"},
1895
- "AutoAssignElasticIps":{"shape":"Boolean"},
1896
- "AutoAssignPublicIps":{"shape":"Boolean"},
1897
- "DefaultRecipes":{"shape":"Recipes"},
1898
- "CustomRecipes":{"shape":"Recipes"},
1899
- "CreatedAt":{"shape":"DateTime"},
1900
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
1901
- "UseEbsOptimizedInstances":{"shape":"Boolean"},
1902
- "LifecycleEventConfiguration":{"shape":"LifecycleEventConfiguration"}
1903
- }
1904
- },
1905
- "LayerAttributes":{
1906
- "type":"map",
1907
- "key":{"shape":"LayerAttributesKeys"},
1908
- "value":{"shape":"String"}
1909
- },
1910
- "LayerAttributesKeys":{
1911
- "type":"string",
1912
- "enum":[
1913
- "EcsClusterArn",
1914
- "EnableHaproxyStats",
1915
- "HaproxyStatsUrl",
1916
- "HaproxyStatsUser",
1917
- "HaproxyStatsPassword",
1918
- "HaproxyHealthCheckUrl",
1919
- "HaproxyHealthCheckMethod",
1920
- "MysqlRootPassword",
1921
- "MysqlRootPasswordUbiquitous",
1922
- "GangliaUrl",
1923
- "GangliaUser",
1924
- "GangliaPassword",
1925
- "MemcachedMemory",
1926
- "NodejsVersion",
1927
- "RubyVersion",
1928
- "RubygemsVersion",
1929
- "ManageBundler",
1930
- "BundlerVersion",
1931
- "RailsStack",
1932
- "PassengerVersion",
1933
- "Jvm",
1934
- "JvmVersion",
1935
- "JvmOptions",
1936
- "JavaAppServer",
1937
- "JavaAppServerVersion"
1938
- ]
1939
- },
1940
- "LayerType":{
1941
- "type":"string",
1942
- "enum":[
1943
- "aws-flow-ruby",
1944
- "ecs-cluster",
1945
- "java-app",
1946
- "lb",
1947
- "web",
1948
- "php-app",
1949
- "rails-app",
1950
- "nodejs-app",
1951
- "memcached",
1952
- "db-master",
1953
- "monitoring-master",
1954
- "custom"
1955
- ]
1956
- },
1957
- "Layers":{
1958
- "type":"list",
1959
- "member":{"shape":"Layer"}
1960
- },
1961
- "LifecycleEventConfiguration":{
1962
- "type":"structure",
1963
- "members":{
1964
- "Shutdown":{"shape":"ShutdownEventConfiguration"}
1965
- }
1966
- },
1967
- "LoadBasedAutoScalingConfiguration":{
1968
- "type":"structure",
1969
- "members":{
1970
- "LayerId":{"shape":"String"},
1971
- "Enable":{"shape":"Boolean"},
1972
- "UpScaling":{"shape":"AutoScalingThresholds"},
1973
- "DownScaling":{"shape":"AutoScalingThresholds"}
1974
- }
1975
- },
1976
- "LoadBasedAutoScalingConfigurations":{
1977
- "type":"list",
1978
- "member":{"shape":"LoadBasedAutoScalingConfiguration"}
1979
- },
1980
- "Minute":{
1981
- "type":"integer",
1982
- "box":true,
1983
- "max":100,
1984
- "min":1
1985
- },
1986
- "Parameters":{
1987
- "type":"map",
1988
- "key":{"shape":"String"},
1989
- "value":{"shape":"String"}
1990
- },
1991
- "Permission":{
1992
- "type":"structure",
1993
- "members":{
1994
- "StackId":{"shape":"String"},
1995
- "IamUserArn":{"shape":"String"},
1996
- "AllowSsh":{"shape":"Boolean"},
1997
- "AllowSudo":{"shape":"Boolean"},
1998
- "Level":{"shape":"String"}
1999
- }
2000
- },
2001
- "Permissions":{
2002
- "type":"list",
2003
- "member":{"shape":"Permission"}
2004
- },
2005
- "RaidArray":{
2006
- "type":"structure",
2007
- "members":{
2008
- "RaidArrayId":{"shape":"String"},
2009
- "InstanceId":{"shape":"String"},
2010
- "Name":{"shape":"String"},
2011
- "RaidLevel":{"shape":"Integer"},
2012
- "NumberOfDisks":{"shape":"Integer"},
2013
- "Size":{"shape":"Integer"},
2014
- "Device":{"shape":"String"},
2015
- "MountPoint":{"shape":"String"},
2016
- "AvailabilityZone":{"shape":"String"},
2017
- "CreatedAt":{"shape":"DateTime"},
2018
- "StackId":{"shape":"String"},
2019
- "VolumeType":{"shape":"String"},
2020
- "Iops":{"shape":"Integer"}
2021
- }
2022
- },
2023
- "RaidArrays":{
2024
- "type":"list",
2025
- "member":{"shape":"RaidArray"}
2026
- },
2027
- "RdsDbInstance":{
2028
- "type":"structure",
2029
- "members":{
2030
- "RdsDbInstanceArn":{"shape":"String"},
2031
- "DbInstanceIdentifier":{"shape":"String"},
2032
- "DbUser":{"shape":"String"},
2033
- "DbPassword":{"shape":"String"},
2034
- "Region":{"shape":"String"},
2035
- "Address":{"shape":"String"},
2036
- "Engine":{"shape":"String"},
2037
- "StackId":{"shape":"String"},
2038
- "MissingOnRds":{"shape":"Boolean"}
2039
- }
2040
- },
2041
- "RdsDbInstances":{
2042
- "type":"list",
2043
- "member":{"shape":"RdsDbInstance"}
2044
- },
2045
- "RebootInstanceRequest":{
2046
- "type":"structure",
2047
- "required":["InstanceId"],
2048
- "members":{
2049
- "InstanceId":{"shape":"String"}
2050
- }
2051
- },
2052
- "Recipes":{
2053
- "type":"structure",
2054
- "members":{
2055
- "Setup":{"shape":"Strings"},
2056
- "Configure":{"shape":"Strings"},
2057
- "Deploy":{"shape":"Strings"},
2058
- "Undeploy":{"shape":"Strings"},
2059
- "Shutdown":{"shape":"Strings"}
2060
- }
2061
- },
2062
- "RegisterEcsClusterRequest":{
2063
- "type":"structure",
2064
- "required":[
2065
- "EcsClusterArn",
2066
- "StackId"
2067
- ],
2068
- "members":{
2069
- "EcsClusterArn":{"shape":"String"},
2070
- "StackId":{"shape":"String"}
2071
- }
2072
- },
2073
- "RegisterEcsClusterResult":{
2074
- "type":"structure",
2075
- "members":{
2076
- "EcsClusterArn":{"shape":"String"}
2077
- }
2078
- },
2079
- "RegisterElasticIpRequest":{
2080
- "type":"structure",
2081
- "required":[
2082
- "ElasticIp",
2083
- "StackId"
2084
- ],
2085
- "members":{
2086
- "ElasticIp":{"shape":"String"},
2087
- "StackId":{"shape":"String"}
2088
- }
2089
- },
2090
- "RegisterElasticIpResult":{
2091
- "type":"structure",
2092
- "members":{
2093
- "ElasticIp":{"shape":"String"}
2094
- }
2095
- },
2096
- "RegisterInstanceRequest":{
2097
- "type":"structure",
2098
- "required":["StackId"],
2099
- "members":{
2100
- "StackId":{"shape":"String"},
2101
- "Hostname":{"shape":"String"},
2102
- "PublicIp":{"shape":"String"},
2103
- "PrivateIp":{"shape":"String"},
2104
- "RsaPublicKey":{"shape":"String"},
2105
- "RsaPublicKeyFingerprint":{"shape":"String"},
2106
- "InstanceIdentity":{"shape":"InstanceIdentity"}
2107
- }
2108
- },
2109
- "RegisterInstanceResult":{
2110
- "type":"structure",
2111
- "members":{
2112
- "InstanceId":{"shape":"String"}
2113
- }
2114
- },
2115
- "RegisterRdsDbInstanceRequest":{
2116
- "type":"structure",
2117
- "required":[
2118
- "StackId",
2119
- "RdsDbInstanceArn",
2120
- "DbUser",
2121
- "DbPassword"
2122
- ],
2123
- "members":{
2124
- "StackId":{"shape":"String"},
2125
- "RdsDbInstanceArn":{"shape":"String"},
2126
- "DbUser":{"shape":"String"},
2127
- "DbPassword":{"shape":"String"}
2128
- }
2129
- },
2130
- "RegisterVolumeRequest":{
2131
- "type":"structure",
2132
- "required":["StackId"],
2133
- "members":{
2134
- "Ec2VolumeId":{"shape":"String"},
2135
- "StackId":{"shape":"String"}
2136
- }
2137
- },
2138
- "RegisterVolumeResult":{
2139
- "type":"structure",
2140
- "members":{
2141
- "VolumeId":{"shape":"String"}
2142
- }
2143
- },
2144
- "ReportedOs":{
2145
- "type":"structure",
2146
- "members":{
2147
- "Family":{"shape":"String"},
2148
- "Name":{"shape":"String"},
2149
- "Version":{"shape":"String"}
2150
- }
2151
- },
2152
- "ResourceNotFoundException":{
2153
- "type":"structure",
2154
- "members":{
2155
- "message":{"shape":"String"}
2156
- },
2157
- "exception":true
2158
- },
2159
- "RootDeviceType":{
2160
- "type":"string",
2161
- "enum":[
2162
- "ebs",
2163
- "instance-store"
2164
- ]
2165
- },
2166
- "SelfUserProfile":{
2167
- "type":"structure",
2168
- "members":{
2169
- "IamUserArn":{"shape":"String"},
2170
- "Name":{"shape":"String"},
2171
- "SshUsername":{"shape":"String"},
2172
- "SshPublicKey":{"shape":"String"}
2173
- }
2174
- },
2175
- "ServiceError":{
2176
- "type":"structure",
2177
- "members":{
2178
- "ServiceErrorId":{"shape":"String"},
2179
- "StackId":{"shape":"String"},
2180
- "InstanceId":{"shape":"String"},
2181
- "Type":{"shape":"String"},
2182
- "Message":{"shape":"String"},
2183
- "CreatedAt":{"shape":"DateTime"}
2184
- }
2185
- },
2186
- "ServiceErrors":{
2187
- "type":"list",
2188
- "member":{"shape":"ServiceError"}
2189
- },
2190
- "SetLoadBasedAutoScalingRequest":{
2191
- "type":"structure",
2192
- "required":["LayerId"],
2193
- "members":{
2194
- "LayerId":{"shape":"String"},
2195
- "Enable":{"shape":"Boolean"},
2196
- "UpScaling":{"shape":"AutoScalingThresholds"},
2197
- "DownScaling":{"shape":"AutoScalingThresholds"}
2198
- }
2199
- },
2200
- "SetPermissionRequest":{
2201
- "type":"structure",
2202
- "required":[
2203
- "StackId",
2204
- "IamUserArn"
2205
- ],
2206
- "members":{
2207
- "StackId":{"shape":"String"},
2208
- "IamUserArn":{"shape":"String"},
2209
- "AllowSsh":{"shape":"Boolean"},
2210
- "AllowSudo":{"shape":"Boolean"},
2211
- "Level":{"shape":"String"}
2212
- }
2213
- },
2214
- "SetTimeBasedAutoScalingRequest":{
2215
- "type":"structure",
2216
- "required":["InstanceId"],
2217
- "members":{
2218
- "InstanceId":{"shape":"String"},
2219
- "AutoScalingSchedule":{"shape":"WeeklyAutoScalingSchedule"}
2220
- }
2221
- },
2222
- "ShutdownEventConfiguration":{
2223
- "type":"structure",
2224
- "members":{
2225
- "ExecutionTimeout":{"shape":"Integer"},
2226
- "DelayUntilElbConnectionsDrained":{"shape":"Boolean"}
2227
- }
2228
- },
2229
- "Source":{
2230
- "type":"structure",
2231
- "members":{
2232
- "Type":{"shape":"SourceType"},
2233
- "Url":{"shape":"String"},
2234
- "Username":{"shape":"String"},
2235
- "Password":{"shape":"String"},
2236
- "SshKey":{"shape":"String"},
2237
- "Revision":{"shape":"String"}
2238
- }
2239
- },
2240
- "SourceType":{
2241
- "type":"string",
2242
- "enum":[
2243
- "git",
2244
- "svn",
2245
- "archive",
2246
- "s3"
2247
- ]
2248
- },
2249
- "SslConfiguration":{
2250
- "type":"structure",
2251
- "required":[
2252
- "Certificate",
2253
- "PrivateKey"
2254
- ],
2255
- "members":{
2256
- "Certificate":{"shape":"String"},
2257
- "PrivateKey":{"shape":"String"},
2258
- "Chain":{"shape":"String"}
2259
- }
2260
- },
2261
- "Stack":{
2262
- "type":"structure",
2263
- "members":{
2264
- "StackId":{"shape":"String"},
2265
- "Name":{"shape":"String"},
2266
- "Arn":{"shape":"String"},
2267
- "Region":{"shape":"String"},
2268
- "VpcId":{"shape":"String"},
2269
- "Attributes":{"shape":"StackAttributes"},
2270
- "ServiceRoleArn":{"shape":"String"},
2271
- "DefaultInstanceProfileArn":{"shape":"String"},
2272
- "DefaultOs":{"shape":"String"},
2273
- "HostnameTheme":{"shape":"String"},
2274
- "DefaultAvailabilityZone":{"shape":"String"},
2275
- "DefaultSubnetId":{"shape":"String"},
2276
- "CustomJson":{"shape":"String"},
2277
- "ConfigurationManager":{"shape":"StackConfigurationManager"},
2278
- "ChefConfiguration":{"shape":"ChefConfiguration"},
2279
- "UseCustomCookbooks":{"shape":"Boolean"},
2280
- "UseOpsworksSecurityGroups":{"shape":"Boolean"},
2281
- "CustomCookbooksSource":{"shape":"Source"},
2282
- "DefaultSshKeyName":{"shape":"String"},
2283
- "CreatedAt":{"shape":"DateTime"},
2284
- "DefaultRootDeviceType":{"shape":"RootDeviceType"},
2285
- "AgentVersion":{"shape":"String"}
2286
- }
2287
- },
2288
- "StackAttributes":{
2289
- "type":"map",
2290
- "key":{"shape":"StackAttributesKeys"},
2291
- "value":{"shape":"String"}
2292
- },
2293
- "StackAttributesKeys":{
2294
- "type":"string",
2295
- "enum":["Color"]
2296
- },
2297
- "StackConfigurationManager":{
2298
- "type":"structure",
2299
- "members":{
2300
- "Name":{"shape":"String"},
2301
- "Version":{"shape":"String"}
2302
- }
2303
- },
2304
- "StackSummary":{
2305
- "type":"structure",
2306
- "members":{
2307
- "StackId":{"shape":"String"},
2308
- "Name":{"shape":"String"},
2309
- "Arn":{"shape":"String"},
2310
- "LayersCount":{"shape":"Integer"},
2311
- "AppsCount":{"shape":"Integer"},
2312
- "InstancesCount":{"shape":"InstancesCount"}
2313
- }
2314
- },
2315
- "Stacks":{
2316
- "type":"list",
2317
- "member":{"shape":"Stack"}
2318
- },
2319
- "StartInstanceRequest":{
2320
- "type":"structure",
2321
- "required":["InstanceId"],
2322
- "members":{
2323
- "InstanceId":{"shape":"String"}
2324
- }
2325
- },
2326
- "StartStackRequest":{
2327
- "type":"structure",
2328
- "required":["StackId"],
2329
- "members":{
2330
- "StackId":{"shape":"String"}
2331
- }
2332
- },
2333
- "StopInstanceRequest":{
2334
- "type":"structure",
2335
- "required":["InstanceId"],
2336
- "members":{
2337
- "InstanceId":{"shape":"String"}
2338
- }
2339
- },
2340
- "StopStackRequest":{
2341
- "type":"structure",
2342
- "required":["StackId"],
2343
- "members":{
2344
- "StackId":{"shape":"String"}
2345
- }
2346
- },
2347
- "String":{"type":"string"},
2348
- "Strings":{
2349
- "type":"list",
2350
- "member":{"shape":"String"}
2351
- },
2352
- "Switch":{"type":"string"},
2353
- "TemporaryCredential":{
2354
- "type":"structure",
2355
- "members":{
2356
- "Username":{"shape":"String"},
2357
- "Password":{"shape":"String"},
2358
- "ValidForInMinutes":{"shape":"Integer"},
2359
- "InstanceId":{"shape":"String"}
2360
- }
2361
- },
2362
- "TimeBasedAutoScalingConfiguration":{
2363
- "type":"structure",
2364
- "members":{
2365
- "InstanceId":{"shape":"String"},
2366
- "AutoScalingSchedule":{"shape":"WeeklyAutoScalingSchedule"}
2367
- }
2368
- },
2369
- "TimeBasedAutoScalingConfigurations":{
2370
- "type":"list",
2371
- "member":{"shape":"TimeBasedAutoScalingConfiguration"}
2372
- },
2373
- "UnassignInstanceRequest":{
2374
- "type":"structure",
2375
- "required":["InstanceId"],
2376
- "members":{
2377
- "InstanceId":{"shape":"String"}
2378
- }
2379
- },
2380
- "UnassignVolumeRequest":{
2381
- "type":"structure",
2382
- "required":["VolumeId"],
2383
- "members":{
2384
- "VolumeId":{"shape":"String"}
2385
- }
2386
- },
2387
- "UpdateAppRequest":{
2388
- "type":"structure",
2389
- "required":["AppId"],
2390
- "members":{
2391
- "AppId":{"shape":"String"},
2392
- "Name":{"shape":"String"},
2393
- "Description":{"shape":"String"},
2394
- "DataSources":{"shape":"DataSources"},
2395
- "Type":{"shape":"AppType"},
2396
- "AppSource":{"shape":"Source"},
2397
- "Domains":{"shape":"Strings"},
2398
- "EnableSsl":{"shape":"Boolean"},
2399
- "SslConfiguration":{"shape":"SslConfiguration"},
2400
- "Attributes":{"shape":"AppAttributes"},
2401
- "Environment":{"shape":"EnvironmentVariables"}
2402
- }
2403
- },
2404
- "UpdateElasticIpRequest":{
2405
- "type":"structure",
2406
- "required":["ElasticIp"],
2407
- "members":{
2408
- "ElasticIp":{"shape":"String"},
2409
- "Name":{"shape":"String"}
2410
- }
2411
- },
2412
- "UpdateInstanceRequest":{
2413
- "type":"structure",
2414
- "required":["InstanceId"],
2415
- "members":{
2416
- "InstanceId":{"shape":"String"},
2417
- "LayerIds":{"shape":"Strings"},
2418
- "InstanceType":{"shape":"String"},
2419
- "AutoScalingType":{"shape":"AutoScalingType"},
2420
- "Hostname":{"shape":"String"},
2421
- "Os":{"shape":"String"},
2422
- "AmiId":{"shape":"String"},
2423
- "SshKeyName":{"shape":"String"},
2424
- "Architecture":{"shape":"Architecture"},
2425
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
2426
- "EbsOptimized":{"shape":"Boolean"},
2427
- "AgentVersion":{"shape":"String"}
2428
- }
2429
- },
2430
- "UpdateLayerRequest":{
2431
- "type":"structure",
2432
- "required":["LayerId"],
2433
- "members":{
2434
- "LayerId":{"shape":"String"},
2435
- "Name":{"shape":"String"},
2436
- "Shortname":{"shape":"String"},
2437
- "Attributes":{"shape":"LayerAttributes"},
2438
- "CustomInstanceProfileArn":{"shape":"String"},
2439
- "CustomJson":{"shape":"String"},
2440
- "CustomSecurityGroupIds":{"shape":"Strings"},
2441
- "Packages":{"shape":"Strings"},
2442
- "VolumeConfigurations":{"shape":"VolumeConfigurations"},
2443
- "EnableAutoHealing":{"shape":"Boolean"},
2444
- "AutoAssignElasticIps":{"shape":"Boolean"},
2445
- "AutoAssignPublicIps":{"shape":"Boolean"},
2446
- "CustomRecipes":{"shape":"Recipes"},
2447
- "InstallUpdatesOnBoot":{"shape":"Boolean"},
2448
- "UseEbsOptimizedInstances":{"shape":"Boolean"},
2449
- "LifecycleEventConfiguration":{"shape":"LifecycleEventConfiguration"}
2450
- }
2451
- },
2452
- "UpdateMyUserProfileRequest":{
2453
- "type":"structure",
2454
- "members":{
2455
- "SshPublicKey":{"shape":"String"}
2456
- }
2457
- },
2458
- "UpdateRdsDbInstanceRequest":{
2459
- "type":"structure",
2460
- "required":["RdsDbInstanceArn"],
2461
- "members":{
2462
- "RdsDbInstanceArn":{"shape":"String"},
2463
- "DbUser":{"shape":"String"},
2464
- "DbPassword":{"shape":"String"}
2465
- }
2466
- },
2467
- "UpdateStackRequest":{
2468
- "type":"structure",
2469
- "required":["StackId"],
2470
- "members":{
2471
- "StackId":{"shape":"String"},
2472
- "Name":{"shape":"String"},
2473
- "Attributes":{"shape":"StackAttributes"},
2474
- "ServiceRoleArn":{"shape":"String"},
2475
- "DefaultInstanceProfileArn":{"shape":"String"},
2476
- "DefaultOs":{"shape":"String"},
2477
- "HostnameTheme":{"shape":"String"},
2478
- "DefaultAvailabilityZone":{"shape":"String"},
2479
- "DefaultSubnetId":{"shape":"String"},
2480
- "CustomJson":{"shape":"String"},
2481
- "ConfigurationManager":{"shape":"StackConfigurationManager"},
2482
- "ChefConfiguration":{"shape":"ChefConfiguration"},
2483
- "UseCustomCookbooks":{"shape":"Boolean"},
2484
- "CustomCookbooksSource":{"shape":"Source"},
2485
- "DefaultSshKeyName":{"shape":"String"},
2486
- "DefaultRootDeviceType":{"shape":"RootDeviceType"},
2487
- "UseOpsworksSecurityGroups":{"shape":"Boolean"},
2488
- "AgentVersion":{"shape":"String"}
2489
- }
2490
- },
2491
- "UpdateUserProfileRequest":{
2492
- "type":"structure",
2493
- "required":["IamUserArn"],
2494
- "members":{
2495
- "IamUserArn":{"shape":"String"},
2496
- "SshUsername":{"shape":"String"},
2497
- "SshPublicKey":{"shape":"String"},
2498
- "AllowSelfManagement":{"shape":"Boolean"}
2499
- }
2500
- },
2501
- "UpdateVolumeRequest":{
2502
- "type":"structure",
2503
- "required":["VolumeId"],
2504
- "members":{
2505
- "VolumeId":{"shape":"String"},
2506
- "Name":{"shape":"String"},
2507
- "MountPoint":{"shape":"String"}
2508
- }
2509
- },
2510
- "UserProfile":{
2511
- "type":"structure",
2512
- "members":{
2513
- "IamUserArn":{"shape":"String"},
2514
- "Name":{"shape":"String"},
2515
- "SshUsername":{"shape":"String"},
2516
- "SshPublicKey":{"shape":"String"},
2517
- "AllowSelfManagement":{"shape":"Boolean"}
2518
- }
2519
- },
2520
- "UserProfiles":{
2521
- "type":"list",
2522
- "member":{"shape":"UserProfile"}
2523
- },
2524
- "ValidForInMinutes":{
2525
- "type":"integer",
2526
- "box":true,
2527
- "max":1440,
2528
- "min":60
2529
- },
2530
- "ValidationException":{
2531
- "type":"structure",
2532
- "members":{
2533
- "message":{"shape":"String"}
2534
- },
2535
- "exception":true
2536
- },
2537
- "VirtualizationType":{
2538
- "type":"string",
2539
- "enum":[
2540
- "paravirtual",
2541
- "hvm"
2542
- ]
2543
- },
2544
- "Volume":{
2545
- "type":"structure",
2546
- "members":{
2547
- "VolumeId":{"shape":"String"},
2548
- "Ec2VolumeId":{"shape":"String"},
2549
- "Name":{"shape":"String"},
2550
- "RaidArrayId":{"shape":"String"},
2551
- "InstanceId":{"shape":"String"},
2552
- "Status":{"shape":"String"},
2553
- "Size":{"shape":"Integer"},
2554
- "Device":{"shape":"String"},
2555
- "MountPoint":{"shape":"String"},
2556
- "Region":{"shape":"String"},
2557
- "AvailabilityZone":{"shape":"String"},
2558
- "VolumeType":{"shape":"String"},
2559
- "Iops":{"shape":"Integer"}
2560
- }
2561
- },
2562
- "VolumeConfiguration":{
2563
- "type":"structure",
2564
- "required":[
2565
- "MountPoint",
2566
- "NumberOfDisks",
2567
- "Size"
2568
- ],
2569
- "members":{
2570
- "MountPoint":{"shape":"String"},
2571
- "RaidLevel":{"shape":"Integer"},
2572
- "NumberOfDisks":{"shape":"Integer"},
2573
- "Size":{"shape":"Integer"},
2574
- "VolumeType":{"shape":"String"},
2575
- "Iops":{"shape":"Integer"}
2576
- }
2577
- },
2578
- "VolumeConfigurations":{
2579
- "type":"list",
2580
- "member":{"shape":"VolumeConfiguration"}
2581
- },
2582
- "VolumeType":{
2583
- "type":"string",
2584
- "enum":[
2585
- "gp2",
2586
- "io1",
2587
- "standard"
2588
- ]
2589
- },
2590
- "Volumes":{
2591
- "type":"list",
2592
- "member":{"shape":"Volume"}
2593
- },
2594
- "WeeklyAutoScalingSchedule":{
2595
- "type":"structure",
2596
- "members":{
2597
- "Monday":{"shape":"DailyAutoScalingSchedule"},
2598
- "Tuesday":{"shape":"DailyAutoScalingSchedule"},
2599
- "Wednesday":{"shape":"DailyAutoScalingSchedule"},
2600
- "Thursday":{"shape":"DailyAutoScalingSchedule"},
2601
- "Friday":{"shape":"DailyAutoScalingSchedule"},
2602
- "Saturday":{"shape":"DailyAutoScalingSchedule"},
2603
- "Sunday":{"shape":"DailyAutoScalingSchedule"}
2604
- }
2605
- }
2606
- }
2607
- }