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,1823 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-12-01",
5
- "endpointPrefix":"elasticloadbalancing",
6
- "protocol":"query",
7
- "serviceAbbreviation":"Elastic Load Balancing v2",
8
- "serviceFullName":"Elastic Load Balancing",
9
- "signatureVersion":"v4",
10
- "uid":"elasticloadbalancingv2-2015-12-01",
11
- "xmlNamespace":"http://elasticloadbalancing.amazonaws.com/doc/2015-12-01/"
12
- },
13
- "operations":{
14
- "AddTags":{
15
- "name":"AddTags",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"AddTagsInput"},
21
- "output":{
22
- "shape":"AddTagsOutput",
23
- "resultWrapper":"AddTagsResult"
24
- },
25
- "errors":[
26
- {"shape":"DuplicateTagKeysException"},
27
- {"shape":"TooManyTagsException"},
28
- {"shape":"LoadBalancerNotFoundException"},
29
- {"shape":"TargetGroupNotFoundException"}
30
- ]
31
- },
32
- "CreateListener":{
33
- "name":"CreateListener",
34
- "http":{
35
- "method":"POST",
36
- "requestUri":"/"
37
- },
38
- "input":{"shape":"CreateListenerInput"},
39
- "output":{
40
- "shape":"CreateListenerOutput",
41
- "resultWrapper":"CreateListenerResult"
42
- },
43
- "errors":[
44
- {"shape":"DuplicateListenerException"},
45
- {"shape":"TooManyListenersException"},
46
- {"shape":"TooManyCertificatesException"},
47
- {"shape":"LoadBalancerNotFoundException"},
48
- {"shape":"TargetGroupNotFoundException"},
49
- {"shape":"TargetGroupAssociationLimitException"},
50
- {"shape":"InvalidConfigurationRequestException"},
51
- {"shape":"IncompatibleProtocolsException"},
52
- {"shape":"SSLPolicyNotFoundException"},
53
- {"shape":"CertificateNotFoundException"},
54
- {"shape":"UnsupportedProtocolException"},
55
- {"shape":"TooManyRegistrationsForTargetIdException"}
56
- ]
57
- },
58
- "CreateLoadBalancer":{
59
- "name":"CreateLoadBalancer",
60
- "http":{
61
- "method":"POST",
62
- "requestUri":"/"
63
- },
64
- "input":{"shape":"CreateLoadBalancerInput"},
65
- "output":{
66
- "shape":"CreateLoadBalancerOutput",
67
- "resultWrapper":"CreateLoadBalancerResult"
68
- },
69
- "errors":[
70
- {"shape":"DuplicateLoadBalancerNameException"},
71
- {"shape":"TooManyLoadBalancersException"},
72
- {"shape":"InvalidConfigurationRequestException"},
73
- {"shape":"SubnetNotFoundException"},
74
- {"shape":"InvalidSubnetException"},
75
- {"shape":"InvalidSecurityGroupException"},
76
- {"shape":"InvalidSchemeException"},
77
- {"shape":"TooManyTagsException"},
78
- {"shape":"DuplicateTagKeysException"}
79
- ]
80
- },
81
- "CreateRule":{
82
- "name":"CreateRule",
83
- "http":{
84
- "method":"POST",
85
- "requestUri":"/"
86
- },
87
- "input":{"shape":"CreateRuleInput"},
88
- "output":{
89
- "shape":"CreateRuleOutput",
90
- "resultWrapper":"CreateRuleResult"
91
- },
92
- "errors":[
93
- {"shape":"PriorityInUseException"},
94
- {"shape":"TooManyTargetGroupsException"},
95
- {"shape":"TooManyRulesException"},
96
- {"shape":"TargetGroupAssociationLimitException"},
97
- {"shape":"ListenerNotFoundException"},
98
- {"shape":"TargetGroupNotFoundException"},
99
- {"shape":"InvalidConfigurationRequestException"},
100
- {"shape":"TooManyRegistrationsForTargetIdException"}
101
- ]
102
- },
103
- "CreateTargetGroup":{
104
- "name":"CreateTargetGroup",
105
- "http":{
106
- "method":"POST",
107
- "requestUri":"/"
108
- },
109
- "input":{"shape":"CreateTargetGroupInput"},
110
- "output":{
111
- "shape":"CreateTargetGroupOutput",
112
- "resultWrapper":"CreateTargetGroupResult"
113
- },
114
- "errors":[
115
- {"shape":"DuplicateTargetGroupNameException"},
116
- {"shape":"TooManyTargetGroupsException"}
117
- ]
118
- },
119
- "DeleteListener":{
120
- "name":"DeleteListener",
121
- "http":{
122
- "method":"POST",
123
- "requestUri":"/"
124
- },
125
- "input":{"shape":"DeleteListenerInput"},
126
- "output":{
127
- "shape":"DeleteListenerOutput",
128
- "resultWrapper":"DeleteListenerResult"
129
- },
130
- "errors":[
131
- {"shape":"ListenerNotFoundException"}
132
- ]
133
- },
134
- "DeleteLoadBalancer":{
135
- "name":"DeleteLoadBalancer",
136
- "http":{
137
- "method":"POST",
138
- "requestUri":"/"
139
- },
140
- "input":{"shape":"DeleteLoadBalancerInput"},
141
- "output":{
142
- "shape":"DeleteLoadBalancerOutput",
143
- "resultWrapper":"DeleteLoadBalancerResult"
144
- },
145
- "errors":[
146
- {"shape":"LoadBalancerNotFoundException"},
147
- {"shape":"OperationNotPermittedException"}
148
- ]
149
- },
150
- "DeleteRule":{
151
- "name":"DeleteRule",
152
- "http":{
153
- "method":"POST",
154
- "requestUri":"/"
155
- },
156
- "input":{"shape":"DeleteRuleInput"},
157
- "output":{
158
- "shape":"DeleteRuleOutput",
159
- "resultWrapper":"DeleteRuleResult"
160
- },
161
- "errors":[
162
- {"shape":"RuleNotFoundException"},
163
- {"shape":"OperationNotPermittedException"}
164
- ]
165
- },
166
- "DeleteTargetGroup":{
167
- "name":"DeleteTargetGroup",
168
- "http":{
169
- "method":"POST",
170
- "requestUri":"/"
171
- },
172
- "input":{"shape":"DeleteTargetGroupInput"},
173
- "output":{
174
- "shape":"DeleteTargetGroupOutput",
175
- "resultWrapper":"DeleteTargetGroupResult"
176
- },
177
- "errors":[
178
- {"shape":"ResourceInUseException"}
179
- ]
180
- },
181
- "DeregisterTargets":{
182
- "name":"DeregisterTargets",
183
- "http":{
184
- "method":"POST",
185
- "requestUri":"/"
186
- },
187
- "input":{"shape":"DeregisterTargetsInput"},
188
- "output":{
189
- "shape":"DeregisterTargetsOutput",
190
- "resultWrapper":"DeregisterTargetsResult"
191
- },
192
- "errors":[
193
- {"shape":"TargetGroupNotFoundException"},
194
- {"shape":"InvalidTargetException"}
195
- ]
196
- },
197
- "DescribeListeners":{
198
- "name":"DescribeListeners",
199
- "http":{
200
- "method":"POST",
201
- "requestUri":"/"
202
- },
203
- "input":{"shape":"DescribeListenersInput"},
204
- "output":{
205
- "shape":"DescribeListenersOutput",
206
- "resultWrapper":"DescribeListenersResult"
207
- },
208
- "errors":[
209
- {"shape":"ListenerNotFoundException"},
210
- {"shape":"LoadBalancerNotFoundException"}
211
- ]
212
- },
213
- "DescribeLoadBalancerAttributes":{
214
- "name":"DescribeLoadBalancerAttributes",
215
- "http":{
216
- "method":"POST",
217
- "requestUri":"/"
218
- },
219
- "input":{"shape":"DescribeLoadBalancerAttributesInput"},
220
- "output":{
221
- "shape":"DescribeLoadBalancerAttributesOutput",
222
- "resultWrapper":"DescribeLoadBalancerAttributesResult"
223
- },
224
- "errors":[
225
- {"shape":"LoadBalancerNotFoundException"}
226
- ]
227
- },
228
- "DescribeLoadBalancers":{
229
- "name":"DescribeLoadBalancers",
230
- "http":{
231
- "method":"POST",
232
- "requestUri":"/"
233
- },
234
- "input":{"shape":"DescribeLoadBalancersInput"},
235
- "output":{
236
- "shape":"DescribeLoadBalancersOutput",
237
- "resultWrapper":"DescribeLoadBalancersResult"
238
- },
239
- "errors":[
240
- {"shape":"LoadBalancerNotFoundException"}
241
- ]
242
- },
243
- "DescribeRules":{
244
- "name":"DescribeRules",
245
- "http":{
246
- "method":"POST",
247
- "requestUri":"/"
248
- },
249
- "input":{"shape":"DescribeRulesInput"},
250
- "output":{
251
- "shape":"DescribeRulesOutput",
252
- "resultWrapper":"DescribeRulesResult"
253
- },
254
- "errors":[
255
- {"shape":"ListenerNotFoundException"},
256
- {"shape":"RuleNotFoundException"}
257
- ]
258
- },
259
- "DescribeSSLPolicies":{
260
- "name":"DescribeSSLPolicies",
261
- "http":{
262
- "method":"POST",
263
- "requestUri":"/"
264
- },
265
- "input":{"shape":"DescribeSSLPoliciesInput"},
266
- "output":{
267
- "shape":"DescribeSSLPoliciesOutput",
268
- "resultWrapper":"DescribeSSLPoliciesResult"
269
- },
270
- "errors":[
271
- {"shape":"SSLPolicyNotFoundException"}
272
- ]
273
- },
274
- "DescribeTags":{
275
- "name":"DescribeTags",
276
- "http":{
277
- "method":"POST",
278
- "requestUri":"/"
279
- },
280
- "input":{"shape":"DescribeTagsInput"},
281
- "output":{
282
- "shape":"DescribeTagsOutput",
283
- "resultWrapper":"DescribeTagsResult"
284
- },
285
- "errors":[
286
- {"shape":"LoadBalancerNotFoundException"},
287
- {"shape":"TargetGroupNotFoundException"},
288
- {"shape":"ListenerNotFoundException"},
289
- {"shape":"RuleNotFoundException"}
290
- ]
291
- },
292
- "DescribeTargetGroupAttributes":{
293
- "name":"DescribeTargetGroupAttributes",
294
- "http":{
295
- "method":"POST",
296
- "requestUri":"/"
297
- },
298
- "input":{"shape":"DescribeTargetGroupAttributesInput"},
299
- "output":{
300
- "shape":"DescribeTargetGroupAttributesOutput",
301
- "resultWrapper":"DescribeTargetGroupAttributesResult"
302
- },
303
- "errors":[
304
- {"shape":"TargetGroupNotFoundException"}
305
- ]
306
- },
307
- "DescribeTargetGroups":{
308
- "name":"DescribeTargetGroups",
309
- "http":{
310
- "method":"POST",
311
- "requestUri":"/"
312
- },
313
- "input":{"shape":"DescribeTargetGroupsInput"},
314
- "output":{
315
- "shape":"DescribeTargetGroupsOutput",
316
- "resultWrapper":"DescribeTargetGroupsResult"
317
- },
318
- "errors":[
319
- {"shape":"LoadBalancerNotFoundException"},
320
- {"shape":"TargetGroupNotFoundException"}
321
- ]
322
- },
323
- "DescribeTargetHealth":{
324
- "name":"DescribeTargetHealth",
325
- "http":{
326
- "method":"POST",
327
- "requestUri":"/"
328
- },
329
- "input":{"shape":"DescribeTargetHealthInput"},
330
- "output":{
331
- "shape":"DescribeTargetHealthOutput",
332
- "resultWrapper":"DescribeTargetHealthResult"
333
- },
334
- "errors":[
335
- {"shape":"InvalidTargetException"},
336
- {"shape":"TargetGroupNotFoundException"},
337
- {"shape":"HealthUnavailableException"}
338
- ]
339
- },
340
- "ModifyListener":{
341
- "name":"ModifyListener",
342
- "http":{
343
- "method":"POST",
344
- "requestUri":"/"
345
- },
346
- "input":{"shape":"ModifyListenerInput"},
347
- "output":{
348
- "shape":"ModifyListenerOutput",
349
- "resultWrapper":"ModifyListenerResult"
350
- },
351
- "errors":[
352
- {"shape":"DuplicateListenerException"},
353
- {"shape":"TooManyListenersException"},
354
- {"shape":"TooManyCertificatesException"},
355
- {"shape":"ListenerNotFoundException"},
356
- {"shape":"TargetGroupNotFoundException"},
357
- {"shape":"TargetGroupAssociationLimitException"},
358
- {"shape":"IncompatibleProtocolsException"},
359
- {"shape":"SSLPolicyNotFoundException"},
360
- {"shape":"CertificateNotFoundException"},
361
- {"shape":"InvalidConfigurationRequestException"},
362
- {"shape":"UnsupportedProtocolException"},
363
- {"shape":"TooManyRegistrationsForTargetIdException"}
364
- ]
365
- },
366
- "ModifyLoadBalancerAttributes":{
367
- "name":"ModifyLoadBalancerAttributes",
368
- "http":{
369
- "method":"POST",
370
- "requestUri":"/"
371
- },
372
- "input":{"shape":"ModifyLoadBalancerAttributesInput"},
373
- "output":{
374
- "shape":"ModifyLoadBalancerAttributesOutput",
375
- "resultWrapper":"ModifyLoadBalancerAttributesResult"
376
- },
377
- "errors":[
378
- {"shape":"LoadBalancerNotFoundException"},
379
- {"shape":"InvalidConfigurationRequestException"}
380
- ]
381
- },
382
- "ModifyRule":{
383
- "name":"ModifyRule",
384
- "http":{
385
- "method":"POST",
386
- "requestUri":"/"
387
- },
388
- "input":{"shape":"ModifyRuleInput"},
389
- "output":{
390
- "shape":"ModifyRuleOutput",
391
- "resultWrapper":"ModifyRuleResult"
392
- },
393
- "errors":[
394
- {"shape":"TargetGroupAssociationLimitException"},
395
- {"shape":"RuleNotFoundException"},
396
- {"shape":"OperationNotPermittedException"},
397
- {"shape":"TooManyRegistrationsForTargetIdException"}
398
- ]
399
- },
400
- "ModifyTargetGroup":{
401
- "name":"ModifyTargetGroup",
402
- "http":{
403
- "method":"POST",
404
- "requestUri":"/"
405
- },
406
- "input":{"shape":"ModifyTargetGroupInput"},
407
- "output":{
408
- "shape":"ModifyTargetGroupOutput",
409
- "resultWrapper":"ModifyTargetGroupResult"
410
- },
411
- "errors":[
412
- {"shape":"TargetGroupNotFoundException"}
413
- ]
414
- },
415
- "ModifyTargetGroupAttributes":{
416
- "name":"ModifyTargetGroupAttributes",
417
- "http":{
418
- "method":"POST",
419
- "requestUri":"/"
420
- },
421
- "input":{"shape":"ModifyTargetGroupAttributesInput"},
422
- "output":{
423
- "shape":"ModifyTargetGroupAttributesOutput",
424
- "resultWrapper":"ModifyTargetGroupAttributesResult"
425
- },
426
- "errors":[
427
- {"shape":"TargetGroupNotFoundException"}
428
- ]
429
- },
430
- "RegisterTargets":{
431
- "name":"RegisterTargets",
432
- "http":{
433
- "method":"POST",
434
- "requestUri":"/"
435
- },
436
- "input":{"shape":"RegisterTargetsInput"},
437
- "output":{
438
- "shape":"RegisterTargetsOutput",
439
- "resultWrapper":"RegisterTargetsResult"
440
- },
441
- "errors":[
442
- {"shape":"TargetGroupNotFoundException"},
443
- {"shape":"TooManyTargetsException"},
444
- {"shape":"InvalidTargetException"},
445
- {"shape":"TooManyRegistrationsForTargetIdException"}
446
- ]
447
- },
448
- "RemoveTags":{
449
- "name":"RemoveTags",
450
- "http":{
451
- "method":"POST",
452
- "requestUri":"/"
453
- },
454
- "input":{"shape":"RemoveTagsInput"},
455
- "output":{
456
- "shape":"RemoveTagsOutput",
457
- "resultWrapper":"RemoveTagsResult"
458
- },
459
- "errors":[
460
- {"shape":"LoadBalancerNotFoundException"},
461
- {"shape":"TargetGroupNotFoundException"},
462
- {"shape":"ListenerNotFoundException"},
463
- {"shape":"RuleNotFoundException"},
464
- {"shape":"TooManyTagsException"}
465
- ]
466
- },
467
- "SetIpAddressType":{
468
- "name":"SetIpAddressType",
469
- "http":{
470
- "method":"POST",
471
- "requestUri":"/"
472
- },
473
- "input":{"shape":"SetIpAddressTypeInput"},
474
- "output":{
475
- "shape":"SetIpAddressTypeOutput",
476
- "resultWrapper":"SetIpAddressTypeResult"
477
- },
478
- "errors":[
479
- {"shape":"LoadBalancerNotFoundException"},
480
- {"shape":"InvalidConfigurationRequestException"},
481
- {"shape":"InvalidSubnetException"}
482
- ]
483
- },
484
- "SetRulePriorities":{
485
- "name":"SetRulePriorities",
486
- "http":{
487
- "method":"POST",
488
- "requestUri":"/"
489
- },
490
- "input":{"shape":"SetRulePrioritiesInput"},
491
- "output":{
492
- "shape":"SetRulePrioritiesOutput",
493
- "resultWrapper":"SetRulePrioritiesResult"
494
- },
495
- "errors":[
496
- {"shape":"RuleNotFoundException"},
497
- {"shape":"PriorityInUseException"},
498
- {"shape":"OperationNotPermittedException"}
499
- ]
500
- },
501
- "SetSecurityGroups":{
502
- "name":"SetSecurityGroups",
503
- "http":{
504
- "method":"POST",
505
- "requestUri":"/"
506
- },
507
- "input":{"shape":"SetSecurityGroupsInput"},
508
- "output":{
509
- "shape":"SetSecurityGroupsOutput",
510
- "resultWrapper":"SetSecurityGroupsResult"
511
- },
512
- "errors":[
513
- {"shape":"LoadBalancerNotFoundException"},
514
- {"shape":"InvalidConfigurationRequestException"},
515
- {"shape":"InvalidSecurityGroupException"}
516
- ]
517
- },
518
- "SetSubnets":{
519
- "name":"SetSubnets",
520
- "http":{
521
- "method":"POST",
522
- "requestUri":"/"
523
- },
524
- "input":{"shape":"SetSubnetsInput"},
525
- "output":{
526
- "shape":"SetSubnetsOutput",
527
- "resultWrapper":"SetSubnetsResult"
528
- },
529
- "errors":[
530
- {"shape":"LoadBalancerNotFoundException"},
531
- {"shape":"InvalidConfigurationRequestException"},
532
- {"shape":"SubnetNotFoundException"},
533
- {"shape":"InvalidSubnetException"}
534
- ]
535
- }
536
- },
537
- "shapes":{
538
- "Action":{
539
- "type":"structure",
540
- "required":[
541
- "Type",
542
- "TargetGroupArn"
543
- ],
544
- "members":{
545
- "Type":{"shape":"ActionTypeEnum"},
546
- "TargetGroupArn":{"shape":"TargetGroupArn"}
547
- }
548
- },
549
- "ActionTypeEnum":{
550
- "type":"string",
551
- "enum":["forward"]
552
- },
553
- "Actions":{
554
- "type":"list",
555
- "member":{"shape":"Action"}
556
- },
557
- "AddTagsInput":{
558
- "type":"structure",
559
- "required":[
560
- "ResourceArns",
561
- "Tags"
562
- ],
563
- "members":{
564
- "ResourceArns":{"shape":"ResourceArns"},
565
- "Tags":{"shape":"TagList"}
566
- }
567
- },
568
- "AddTagsOutput":{
569
- "type":"structure",
570
- "members":{
571
- }
572
- },
573
- "AvailabilityZone":{
574
- "type":"structure",
575
- "members":{
576
- "ZoneName":{"shape":"ZoneName"},
577
- "SubnetId":{"shape":"SubnetId"}
578
- }
579
- },
580
- "AvailabilityZones":{
581
- "type":"list",
582
- "member":{"shape":"AvailabilityZone"}
583
- },
584
- "CanonicalHostedZoneId":{"type":"string"},
585
- "Certificate":{
586
- "type":"structure",
587
- "members":{
588
- "CertificateArn":{"shape":"CertificateArn"}
589
- }
590
- },
591
- "CertificateArn":{"type":"string"},
592
- "CertificateList":{
593
- "type":"list",
594
- "member":{"shape":"Certificate"}
595
- },
596
- "CertificateNotFoundException":{
597
- "type":"structure",
598
- "members":{
599
- },
600
- "error":{
601
- "code":"CertificateNotFound",
602
- "httpStatusCode":400,
603
- "senderFault":true
604
- },
605
- "exception":true
606
- },
607
- "Cipher":{
608
- "type":"structure",
609
- "members":{
610
- "Name":{"shape":"CipherName"},
611
- "Priority":{"shape":"CipherPriority"}
612
- }
613
- },
614
- "CipherName":{"type":"string"},
615
- "CipherPriority":{"type":"integer"},
616
- "Ciphers":{
617
- "type":"list",
618
- "member":{"shape":"Cipher"}
619
- },
620
- "ConditionFieldName":{
621
- "type":"string",
622
- "max":64
623
- },
624
- "CreateListenerInput":{
625
- "type":"structure",
626
- "required":[
627
- "LoadBalancerArn",
628
- "Protocol",
629
- "Port",
630
- "DefaultActions"
631
- ],
632
- "members":{
633
- "LoadBalancerArn":{"shape":"LoadBalancerArn"},
634
- "Protocol":{"shape":"ProtocolEnum"},
635
- "Port":{"shape":"Port"},
636
- "SslPolicy":{"shape":"SslPolicyName"},
637
- "Certificates":{"shape":"CertificateList"},
638
- "DefaultActions":{"shape":"Actions"}
639
- }
640
- },
641
- "CreateListenerOutput":{
642
- "type":"structure",
643
- "members":{
644
- "Listeners":{"shape":"Listeners"}
645
- }
646
- },
647
- "CreateLoadBalancerInput":{
648
- "type":"structure",
649
- "required":[
650
- "Name",
651
- "Subnets"
652
- ],
653
- "members":{
654
- "Name":{"shape":"LoadBalancerName"},
655
- "Subnets":{"shape":"Subnets"},
656
- "SecurityGroups":{"shape":"SecurityGroups"},
657
- "Scheme":{"shape":"LoadBalancerSchemeEnum"},
658
- "Tags":{"shape":"TagList"},
659
- "IpAddressType":{"shape":"IpAddressType"}
660
- }
661
- },
662
- "CreateLoadBalancerOutput":{
663
- "type":"structure",
664
- "members":{
665
- "LoadBalancers":{"shape":"LoadBalancers"}
666
- }
667
- },
668
- "CreateRuleInput":{
669
- "type":"structure",
670
- "required":[
671
- "ListenerArn",
672
- "Conditions",
673
- "Priority",
674
- "Actions"
675
- ],
676
- "members":{
677
- "ListenerArn":{"shape":"ListenerArn"},
678
- "Conditions":{"shape":"RuleConditionList"},
679
- "Priority":{"shape":"RulePriority"},
680
- "Actions":{"shape":"Actions"}
681
- }
682
- },
683
- "CreateRuleOutput":{
684
- "type":"structure",
685
- "members":{
686
- "Rules":{"shape":"Rules"}
687
- }
688
- },
689
- "CreateTargetGroupInput":{
690
- "type":"structure",
691
- "required":[
692
- "Name",
693
- "Protocol",
694
- "Port",
695
- "VpcId"
696
- ],
697
- "members":{
698
- "Name":{"shape":"TargetGroupName"},
699
- "Protocol":{"shape":"ProtocolEnum"},
700
- "Port":{"shape":"Port"},
701
- "VpcId":{"shape":"VpcId"},
702
- "HealthCheckProtocol":{"shape":"ProtocolEnum"},
703
- "HealthCheckPort":{"shape":"HealthCheckPort"},
704
- "HealthCheckPath":{"shape":"Path"},
705
- "HealthCheckIntervalSeconds":{"shape":"HealthCheckIntervalSeconds"},
706
- "HealthCheckTimeoutSeconds":{"shape":"HealthCheckTimeoutSeconds"},
707
- "HealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
708
- "UnhealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
709
- "Matcher":{"shape":"Matcher"}
710
- }
711
- },
712
- "CreateTargetGroupOutput":{
713
- "type":"structure",
714
- "members":{
715
- "TargetGroups":{"shape":"TargetGroups"}
716
- }
717
- },
718
- "CreatedTime":{"type":"timestamp"},
719
- "DNSName":{"type":"string"},
720
- "DeleteListenerInput":{
721
- "type":"structure",
722
- "required":["ListenerArn"],
723
- "members":{
724
- "ListenerArn":{"shape":"ListenerArn"}
725
- }
726
- },
727
- "DeleteListenerOutput":{
728
- "type":"structure",
729
- "members":{
730
- }
731
- },
732
- "DeleteLoadBalancerInput":{
733
- "type":"structure",
734
- "required":["LoadBalancerArn"],
735
- "members":{
736
- "LoadBalancerArn":{"shape":"LoadBalancerArn"}
737
- }
738
- },
739
- "DeleteLoadBalancerOutput":{
740
- "type":"structure",
741
- "members":{
742
- }
743
- },
744
- "DeleteRuleInput":{
745
- "type":"structure",
746
- "required":["RuleArn"],
747
- "members":{
748
- "RuleArn":{"shape":"RuleArn"}
749
- }
750
- },
751
- "DeleteRuleOutput":{
752
- "type":"structure",
753
- "members":{
754
- }
755
- },
756
- "DeleteTargetGroupInput":{
757
- "type":"structure",
758
- "required":["TargetGroupArn"],
759
- "members":{
760
- "TargetGroupArn":{"shape":"TargetGroupArn"}
761
- }
762
- },
763
- "DeleteTargetGroupOutput":{
764
- "type":"structure",
765
- "members":{
766
- }
767
- },
768
- "DeregisterTargetsInput":{
769
- "type":"structure",
770
- "required":[
771
- "TargetGroupArn",
772
- "Targets"
773
- ],
774
- "members":{
775
- "TargetGroupArn":{"shape":"TargetGroupArn"},
776
- "Targets":{"shape":"TargetDescriptions"}
777
- }
778
- },
779
- "DeregisterTargetsOutput":{
780
- "type":"structure",
781
- "members":{
782
- }
783
- },
784
- "DescribeListenersInput":{
785
- "type":"structure",
786
- "members":{
787
- "LoadBalancerArn":{"shape":"LoadBalancerArn"},
788
- "ListenerArns":{"shape":"ListenerArns"},
789
- "Marker":{"shape":"Marker"},
790
- "PageSize":{"shape":"PageSize"}
791
- }
792
- },
793
- "DescribeListenersOutput":{
794
- "type":"structure",
795
- "members":{
796
- "Listeners":{"shape":"Listeners"},
797
- "NextMarker":{"shape":"Marker"}
798
- }
799
- },
800
- "DescribeLoadBalancerAttributesInput":{
801
- "type":"structure",
802
- "required":["LoadBalancerArn"],
803
- "members":{
804
- "LoadBalancerArn":{"shape":"LoadBalancerArn"}
805
- }
806
- },
807
- "DescribeLoadBalancerAttributesOutput":{
808
- "type":"structure",
809
- "members":{
810
- "Attributes":{"shape":"LoadBalancerAttributes"}
811
- }
812
- },
813
- "DescribeLoadBalancersInput":{
814
- "type":"structure",
815
- "members":{
816
- "LoadBalancerArns":{"shape":"LoadBalancerArns"},
817
- "Names":{"shape":"LoadBalancerNames"},
818
- "Marker":{"shape":"Marker"},
819
- "PageSize":{"shape":"PageSize"}
820
- }
821
- },
822
- "DescribeLoadBalancersOutput":{
823
- "type":"structure",
824
- "members":{
825
- "LoadBalancers":{"shape":"LoadBalancers"},
826
- "NextMarker":{"shape":"Marker"}
827
- }
828
- },
829
- "DescribeRulesInput":{
830
- "type":"structure",
831
- "members":{
832
- "ListenerArn":{"shape":"ListenerArn"},
833
- "RuleArns":{"shape":"RuleArns"}
834
- }
835
- },
836
- "DescribeRulesOutput":{
837
- "type":"structure",
838
- "members":{
839
- "Rules":{"shape":"Rules"}
840
- }
841
- },
842
- "DescribeSSLPoliciesInput":{
843
- "type":"structure",
844
- "members":{
845
- "Names":{"shape":"SslPolicyNames"},
846
- "Marker":{"shape":"Marker"},
847
- "PageSize":{"shape":"PageSize"}
848
- }
849
- },
850
- "DescribeSSLPoliciesOutput":{
851
- "type":"structure",
852
- "members":{
853
- "SslPolicies":{"shape":"SslPolicies"},
854
- "NextMarker":{"shape":"Marker"}
855
- }
856
- },
857
- "DescribeTagsInput":{
858
- "type":"structure",
859
- "required":["ResourceArns"],
860
- "members":{
861
- "ResourceArns":{"shape":"ResourceArns"}
862
- }
863
- },
864
- "DescribeTagsOutput":{
865
- "type":"structure",
866
- "members":{
867
- "TagDescriptions":{"shape":"TagDescriptions"}
868
- }
869
- },
870
- "DescribeTargetGroupAttributesInput":{
871
- "type":"structure",
872
- "required":["TargetGroupArn"],
873
- "members":{
874
- "TargetGroupArn":{"shape":"TargetGroupArn"}
875
- }
876
- },
877
- "DescribeTargetGroupAttributesOutput":{
878
- "type":"structure",
879
- "members":{
880
- "Attributes":{"shape":"TargetGroupAttributes"}
881
- }
882
- },
883
- "DescribeTargetGroupsInput":{
884
- "type":"structure",
885
- "members":{
886
- "LoadBalancerArn":{"shape":"LoadBalancerArn"},
887
- "TargetGroupArns":{"shape":"TargetGroupArns"},
888
- "Names":{"shape":"TargetGroupNames"},
889
- "Marker":{"shape":"Marker"},
890
- "PageSize":{"shape":"PageSize"}
891
- }
892
- },
893
- "DescribeTargetGroupsOutput":{
894
- "type":"structure",
895
- "members":{
896
- "TargetGroups":{"shape":"TargetGroups"},
897
- "NextMarker":{"shape":"Marker"}
898
- }
899
- },
900
- "DescribeTargetHealthInput":{
901
- "type":"structure",
902
- "required":["TargetGroupArn"],
903
- "members":{
904
- "TargetGroupArn":{"shape":"TargetGroupArn"},
905
- "Targets":{"shape":"TargetDescriptions"}
906
- }
907
- },
908
- "DescribeTargetHealthOutput":{
909
- "type":"structure",
910
- "members":{
911
- "TargetHealthDescriptions":{"shape":"TargetHealthDescriptions"}
912
- }
913
- },
914
- "Description":{"type":"string"},
915
- "DuplicateListenerException":{
916
- "type":"structure",
917
- "members":{
918
- },
919
- "error":{
920
- "code":"DuplicateListener",
921
- "httpStatusCode":400,
922
- "senderFault":true
923
- },
924
- "exception":true
925
- },
926
- "DuplicateLoadBalancerNameException":{
927
- "type":"structure",
928
- "members":{
929
- },
930
- "error":{
931
- "code":"DuplicateLoadBalancerName",
932
- "httpStatusCode":400,
933
- "senderFault":true
934
- },
935
- "exception":true
936
- },
937
- "DuplicateTagKeysException":{
938
- "type":"structure",
939
- "members":{
940
- },
941
- "error":{
942
- "code":"DuplicateTagKeys",
943
- "httpStatusCode":400,
944
- "senderFault":true
945
- },
946
- "exception":true
947
- },
948
- "DuplicateTargetGroupNameException":{
949
- "type":"structure",
950
- "members":{
951
- },
952
- "error":{
953
- "code":"DuplicateTargetGroupName",
954
- "httpStatusCode":400,
955
- "senderFault":true
956
- },
957
- "exception":true
958
- },
959
- "HealthCheckIntervalSeconds":{
960
- "type":"integer",
961
- "max":300,
962
- "min":5
963
- },
964
- "HealthCheckPort":{"type":"string"},
965
- "HealthCheckThresholdCount":{
966
- "type":"integer",
967
- "max":10,
968
- "min":2
969
- },
970
- "HealthCheckTimeoutSeconds":{
971
- "type":"integer",
972
- "max":60,
973
- "min":2
974
- },
975
- "HealthUnavailableException":{
976
- "type":"structure",
977
- "members":{
978
- },
979
- "error":{
980
- "code":"HealthUnavailable",
981
- "httpStatusCode":500
982
- },
983
- "exception":true
984
- },
985
- "HttpCode":{"type":"string"},
986
- "IncompatibleProtocolsException":{
987
- "type":"structure",
988
- "members":{
989
- },
990
- "error":{
991
- "code":"IncompatibleProtocols",
992
- "httpStatusCode":400,
993
- "senderFault":true
994
- },
995
- "exception":true
996
- },
997
- "InvalidConfigurationRequestException":{
998
- "type":"structure",
999
- "members":{
1000
- },
1001
- "error":{
1002
- "code":"InvalidConfigurationRequest",
1003
- "httpStatusCode":400,
1004
- "senderFault":true
1005
- },
1006
- "exception":true
1007
- },
1008
- "InvalidSchemeException":{
1009
- "type":"structure",
1010
- "members":{
1011
- },
1012
- "error":{
1013
- "code":"InvalidScheme",
1014
- "httpStatusCode":400,
1015
- "senderFault":true
1016
- },
1017
- "exception":true
1018
- },
1019
- "InvalidSecurityGroupException":{
1020
- "type":"structure",
1021
- "members":{
1022
- },
1023
- "error":{
1024
- "code":"InvalidSecurityGroup",
1025
- "httpStatusCode":400,
1026
- "senderFault":true
1027
- },
1028
- "exception":true
1029
- },
1030
- "InvalidSubnetException":{
1031
- "type":"structure",
1032
- "members":{
1033
- },
1034
- "error":{
1035
- "code":"InvalidSubnet",
1036
- "httpStatusCode":400,
1037
- "senderFault":true
1038
- },
1039
- "exception":true
1040
- },
1041
- "InvalidTargetException":{
1042
- "type":"structure",
1043
- "members":{
1044
- },
1045
- "error":{
1046
- "code":"InvalidTarget",
1047
- "httpStatusCode":400,
1048
- "senderFault":true
1049
- },
1050
- "exception":true
1051
- },
1052
- "IpAddressType":{
1053
- "type":"string",
1054
- "enum":[
1055
- "ipv4",
1056
- "dualstack"
1057
- ]
1058
- },
1059
- "IsDefault":{"type":"boolean"},
1060
- "ListOfString":{
1061
- "type":"list",
1062
- "member":{"shape":"StringValue"}
1063
- },
1064
- "Listener":{
1065
- "type":"structure",
1066
- "members":{
1067
- "ListenerArn":{"shape":"ListenerArn"},
1068
- "LoadBalancerArn":{"shape":"LoadBalancerArn"},
1069
- "Port":{"shape":"Port"},
1070
- "Protocol":{"shape":"ProtocolEnum"},
1071
- "Certificates":{"shape":"CertificateList"},
1072
- "SslPolicy":{"shape":"SslPolicyName"},
1073
- "DefaultActions":{"shape":"Actions"}
1074
- }
1075
- },
1076
- "ListenerArn":{"type":"string"},
1077
- "ListenerArns":{
1078
- "type":"list",
1079
- "member":{"shape":"ListenerArn"}
1080
- },
1081
- "ListenerNotFoundException":{
1082
- "type":"structure",
1083
- "members":{
1084
- },
1085
- "error":{
1086
- "code":"ListenerNotFound",
1087
- "httpStatusCode":400,
1088
- "senderFault":true
1089
- },
1090
- "exception":true
1091
- },
1092
- "Listeners":{
1093
- "type":"list",
1094
- "member":{"shape":"Listener"}
1095
- },
1096
- "LoadBalancer":{
1097
- "type":"structure",
1098
- "members":{
1099
- "LoadBalancerArn":{"shape":"LoadBalancerArn"},
1100
- "DNSName":{"shape":"DNSName"},
1101
- "CanonicalHostedZoneId":{"shape":"CanonicalHostedZoneId"},
1102
- "CreatedTime":{"shape":"CreatedTime"},
1103
- "LoadBalancerName":{"shape":"LoadBalancerName"},
1104
- "Scheme":{"shape":"LoadBalancerSchemeEnum"},
1105
- "VpcId":{"shape":"VpcId"},
1106
- "State":{"shape":"LoadBalancerState"},
1107
- "Type":{"shape":"LoadBalancerTypeEnum"},
1108
- "AvailabilityZones":{"shape":"AvailabilityZones"},
1109
- "SecurityGroups":{"shape":"SecurityGroups"},
1110
- "IpAddressType":{"shape":"IpAddressType"}
1111
- }
1112
- },
1113
- "LoadBalancerArn":{"type":"string"},
1114
- "LoadBalancerArns":{
1115
- "type":"list",
1116
- "member":{"shape":"LoadBalancerArn"}
1117
- },
1118
- "LoadBalancerAttribute":{
1119
- "type":"structure",
1120
- "members":{
1121
- "Key":{"shape":"LoadBalancerAttributeKey"},
1122
- "Value":{"shape":"LoadBalancerAttributeValue"}
1123
- }
1124
- },
1125
- "LoadBalancerAttributeKey":{
1126
- "type":"string",
1127
- "max":256,
1128
- "pattern":"^[a-zA-Z0-9._]+$"
1129
- },
1130
- "LoadBalancerAttributeValue":{
1131
- "type":"string",
1132
- "max":1024
1133
- },
1134
- "LoadBalancerAttributes":{
1135
- "type":"list",
1136
- "member":{"shape":"LoadBalancerAttribute"},
1137
- "max":20
1138
- },
1139
- "LoadBalancerName":{"type":"string"},
1140
- "LoadBalancerNames":{
1141
- "type":"list",
1142
- "member":{"shape":"LoadBalancerName"}
1143
- },
1144
- "LoadBalancerNotFoundException":{
1145
- "type":"structure",
1146
- "members":{
1147
- },
1148
- "error":{
1149
- "code":"LoadBalancerNotFound",
1150
- "httpStatusCode":400,
1151
- "senderFault":true
1152
- },
1153
- "exception":true
1154
- },
1155
- "LoadBalancerSchemeEnum":{
1156
- "type":"string",
1157
- "enum":[
1158
- "internet-facing",
1159
- "internal"
1160
- ]
1161
- },
1162
- "LoadBalancerState":{
1163
- "type":"structure",
1164
- "members":{
1165
- "Code":{"shape":"LoadBalancerStateEnum"},
1166
- "Reason":{"shape":"StateReason"}
1167
- }
1168
- },
1169
- "LoadBalancerStateEnum":{
1170
- "type":"string",
1171
- "enum":[
1172
- "active",
1173
- "provisioning",
1174
- "failed"
1175
- ]
1176
- },
1177
- "LoadBalancerTypeEnum":{
1178
- "type":"string",
1179
- "enum":["application"]
1180
- },
1181
- "LoadBalancers":{
1182
- "type":"list",
1183
- "member":{"shape":"LoadBalancer"}
1184
- },
1185
- "Marker":{"type":"string"},
1186
- "Matcher":{
1187
- "type":"structure",
1188
- "required":["HttpCode"],
1189
- "members":{
1190
- "HttpCode":{"shape":"HttpCode"}
1191
- }
1192
- },
1193
- "ModifyListenerInput":{
1194
- "type":"structure",
1195
- "required":["ListenerArn"],
1196
- "members":{
1197
- "ListenerArn":{"shape":"ListenerArn"},
1198
- "Port":{"shape":"Port"},
1199
- "Protocol":{"shape":"ProtocolEnum"},
1200
- "SslPolicy":{"shape":"SslPolicyName"},
1201
- "Certificates":{"shape":"CertificateList"},
1202
- "DefaultActions":{"shape":"Actions"}
1203
- }
1204
- },
1205
- "ModifyListenerOutput":{
1206
- "type":"structure",
1207
- "members":{
1208
- "Listeners":{"shape":"Listeners"}
1209
- }
1210
- },
1211
- "ModifyLoadBalancerAttributesInput":{
1212
- "type":"structure",
1213
- "required":[
1214
- "LoadBalancerArn",
1215
- "Attributes"
1216
- ],
1217
- "members":{
1218
- "LoadBalancerArn":{"shape":"LoadBalancerArn"},
1219
- "Attributes":{"shape":"LoadBalancerAttributes"}
1220
- }
1221
- },
1222
- "ModifyLoadBalancerAttributesOutput":{
1223
- "type":"structure",
1224
- "members":{
1225
- "Attributes":{"shape":"LoadBalancerAttributes"}
1226
- }
1227
- },
1228
- "ModifyRuleInput":{
1229
- "type":"structure",
1230
- "required":["RuleArn"],
1231
- "members":{
1232
- "RuleArn":{"shape":"RuleArn"},
1233
- "Conditions":{"shape":"RuleConditionList"},
1234
- "Actions":{"shape":"Actions"}
1235
- }
1236
- },
1237
- "ModifyRuleOutput":{
1238
- "type":"structure",
1239
- "members":{
1240
- "Rules":{"shape":"Rules"}
1241
- }
1242
- },
1243
- "ModifyTargetGroupAttributesInput":{
1244
- "type":"structure",
1245
- "required":[
1246
- "TargetGroupArn",
1247
- "Attributes"
1248
- ],
1249
- "members":{
1250
- "TargetGroupArn":{"shape":"TargetGroupArn"},
1251
- "Attributes":{"shape":"TargetGroupAttributes"}
1252
- }
1253
- },
1254
- "ModifyTargetGroupAttributesOutput":{
1255
- "type":"structure",
1256
- "members":{
1257
- "Attributes":{"shape":"TargetGroupAttributes"}
1258
- }
1259
- },
1260
- "ModifyTargetGroupInput":{
1261
- "type":"structure",
1262
- "required":["TargetGroupArn"],
1263
- "members":{
1264
- "TargetGroupArn":{"shape":"TargetGroupArn"},
1265
- "HealthCheckProtocol":{"shape":"ProtocolEnum"},
1266
- "HealthCheckPort":{"shape":"HealthCheckPort"},
1267
- "HealthCheckPath":{"shape":"Path"},
1268
- "HealthCheckIntervalSeconds":{"shape":"HealthCheckIntervalSeconds"},
1269
- "HealthCheckTimeoutSeconds":{"shape":"HealthCheckTimeoutSeconds"},
1270
- "HealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
1271
- "UnhealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
1272
- "Matcher":{"shape":"Matcher"}
1273
- }
1274
- },
1275
- "ModifyTargetGroupOutput":{
1276
- "type":"structure",
1277
- "members":{
1278
- "TargetGroups":{"shape":"TargetGroups"}
1279
- }
1280
- },
1281
- "OperationNotPermittedException":{
1282
- "type":"structure",
1283
- "members":{
1284
- },
1285
- "error":{
1286
- "code":"OperationNotPermitted",
1287
- "httpStatusCode":400,
1288
- "senderFault":true
1289
- },
1290
- "exception":true
1291
- },
1292
- "PageSize":{
1293
- "type":"integer",
1294
- "max":400,
1295
- "min":1
1296
- },
1297
- "Path":{
1298
- "type":"string",
1299
- "max":1024,
1300
- "min":1
1301
- },
1302
- "Port":{
1303
- "type":"integer",
1304
- "max":65535,
1305
- "min":1
1306
- },
1307
- "PriorityInUseException":{
1308
- "type":"structure",
1309
- "members":{
1310
- },
1311
- "error":{
1312
- "code":"PriorityInUse",
1313
- "httpStatusCode":400,
1314
- "senderFault":true
1315
- },
1316
- "exception":true
1317
- },
1318
- "ProtocolEnum":{
1319
- "type":"string",
1320
- "enum":[
1321
- "HTTP",
1322
- "HTTPS"
1323
- ]
1324
- },
1325
- "RegisterTargetsInput":{
1326
- "type":"structure",
1327
- "required":[
1328
- "TargetGroupArn",
1329
- "Targets"
1330
- ],
1331
- "members":{
1332
- "TargetGroupArn":{"shape":"TargetGroupArn"},
1333
- "Targets":{"shape":"TargetDescriptions"}
1334
- }
1335
- },
1336
- "RegisterTargetsOutput":{
1337
- "type":"structure",
1338
- "members":{
1339
- }
1340
- },
1341
- "RemoveTagsInput":{
1342
- "type":"structure",
1343
- "required":[
1344
- "ResourceArns",
1345
- "TagKeys"
1346
- ],
1347
- "members":{
1348
- "ResourceArns":{"shape":"ResourceArns"},
1349
- "TagKeys":{"shape":"TagKeys"}
1350
- }
1351
- },
1352
- "RemoveTagsOutput":{
1353
- "type":"structure",
1354
- "members":{
1355
- }
1356
- },
1357
- "ResourceArn":{"type":"string"},
1358
- "ResourceArns":{
1359
- "type":"list",
1360
- "member":{"shape":"ResourceArn"}
1361
- },
1362
- "ResourceInUseException":{
1363
- "type":"structure",
1364
- "members":{
1365
- },
1366
- "error":{
1367
- "code":"ResourceInUse",
1368
- "httpStatusCode":400,
1369
- "senderFault":true
1370
- },
1371
- "exception":true
1372
- },
1373
- "Rule":{
1374
- "type":"structure",
1375
- "members":{
1376
- "RuleArn":{"shape":"RuleArn"},
1377
- "Priority":{"shape":"String"},
1378
- "Conditions":{"shape":"RuleConditionList"},
1379
- "Actions":{"shape":"Actions"},
1380
- "IsDefault":{"shape":"IsDefault"}
1381
- }
1382
- },
1383
- "RuleArn":{"type":"string"},
1384
- "RuleArns":{
1385
- "type":"list",
1386
- "member":{"shape":"RuleArn"}
1387
- },
1388
- "RuleCondition":{
1389
- "type":"structure",
1390
- "members":{
1391
- "Field":{"shape":"ConditionFieldName"},
1392
- "Values":{"shape":"ListOfString"}
1393
- }
1394
- },
1395
- "RuleConditionList":{
1396
- "type":"list",
1397
- "member":{"shape":"RuleCondition"}
1398
- },
1399
- "RuleNotFoundException":{
1400
- "type":"structure",
1401
- "members":{
1402
- },
1403
- "error":{
1404
- "code":"RuleNotFound",
1405
- "httpStatusCode":400,
1406
- "senderFault":true
1407
- },
1408
- "exception":true
1409
- },
1410
- "RulePriority":{
1411
- "type":"integer",
1412
- "max":99999,
1413
- "min":1
1414
- },
1415
- "RulePriorityList":{
1416
- "type":"list",
1417
- "member":{"shape":"RulePriorityPair"}
1418
- },
1419
- "RulePriorityPair":{
1420
- "type":"structure",
1421
- "members":{
1422
- "RuleArn":{"shape":"RuleArn"},
1423
- "Priority":{"shape":"RulePriority"}
1424
- }
1425
- },
1426
- "Rules":{
1427
- "type":"list",
1428
- "member":{"shape":"Rule"}
1429
- },
1430
- "SSLPolicyNotFoundException":{
1431
- "type":"structure",
1432
- "members":{
1433
- },
1434
- "error":{
1435
- "code":"SSLPolicyNotFound",
1436
- "httpStatusCode":400,
1437
- "senderFault":true
1438
- },
1439
- "exception":true
1440
- },
1441
- "SecurityGroupId":{"type":"string"},
1442
- "SecurityGroups":{
1443
- "type":"list",
1444
- "member":{"shape":"SecurityGroupId"}
1445
- },
1446
- "SetIpAddressTypeInput":{
1447
- "type":"structure",
1448
- "required":[
1449
- "LoadBalancerArn",
1450
- "IpAddressType"
1451
- ],
1452
- "members":{
1453
- "LoadBalancerArn":{"shape":"LoadBalancerArn"},
1454
- "IpAddressType":{"shape":"IpAddressType"}
1455
- }
1456
- },
1457
- "SetIpAddressTypeOutput":{
1458
- "type":"structure",
1459
- "members":{
1460
- "IpAddressType":{"shape":"IpAddressType"}
1461
- }
1462
- },
1463
- "SetRulePrioritiesInput":{
1464
- "type":"structure",
1465
- "required":["RulePriorities"],
1466
- "members":{
1467
- "RulePriorities":{"shape":"RulePriorityList"}
1468
- }
1469
- },
1470
- "SetRulePrioritiesOutput":{
1471
- "type":"structure",
1472
- "members":{
1473
- "Rules":{"shape":"Rules"}
1474
- }
1475
- },
1476
- "SetSecurityGroupsInput":{
1477
- "type":"structure",
1478
- "required":[
1479
- "LoadBalancerArn",
1480
- "SecurityGroups"
1481
- ],
1482
- "members":{
1483
- "LoadBalancerArn":{"shape":"LoadBalancerArn"},
1484
- "SecurityGroups":{"shape":"SecurityGroups"}
1485
- }
1486
- },
1487
- "SetSecurityGroupsOutput":{
1488
- "type":"structure",
1489
- "members":{
1490
- "SecurityGroupIds":{"shape":"SecurityGroups"}
1491
- }
1492
- },
1493
- "SetSubnetsInput":{
1494
- "type":"structure",
1495
- "required":[
1496
- "LoadBalancerArn",
1497
- "Subnets"
1498
- ],
1499
- "members":{
1500
- "LoadBalancerArn":{"shape":"LoadBalancerArn"},
1501
- "Subnets":{"shape":"Subnets"}
1502
- }
1503
- },
1504
- "SetSubnetsOutput":{
1505
- "type":"structure",
1506
- "members":{
1507
- "AvailabilityZones":{"shape":"AvailabilityZones"}
1508
- }
1509
- },
1510
- "SslPolicies":{
1511
- "type":"list",
1512
- "member":{"shape":"SslPolicy"}
1513
- },
1514
- "SslPolicy":{
1515
- "type":"structure",
1516
- "members":{
1517
- "SslProtocols":{"shape":"SslProtocols"},
1518
- "Ciphers":{"shape":"Ciphers"},
1519
- "Name":{"shape":"SslPolicyName"}
1520
- }
1521
- },
1522
- "SslPolicyName":{"type":"string"},
1523
- "SslPolicyNames":{
1524
- "type":"list",
1525
- "member":{"shape":"SslPolicyName"}
1526
- },
1527
- "SslProtocol":{"type":"string"},
1528
- "SslProtocols":{
1529
- "type":"list",
1530
- "member":{"shape":"SslProtocol"}
1531
- },
1532
- "StateReason":{"type":"string"},
1533
- "String":{"type":"string"},
1534
- "StringValue":{"type":"string"},
1535
- "SubnetId":{"type":"string"},
1536
- "SubnetNotFoundException":{
1537
- "type":"structure",
1538
- "members":{
1539
- },
1540
- "error":{
1541
- "code":"SubnetNotFound",
1542
- "httpStatusCode":400,
1543
- "senderFault":true
1544
- },
1545
- "exception":true
1546
- },
1547
- "Subnets":{
1548
- "type":"list",
1549
- "member":{"shape":"SubnetId"}
1550
- },
1551
- "Tag":{
1552
- "type":"structure",
1553
- "required":["Key"],
1554
- "members":{
1555
- "Key":{"shape":"TagKey"},
1556
- "Value":{"shape":"TagValue"}
1557
- }
1558
- },
1559
- "TagDescription":{
1560
- "type":"structure",
1561
- "members":{
1562
- "ResourceArn":{"shape":"ResourceArn"},
1563
- "Tags":{"shape":"TagList"}
1564
- }
1565
- },
1566
- "TagDescriptions":{
1567
- "type":"list",
1568
- "member":{"shape":"TagDescription"}
1569
- },
1570
- "TagKey":{
1571
- "type":"string",
1572
- "max":128,
1573
- "min":1,
1574
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
1575
- },
1576
- "TagKeys":{
1577
- "type":"list",
1578
- "member":{"shape":"TagKey"}
1579
- },
1580
- "TagList":{
1581
- "type":"list",
1582
- "member":{"shape":"Tag"},
1583
- "min":1
1584
- },
1585
- "TagValue":{
1586
- "type":"string",
1587
- "max":256,
1588
- "min":0,
1589
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
1590
- },
1591
- "TargetDescription":{
1592
- "type":"structure",
1593
- "required":["Id"],
1594
- "members":{
1595
- "Id":{"shape":"TargetId"},
1596
- "Port":{"shape":"Port"}
1597
- }
1598
- },
1599
- "TargetDescriptions":{
1600
- "type":"list",
1601
- "member":{"shape":"TargetDescription"}
1602
- },
1603
- "TargetGroup":{
1604
- "type":"structure",
1605
- "members":{
1606
- "TargetGroupArn":{"shape":"TargetGroupArn"},
1607
- "TargetGroupName":{"shape":"TargetGroupName"},
1608
- "Protocol":{"shape":"ProtocolEnum"},
1609
- "Port":{"shape":"Port"},
1610
- "VpcId":{"shape":"VpcId"},
1611
- "HealthCheckProtocol":{"shape":"ProtocolEnum"},
1612
- "HealthCheckPort":{"shape":"HealthCheckPort"},
1613
- "HealthCheckIntervalSeconds":{"shape":"HealthCheckIntervalSeconds"},
1614
- "HealthCheckTimeoutSeconds":{"shape":"HealthCheckTimeoutSeconds"},
1615
- "HealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
1616
- "UnhealthyThresholdCount":{"shape":"HealthCheckThresholdCount"},
1617
- "HealthCheckPath":{"shape":"Path"},
1618
- "Matcher":{"shape":"Matcher"},
1619
- "LoadBalancerArns":{"shape":"LoadBalancerArns"}
1620
- }
1621
- },
1622
- "TargetGroupArn":{"type":"string"},
1623
- "TargetGroupArns":{
1624
- "type":"list",
1625
- "member":{"shape":"TargetGroupArn"}
1626
- },
1627
- "TargetGroupAssociationLimitException":{
1628
- "type":"structure",
1629
- "members":{
1630
- },
1631
- "error":{
1632
- "code":"TargetGroupAssociationLimit",
1633
- "httpStatusCode":400,
1634
- "senderFault":true
1635
- },
1636
- "exception":true
1637
- },
1638
- "TargetGroupAttribute":{
1639
- "type":"structure",
1640
- "members":{
1641
- "Key":{"shape":"TargetGroupAttributeKey"},
1642
- "Value":{"shape":"TargetGroupAttributeValue"}
1643
- }
1644
- },
1645
- "TargetGroupAttributeKey":{
1646
- "type":"string",
1647
- "max":256,
1648
- "pattern":"^[a-zA-Z0-9._]+$"
1649
- },
1650
- "TargetGroupAttributeValue":{"type":"string"},
1651
- "TargetGroupAttributes":{
1652
- "type":"list",
1653
- "member":{"shape":"TargetGroupAttribute"}
1654
- },
1655
- "TargetGroupName":{"type":"string"},
1656
- "TargetGroupNames":{
1657
- "type":"list",
1658
- "member":{"shape":"TargetGroupName"}
1659
- },
1660
- "TargetGroupNotFoundException":{
1661
- "type":"structure",
1662
- "members":{
1663
- },
1664
- "error":{
1665
- "code":"TargetGroupNotFound",
1666
- "httpStatusCode":400,
1667
- "senderFault":true
1668
- },
1669
- "exception":true
1670
- },
1671
- "TargetGroups":{
1672
- "type":"list",
1673
- "member":{"shape":"TargetGroup"}
1674
- },
1675
- "TargetHealth":{
1676
- "type":"structure",
1677
- "members":{
1678
- "State":{"shape":"TargetHealthStateEnum"},
1679
- "Reason":{"shape":"TargetHealthReasonEnum"},
1680
- "Description":{"shape":"Description"}
1681
- }
1682
- },
1683
- "TargetHealthDescription":{
1684
- "type":"structure",
1685
- "members":{
1686
- "Target":{"shape":"TargetDescription"},
1687
- "HealthCheckPort":{"shape":"HealthCheckPort"},
1688
- "TargetHealth":{"shape":"TargetHealth"}
1689
- }
1690
- },
1691
- "TargetHealthDescriptions":{
1692
- "type":"list",
1693
- "member":{"shape":"TargetHealthDescription"}
1694
- },
1695
- "TargetHealthReasonEnum":{
1696
- "type":"string",
1697
- "enum":[
1698
- "Elb.RegistrationInProgress",
1699
- "Elb.InitialHealthChecking",
1700
- "Target.ResponseCodeMismatch",
1701
- "Target.Timeout",
1702
- "Target.FailedHealthChecks",
1703
- "Target.NotRegistered",
1704
- "Target.NotInUse",
1705
- "Target.DeregistrationInProgress",
1706
- "Target.InvalidState",
1707
- "Elb.InternalError"
1708
- ]
1709
- },
1710
- "TargetHealthStateEnum":{
1711
- "type":"string",
1712
- "enum":[
1713
- "initial",
1714
- "healthy",
1715
- "unhealthy",
1716
- "unused",
1717
- "draining"
1718
- ]
1719
- },
1720
- "TargetId":{"type":"string"},
1721
- "TooManyCertificatesException":{
1722
- "type":"structure",
1723
- "members":{
1724
- },
1725
- "error":{
1726
- "code":"TooManyCertificates",
1727
- "httpStatusCode":400,
1728
- "senderFault":true
1729
- },
1730
- "exception":true
1731
- },
1732
- "TooManyListenersException":{
1733
- "type":"structure",
1734
- "members":{
1735
- },
1736
- "error":{
1737
- "code":"TooManyListeners",
1738
- "httpStatusCode":400,
1739
- "senderFault":true
1740
- },
1741
- "exception":true
1742
- },
1743
- "TooManyLoadBalancersException":{
1744
- "type":"structure",
1745
- "members":{
1746
- },
1747
- "error":{
1748
- "code":"TooManyLoadBalancers",
1749
- "httpStatusCode":400,
1750
- "senderFault":true
1751
- },
1752
- "exception":true
1753
- },
1754
- "TooManyRegistrationsForTargetIdException":{
1755
- "type":"structure",
1756
- "members":{
1757
- },
1758
- "error":{
1759
- "code":"TooManyRegistrationsForTargetId",
1760
- "httpStatusCode":400,
1761
- "senderFault":true
1762
- },
1763
- "exception":true
1764
- },
1765
- "TooManyRulesException":{
1766
- "type":"structure",
1767
- "members":{
1768
- },
1769
- "error":{
1770
- "code":"TooManyRules",
1771
- "httpStatusCode":400,
1772
- "senderFault":true
1773
- },
1774
- "exception":true
1775
- },
1776
- "TooManyTagsException":{
1777
- "type":"structure",
1778
- "members":{
1779
- },
1780
- "error":{
1781
- "code":"TooManyTags",
1782
- "httpStatusCode":400,
1783
- "senderFault":true
1784
- },
1785
- "exception":true
1786
- },
1787
- "TooManyTargetGroupsException":{
1788
- "type":"structure",
1789
- "members":{
1790
- },
1791
- "error":{
1792
- "code":"TooManyTargetGroups",
1793
- "httpStatusCode":400,
1794
- "senderFault":true
1795
- },
1796
- "exception":true
1797
- },
1798
- "TooManyTargetsException":{
1799
- "type":"structure",
1800
- "members":{
1801
- },
1802
- "error":{
1803
- "code":"TooManyTargets",
1804
- "httpStatusCode":400,
1805
- "senderFault":true
1806
- },
1807
- "exception":true
1808
- },
1809
- "UnsupportedProtocolException":{
1810
- "type":"structure",
1811
- "members":{
1812
- },
1813
- "error":{
1814
- "code":"UnsupportedProtocol",
1815
- "httpStatusCode":400,
1816
- "senderFault":true
1817
- },
1818
- "exception":true
1819
- },
1820
- "VpcId":{"type":"string"},
1821
- "ZoneName":{"type":"string"}
1822
- }
1823
- }