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,3312 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2013-04-01",
5
- "endpointPrefix":"route53",
6
- "globalEndpoint":"route53.amazonaws.com",
7
- "protocol":"rest-xml",
8
- "serviceAbbreviation":"Route 53",
9
- "serviceFullName":"Amazon Route 53",
10
- "signatureVersion":"v4",
11
- "uid":"route53-2013-04-01"
12
- },
13
- "operations":{
14
- "AssociateVPCWithHostedZone":{
15
- "name":"AssociateVPCWithHostedZone",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/2013-04-01/hostedzone/{Id}/associatevpc"
19
- },
20
- "input":{
21
- "shape":"AssociateVPCWithHostedZoneRequest",
22
- "locationName":"AssociateVPCWithHostedZoneRequest",
23
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
24
- },
25
- "output":{"shape":"AssociateVPCWithHostedZoneResponse"},
26
- "errors":[
27
- {"shape":"NoSuchHostedZone"},
28
- {"shape":"NotAuthorizedException"},
29
- {"shape":"InvalidVPCId"},
30
- {"shape":"InvalidInput"},
31
- {"shape":"PublicZoneVPCAssociation"},
32
- {"shape":"ConflictingDomainExists"},
33
- {"shape":"LimitsExceeded"}
34
- ]
35
- },
36
- "ChangeResourceRecordSets":{
37
- "name":"ChangeResourceRecordSets",
38
- "http":{
39
- "method":"POST",
40
- "requestUri":"/2013-04-01/hostedzone/{Id}/rrset/"
41
- },
42
- "input":{
43
- "shape":"ChangeResourceRecordSetsRequest",
44
- "locationName":"ChangeResourceRecordSetsRequest",
45
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
46
- },
47
- "output":{"shape":"ChangeResourceRecordSetsResponse"},
48
- "errors":[
49
- {"shape":"NoSuchHostedZone"},
50
- {"shape":"NoSuchHealthCheck"},
51
- {"shape":"InvalidChangeBatch"},
52
- {"shape":"InvalidInput"},
53
- {"shape":"PriorRequestNotComplete"}
54
- ]
55
- },
56
- "ChangeTagsForResource":{
57
- "name":"ChangeTagsForResource",
58
- "http":{
59
- "method":"POST",
60
- "requestUri":"/2013-04-01/tags/{ResourceType}/{ResourceId}"
61
- },
62
- "input":{
63
- "shape":"ChangeTagsForResourceRequest",
64
- "locationName":"ChangeTagsForResourceRequest",
65
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
66
- },
67
- "output":{"shape":"ChangeTagsForResourceResponse"},
68
- "errors":[
69
- {"shape":"InvalidInput"},
70
- {"shape":"NoSuchHealthCheck"},
71
- {"shape":"NoSuchHostedZone"},
72
- {"shape":"PriorRequestNotComplete"},
73
- {"shape":"ThrottlingException"}
74
- ]
75
- },
76
- "CreateHealthCheck":{
77
- "name":"CreateHealthCheck",
78
- "http":{
79
- "method":"POST",
80
- "requestUri":"/2013-04-01/healthcheck",
81
- "responseCode":201
82
- },
83
- "input":{
84
- "shape":"CreateHealthCheckRequest",
85
- "locationName":"CreateHealthCheckRequest",
86
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
87
- },
88
- "output":{"shape":"CreateHealthCheckResponse"},
89
- "errors":[
90
- {"shape":"TooManyHealthChecks"},
91
- {"shape":"HealthCheckAlreadyExists"},
92
- {"shape":"InvalidInput"}
93
- ]
94
- },
95
- "CreateHostedZone":{
96
- "name":"CreateHostedZone",
97
- "http":{
98
- "method":"POST",
99
- "requestUri":"/2013-04-01/hostedzone",
100
- "responseCode":201
101
- },
102
- "input":{
103
- "shape":"CreateHostedZoneRequest",
104
- "locationName":"CreateHostedZoneRequest",
105
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
106
- },
107
- "output":{"shape":"CreateHostedZoneResponse"},
108
- "errors":[
109
- {"shape":"InvalidDomainName"},
110
- {"shape":"HostedZoneAlreadyExists"},
111
- {"shape":"TooManyHostedZones"},
112
- {"shape":"InvalidVPCId"},
113
- {"shape":"InvalidInput"},
114
- {"shape":"DelegationSetNotAvailable"},
115
- {"shape":"ConflictingDomainExists"},
116
- {"shape":"NoSuchDelegationSet"},
117
- {"shape":"DelegationSetNotReusable"}
118
- ]
119
- },
120
- "CreateReusableDelegationSet":{
121
- "name":"CreateReusableDelegationSet",
122
- "http":{
123
- "method":"POST",
124
- "requestUri":"/2013-04-01/delegationset",
125
- "responseCode":201
126
- },
127
- "input":{
128
- "shape":"CreateReusableDelegationSetRequest",
129
- "locationName":"CreateReusableDelegationSetRequest",
130
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
131
- },
132
- "output":{"shape":"CreateReusableDelegationSetResponse"},
133
- "errors":[
134
- {"shape":"DelegationSetAlreadyCreated"},
135
- {"shape":"LimitsExceeded"},
136
- {"shape":"HostedZoneNotFound"},
137
- {"shape":"InvalidArgument"},
138
- {"shape":"InvalidInput"},
139
- {"shape":"DelegationSetNotAvailable"},
140
- {"shape":"DelegationSetAlreadyReusable"}
141
- ]
142
- },
143
- "CreateTrafficPolicy":{
144
- "name":"CreateTrafficPolicy",
145
- "http":{
146
- "method":"POST",
147
- "requestUri":"/2013-04-01/trafficpolicy",
148
- "responseCode":201
149
- },
150
- "input":{
151
- "shape":"CreateTrafficPolicyRequest",
152
- "locationName":"CreateTrafficPolicyRequest",
153
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
154
- },
155
- "output":{"shape":"CreateTrafficPolicyResponse"},
156
- "errors":[
157
- {"shape":"InvalidInput"},
158
- {"shape":"TooManyTrafficPolicies"},
159
- {"shape":"TrafficPolicyAlreadyExists"},
160
- {"shape":"InvalidTrafficPolicyDocument"}
161
- ]
162
- },
163
- "CreateTrafficPolicyInstance":{
164
- "name":"CreateTrafficPolicyInstance",
165
- "http":{
166
- "method":"POST",
167
- "requestUri":"/2013-04-01/trafficpolicyinstance",
168
- "responseCode":201
169
- },
170
- "input":{
171
- "shape":"CreateTrafficPolicyInstanceRequest",
172
- "locationName":"CreateTrafficPolicyInstanceRequest",
173
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
174
- },
175
- "output":{"shape":"CreateTrafficPolicyInstanceResponse"},
176
- "errors":[
177
- {"shape":"NoSuchHostedZone"},
178
- {"shape":"InvalidInput"},
179
- {"shape":"TooManyTrafficPolicyInstances"},
180
- {"shape":"NoSuchTrafficPolicy"},
181
- {"shape":"TrafficPolicyInstanceAlreadyExists"}
182
- ]
183
- },
184
- "CreateTrafficPolicyVersion":{
185
- "name":"CreateTrafficPolicyVersion",
186
- "http":{
187
- "method":"POST",
188
- "requestUri":"/2013-04-01/trafficpolicy/{Id}",
189
- "responseCode":201
190
- },
191
- "input":{
192
- "shape":"CreateTrafficPolicyVersionRequest",
193
- "locationName":"CreateTrafficPolicyVersionRequest",
194
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
195
- },
196
- "output":{"shape":"CreateTrafficPolicyVersionResponse"},
197
- "errors":[
198
- {"shape":"NoSuchTrafficPolicy"},
199
- {"shape":"InvalidInput"},
200
- {"shape":"ConcurrentModification"},
201
- {"shape":"InvalidTrafficPolicyDocument"}
202
- ]
203
- },
204
- "CreateVPCAssociationAuthorization":{
205
- "name":"CreateVPCAssociationAuthorization",
206
- "http":{
207
- "method":"POST",
208
- "requestUri":"/2013-04-01/hostedzone/{Id}/authorizevpcassociation"
209
- },
210
- "input":{
211
- "shape":"CreateVPCAssociationAuthorizationRequest",
212
- "locationName":"CreateVPCAssociationAuthorizationRequest",
213
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
214
- },
215
- "output":{"shape":"CreateVPCAssociationAuthorizationResponse"},
216
- "errors":[
217
- {"shape":"ConcurrentModification"},
218
- {"shape":"TooManyVPCAssociationAuthorizations"},
219
- {"shape":"NoSuchHostedZone"},
220
- {"shape":"InvalidVPCId"},
221
- {"shape":"InvalidInput"}
222
- ]
223
- },
224
- "DeleteHealthCheck":{
225
- "name":"DeleteHealthCheck",
226
- "http":{
227
- "method":"DELETE",
228
- "requestUri":"/2013-04-01/healthcheck/{HealthCheckId}"
229
- },
230
- "input":{"shape":"DeleteHealthCheckRequest"},
231
- "output":{"shape":"DeleteHealthCheckResponse"},
232
- "errors":[
233
- {"shape":"NoSuchHealthCheck"},
234
- {"shape":"HealthCheckInUse"},
235
- {"shape":"InvalidInput"}
236
- ]
237
- },
238
- "DeleteHostedZone":{
239
- "name":"DeleteHostedZone",
240
- "http":{
241
- "method":"DELETE",
242
- "requestUri":"/2013-04-01/hostedzone/{Id}"
243
- },
244
- "input":{"shape":"DeleteHostedZoneRequest"},
245
- "output":{"shape":"DeleteHostedZoneResponse"},
246
- "errors":[
247
- {"shape":"NoSuchHostedZone"},
248
- {"shape":"HostedZoneNotEmpty"},
249
- {"shape":"PriorRequestNotComplete"},
250
- {"shape":"InvalidInput"},
251
- {"shape":"InvalidDomainName"}
252
- ]
253
- },
254
- "DeleteReusableDelegationSet":{
255
- "name":"DeleteReusableDelegationSet",
256
- "http":{
257
- "method":"DELETE",
258
- "requestUri":"/2013-04-01/delegationset/{Id}"
259
- },
260
- "input":{"shape":"DeleteReusableDelegationSetRequest"},
261
- "output":{"shape":"DeleteReusableDelegationSetResponse"},
262
- "errors":[
263
- {"shape":"NoSuchDelegationSet"},
264
- {"shape":"DelegationSetInUse"},
265
- {"shape":"DelegationSetNotReusable"},
266
- {"shape":"InvalidInput"}
267
- ]
268
- },
269
- "DeleteTrafficPolicy":{
270
- "name":"DeleteTrafficPolicy",
271
- "http":{
272
- "method":"DELETE",
273
- "requestUri":"/2013-04-01/trafficpolicy/{Id}/{Version}"
274
- },
275
- "input":{"shape":"DeleteTrafficPolicyRequest"},
276
- "output":{"shape":"DeleteTrafficPolicyResponse"},
277
- "errors":[
278
- {"shape":"NoSuchTrafficPolicy"},
279
- {"shape":"InvalidInput"},
280
- {"shape":"TrafficPolicyInUse"},
281
- {"shape":"ConcurrentModification"}
282
- ]
283
- },
284
- "DeleteTrafficPolicyInstance":{
285
- "name":"DeleteTrafficPolicyInstance",
286
- "http":{
287
- "method":"DELETE",
288
- "requestUri":"/2013-04-01/trafficpolicyinstance/{Id}"
289
- },
290
- "input":{"shape":"DeleteTrafficPolicyInstanceRequest"},
291
- "output":{"shape":"DeleteTrafficPolicyInstanceResponse"},
292
- "errors":[
293
- {"shape":"NoSuchTrafficPolicyInstance"},
294
- {"shape":"InvalidInput"},
295
- {"shape":"PriorRequestNotComplete"}
296
- ]
297
- },
298
- "DeleteVPCAssociationAuthorization":{
299
- "name":"DeleteVPCAssociationAuthorization",
300
- "http":{
301
- "method":"POST",
302
- "requestUri":"/2013-04-01/hostedzone/{Id}/deauthorizevpcassociation"
303
- },
304
- "input":{
305
- "shape":"DeleteVPCAssociationAuthorizationRequest",
306
- "locationName":"DeleteVPCAssociationAuthorizationRequest",
307
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
308
- },
309
- "output":{"shape":"DeleteVPCAssociationAuthorizationResponse"},
310
- "errors":[
311
- {"shape":"ConcurrentModification"},
312
- {"shape":"VPCAssociationAuthorizationNotFound"},
313
- {"shape":"NoSuchHostedZone"},
314
- {"shape":"InvalidVPCId"},
315
- {"shape":"InvalidInput"}
316
- ]
317
- },
318
- "DisassociateVPCFromHostedZone":{
319
- "name":"DisassociateVPCFromHostedZone",
320
- "http":{
321
- "method":"POST",
322
- "requestUri":"/2013-04-01/hostedzone/{Id}/disassociatevpc"
323
- },
324
- "input":{
325
- "shape":"DisassociateVPCFromHostedZoneRequest",
326
- "locationName":"DisassociateVPCFromHostedZoneRequest",
327
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
328
- },
329
- "output":{"shape":"DisassociateVPCFromHostedZoneResponse"},
330
- "errors":[
331
- {"shape":"NoSuchHostedZone"},
332
- {"shape":"InvalidVPCId"},
333
- {"shape":"VPCAssociationNotFound"},
334
- {"shape":"LastVPCAssociation"},
335
- {"shape":"InvalidInput"}
336
- ]
337
- },
338
- "GetChange":{
339
- "name":"GetChange",
340
- "http":{
341
- "method":"GET",
342
- "requestUri":"/2013-04-01/change/{Id}"
343
- },
344
- "input":{"shape":"GetChangeRequest"},
345
- "output":{"shape":"GetChangeResponse"},
346
- "errors":[
347
- {"shape":"NoSuchChange"},
348
- {"shape":"InvalidInput"}
349
- ]
350
- },
351
- "GetCheckerIpRanges":{
352
- "name":"GetCheckerIpRanges",
353
- "http":{
354
- "method":"GET",
355
- "requestUri":"/2013-04-01/checkeripranges"
356
- },
357
- "input":{"shape":"GetCheckerIpRangesRequest"},
358
- "output":{"shape":"GetCheckerIpRangesResponse"}
359
- },
360
- "GetGeoLocation":{
361
- "name":"GetGeoLocation",
362
- "http":{
363
- "method":"GET",
364
- "requestUri":"/2013-04-01/geolocation"
365
- },
366
- "input":{"shape":"GetGeoLocationRequest"},
367
- "output":{"shape":"GetGeoLocationResponse"},
368
- "errors":[
369
- {"shape":"NoSuchGeoLocation"},
370
- {"shape":"InvalidInput"}
371
- ]
372
- },
373
- "GetHealthCheck":{
374
- "name":"GetHealthCheck",
375
- "http":{
376
- "method":"GET",
377
- "requestUri":"/2013-04-01/healthcheck/{HealthCheckId}"
378
- },
379
- "input":{"shape":"GetHealthCheckRequest"},
380
- "output":{"shape":"GetHealthCheckResponse"},
381
- "errors":[
382
- {"shape":"NoSuchHealthCheck"},
383
- {"shape":"InvalidInput"},
384
- {"shape":"IncompatibleVersion"}
385
- ]
386
- },
387
- "GetHealthCheckCount":{
388
- "name":"GetHealthCheckCount",
389
- "http":{
390
- "method":"GET",
391
- "requestUri":"/2013-04-01/healthcheckcount"
392
- },
393
- "input":{"shape":"GetHealthCheckCountRequest"},
394
- "output":{"shape":"GetHealthCheckCountResponse"}
395
- },
396
- "GetHealthCheckLastFailureReason":{
397
- "name":"GetHealthCheckLastFailureReason",
398
- "http":{
399
- "method":"GET",
400
- "requestUri":"/2013-04-01/healthcheck/{HealthCheckId}/lastfailurereason"
401
- },
402
- "input":{"shape":"GetHealthCheckLastFailureReasonRequest"},
403
- "output":{"shape":"GetHealthCheckLastFailureReasonResponse"},
404
- "errors":[
405
- {"shape":"NoSuchHealthCheck"},
406
- {"shape":"InvalidInput"}
407
- ]
408
- },
409
- "GetHealthCheckStatus":{
410
- "name":"GetHealthCheckStatus",
411
- "http":{
412
- "method":"GET",
413
- "requestUri":"/2013-04-01/healthcheck/{HealthCheckId}/status"
414
- },
415
- "input":{"shape":"GetHealthCheckStatusRequest"},
416
- "output":{"shape":"GetHealthCheckStatusResponse"},
417
- "errors":[
418
- {"shape":"NoSuchHealthCheck"},
419
- {"shape":"InvalidInput"}
420
- ]
421
- },
422
- "GetHostedZone":{
423
- "name":"GetHostedZone",
424
- "http":{
425
- "method":"GET",
426
- "requestUri":"/2013-04-01/hostedzone/{Id}"
427
- },
428
- "input":{"shape":"GetHostedZoneRequest"},
429
- "output":{"shape":"GetHostedZoneResponse"},
430
- "errors":[
431
- {"shape":"NoSuchHostedZone"},
432
- {"shape":"InvalidInput"}
433
- ]
434
- },
435
- "GetHostedZoneCount":{
436
- "name":"GetHostedZoneCount",
437
- "http":{
438
- "method":"GET",
439
- "requestUri":"/2013-04-01/hostedzonecount"
440
- },
441
- "input":{"shape":"GetHostedZoneCountRequest"},
442
- "output":{"shape":"GetHostedZoneCountResponse"},
443
- "errors":[
444
- {"shape":"InvalidInput"}
445
- ]
446
- },
447
- "GetReusableDelegationSet":{
448
- "name":"GetReusableDelegationSet",
449
- "http":{
450
- "method":"GET",
451
- "requestUri":"/2013-04-01/delegationset/{Id}"
452
- },
453
- "input":{"shape":"GetReusableDelegationSetRequest"},
454
- "output":{"shape":"GetReusableDelegationSetResponse"},
455
- "errors":[
456
- {"shape":"NoSuchDelegationSet"},
457
- {"shape":"DelegationSetNotReusable"},
458
- {"shape":"InvalidInput"}
459
- ]
460
- },
461
- "GetTrafficPolicy":{
462
- "name":"GetTrafficPolicy",
463
- "http":{
464
- "method":"GET",
465
- "requestUri":"/2013-04-01/trafficpolicy/{Id}/{Version}"
466
- },
467
- "input":{"shape":"GetTrafficPolicyRequest"},
468
- "output":{"shape":"GetTrafficPolicyResponse"},
469
- "errors":[
470
- {"shape":"NoSuchTrafficPolicy"},
471
- {"shape":"InvalidInput"}
472
- ]
473
- },
474
- "GetTrafficPolicyInstance":{
475
- "name":"GetTrafficPolicyInstance",
476
- "http":{
477
- "method":"GET",
478
- "requestUri":"/2013-04-01/trafficpolicyinstance/{Id}"
479
- },
480
- "input":{"shape":"GetTrafficPolicyInstanceRequest"},
481
- "output":{"shape":"GetTrafficPolicyInstanceResponse"},
482
- "errors":[
483
- {"shape":"NoSuchTrafficPolicyInstance"},
484
- {"shape":"InvalidInput"}
485
- ]
486
- },
487
- "GetTrafficPolicyInstanceCount":{
488
- "name":"GetTrafficPolicyInstanceCount",
489
- "http":{
490
- "method":"GET",
491
- "requestUri":"/2013-04-01/trafficpolicyinstancecount"
492
- },
493
- "input":{"shape":"GetTrafficPolicyInstanceCountRequest"},
494
- "output":{"shape":"GetTrafficPolicyInstanceCountResponse"}
495
- },
496
- "ListGeoLocations":{
497
- "name":"ListGeoLocations",
498
- "http":{
499
- "method":"GET",
500
- "requestUri":"/2013-04-01/geolocations"
501
- },
502
- "input":{"shape":"ListGeoLocationsRequest"},
503
- "output":{"shape":"ListGeoLocationsResponse"},
504
- "errors":[
505
- {"shape":"InvalidInput"}
506
- ]
507
- },
508
- "ListHealthChecks":{
509
- "name":"ListHealthChecks",
510
- "http":{
511
- "method":"GET",
512
- "requestUri":"/2013-04-01/healthcheck"
513
- },
514
- "input":{"shape":"ListHealthChecksRequest"},
515
- "output":{"shape":"ListHealthChecksResponse"},
516
- "errors":[
517
- {"shape":"InvalidInput"},
518
- {"shape":"IncompatibleVersion"}
519
- ]
520
- },
521
- "ListHostedZones":{
522
- "name":"ListHostedZones",
523
- "http":{
524
- "method":"GET",
525
- "requestUri":"/2013-04-01/hostedzone"
526
- },
527
- "input":{"shape":"ListHostedZonesRequest"},
528
- "output":{"shape":"ListHostedZonesResponse"},
529
- "errors":[
530
- {"shape":"InvalidInput"},
531
- {"shape":"NoSuchDelegationSet"},
532
- {"shape":"DelegationSetNotReusable"}
533
- ]
534
- },
535
- "ListHostedZonesByName":{
536
- "name":"ListHostedZonesByName",
537
- "http":{
538
- "method":"GET",
539
- "requestUri":"/2013-04-01/hostedzonesbyname"
540
- },
541
- "input":{"shape":"ListHostedZonesByNameRequest"},
542
- "output":{"shape":"ListHostedZonesByNameResponse"},
543
- "errors":[
544
- {"shape":"InvalidInput"},
545
- {"shape":"InvalidDomainName"}
546
- ]
547
- },
548
- "ListResourceRecordSets":{
549
- "name":"ListResourceRecordSets",
550
- "http":{
551
- "method":"GET",
552
- "requestUri":"/2013-04-01/hostedzone/{Id}/rrset"
553
- },
554
- "input":{"shape":"ListResourceRecordSetsRequest"},
555
- "output":{"shape":"ListResourceRecordSetsResponse"},
556
- "errors":[
557
- {"shape":"NoSuchHostedZone"},
558
- {"shape":"InvalidInput"}
559
- ]
560
- },
561
- "ListReusableDelegationSets":{
562
- "name":"ListReusableDelegationSets",
563
- "http":{
564
- "method":"GET",
565
- "requestUri":"/2013-04-01/delegationset"
566
- },
567
- "input":{"shape":"ListReusableDelegationSetsRequest"},
568
- "output":{"shape":"ListReusableDelegationSetsResponse"},
569
- "errors":[
570
- {"shape":"InvalidInput"}
571
- ]
572
- },
573
- "ListTagsForResource":{
574
- "name":"ListTagsForResource",
575
- "http":{
576
- "method":"GET",
577
- "requestUri":"/2013-04-01/tags/{ResourceType}/{ResourceId}"
578
- },
579
- "input":{"shape":"ListTagsForResourceRequest"},
580
- "output":{"shape":"ListTagsForResourceResponse"},
581
- "errors":[
582
- {"shape":"InvalidInput"},
583
- {"shape":"NoSuchHealthCheck"},
584
- {"shape":"NoSuchHostedZone"},
585
- {"shape":"PriorRequestNotComplete"},
586
- {"shape":"ThrottlingException"}
587
- ]
588
- },
589
- "ListTagsForResources":{
590
- "name":"ListTagsForResources",
591
- "http":{
592
- "method":"POST",
593
- "requestUri":"/2013-04-01/tags/{ResourceType}"
594
- },
595
- "input":{
596
- "shape":"ListTagsForResourcesRequest",
597
- "locationName":"ListTagsForResourcesRequest",
598
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
599
- },
600
- "output":{"shape":"ListTagsForResourcesResponse"},
601
- "errors":[
602
- {"shape":"InvalidInput"},
603
- {"shape":"NoSuchHealthCheck"},
604
- {"shape":"NoSuchHostedZone"},
605
- {"shape":"PriorRequestNotComplete"},
606
- {"shape":"ThrottlingException"}
607
- ]
608
- },
609
- "ListTrafficPolicies":{
610
- "name":"ListTrafficPolicies",
611
- "http":{
612
- "method":"GET",
613
- "requestUri":"/2013-04-01/trafficpolicies"
614
- },
615
- "input":{"shape":"ListTrafficPoliciesRequest"},
616
- "output":{"shape":"ListTrafficPoliciesResponse"},
617
- "errors":[
618
- {"shape":"InvalidInput"}
619
- ]
620
- },
621
- "ListTrafficPolicyInstances":{
622
- "name":"ListTrafficPolicyInstances",
623
- "http":{
624
- "method":"GET",
625
- "requestUri":"/2013-04-01/trafficpolicyinstances"
626
- },
627
- "input":{"shape":"ListTrafficPolicyInstancesRequest"},
628
- "output":{"shape":"ListTrafficPolicyInstancesResponse"},
629
- "errors":[
630
- {"shape":"InvalidInput"},
631
- {"shape":"NoSuchTrafficPolicyInstance"}
632
- ]
633
- },
634
- "ListTrafficPolicyInstancesByHostedZone":{
635
- "name":"ListTrafficPolicyInstancesByHostedZone",
636
- "http":{
637
- "method":"GET",
638
- "requestUri":"/2013-04-01/trafficpolicyinstances/hostedzone"
639
- },
640
- "input":{"shape":"ListTrafficPolicyInstancesByHostedZoneRequest"},
641
- "output":{"shape":"ListTrafficPolicyInstancesByHostedZoneResponse"},
642
- "errors":[
643
- {"shape":"InvalidInput"},
644
- {"shape":"NoSuchTrafficPolicyInstance"},
645
- {"shape":"NoSuchHostedZone"}
646
- ]
647
- },
648
- "ListTrafficPolicyInstancesByPolicy":{
649
- "name":"ListTrafficPolicyInstancesByPolicy",
650
- "http":{
651
- "method":"GET",
652
- "requestUri":"/2013-04-01/trafficpolicyinstances/trafficpolicy"
653
- },
654
- "input":{"shape":"ListTrafficPolicyInstancesByPolicyRequest"},
655
- "output":{"shape":"ListTrafficPolicyInstancesByPolicyResponse"},
656
- "errors":[
657
- {"shape":"InvalidInput"},
658
- {"shape":"NoSuchTrafficPolicyInstance"},
659
- {"shape":"NoSuchTrafficPolicy"}
660
- ]
661
- },
662
- "ListTrafficPolicyVersions":{
663
- "name":"ListTrafficPolicyVersions",
664
- "http":{
665
- "method":"GET",
666
- "requestUri":"/2013-04-01/trafficpolicies/{Id}/versions"
667
- },
668
- "input":{"shape":"ListTrafficPolicyVersionsRequest"},
669
- "output":{"shape":"ListTrafficPolicyVersionsResponse"},
670
- "errors":[
671
- {"shape":"InvalidInput"},
672
- {"shape":"NoSuchTrafficPolicy"}
673
- ]
674
- },
675
- "ListVPCAssociationAuthorizations":{
676
- "name":"ListVPCAssociationAuthorizations",
677
- "http":{
678
- "method":"GET",
679
- "requestUri":"/2013-04-01/hostedzone/{Id}/authorizevpcassociation"
680
- },
681
- "input":{"shape":"ListVPCAssociationAuthorizationsRequest"},
682
- "output":{"shape":"ListVPCAssociationAuthorizationsResponse"},
683
- "errors":[
684
- {"shape":"NoSuchHostedZone"},
685
- {"shape":"InvalidInput"},
686
- {"shape":"InvalidPaginationToken"}
687
- ]
688
- },
689
- "TestDNSAnswer":{
690
- "name":"TestDNSAnswer",
691
- "http":{
692
- "method":"GET",
693
- "requestUri":"/2013-04-01/testdnsanswer"
694
- },
695
- "input":{"shape":"TestDNSAnswerRequest"},
696
- "output":{"shape":"TestDNSAnswerResponse"},
697
- "errors":[
698
- {"shape":"NoSuchHostedZone"},
699
- {"shape":"InvalidInput"}
700
- ]
701
- },
702
- "UpdateHealthCheck":{
703
- "name":"UpdateHealthCheck",
704
- "http":{
705
- "method":"POST",
706
- "requestUri":"/2013-04-01/healthcheck/{HealthCheckId}"
707
- },
708
- "input":{
709
- "shape":"UpdateHealthCheckRequest",
710
- "locationName":"UpdateHealthCheckRequest",
711
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
712
- },
713
- "output":{"shape":"UpdateHealthCheckResponse"},
714
- "errors":[
715
- {"shape":"NoSuchHealthCheck"},
716
- {"shape":"InvalidInput"},
717
- {"shape":"HealthCheckVersionMismatch"}
718
- ]
719
- },
720
- "UpdateHostedZoneComment":{
721
- "name":"UpdateHostedZoneComment",
722
- "http":{
723
- "method":"POST",
724
- "requestUri":"/2013-04-01/hostedzone/{Id}"
725
- },
726
- "input":{
727
- "shape":"UpdateHostedZoneCommentRequest",
728
- "locationName":"UpdateHostedZoneCommentRequest",
729
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
730
- },
731
- "output":{"shape":"UpdateHostedZoneCommentResponse"},
732
- "errors":[
733
- {"shape":"NoSuchHostedZone"},
734
- {"shape":"InvalidInput"}
735
- ]
736
- },
737
- "UpdateTrafficPolicyComment":{
738
- "name":"UpdateTrafficPolicyComment",
739
- "http":{
740
- "method":"POST",
741
- "requestUri":"/2013-04-01/trafficpolicy/{Id}/{Version}"
742
- },
743
- "input":{
744
- "shape":"UpdateTrafficPolicyCommentRequest",
745
- "locationName":"UpdateTrafficPolicyCommentRequest",
746
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
747
- },
748
- "output":{"shape":"UpdateTrafficPolicyCommentResponse"},
749
- "errors":[
750
- {"shape":"InvalidInput"},
751
- {"shape":"NoSuchTrafficPolicy"},
752
- {"shape":"ConcurrentModification"}
753
- ]
754
- },
755
- "UpdateTrafficPolicyInstance":{
756
- "name":"UpdateTrafficPolicyInstance",
757
- "http":{
758
- "method":"POST",
759
- "requestUri":"/2013-04-01/trafficpolicyinstance/{Id}"
760
- },
761
- "input":{
762
- "shape":"UpdateTrafficPolicyInstanceRequest",
763
- "locationName":"UpdateTrafficPolicyInstanceRequest",
764
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
765
- },
766
- "output":{"shape":"UpdateTrafficPolicyInstanceResponse"},
767
- "errors":[
768
- {"shape":"InvalidInput"},
769
- {"shape":"NoSuchTrafficPolicy"},
770
- {"shape":"NoSuchTrafficPolicyInstance"},
771
- {"shape":"PriorRequestNotComplete"},
772
- {"shape":"ConflictingTypes"}
773
- ]
774
- }
775
- },
776
- "shapes":{
777
- "AlarmIdentifier":{
778
- "type":"structure",
779
- "required":[
780
- "Region",
781
- "Name"
782
- ],
783
- "members":{
784
- "Region":{"shape":"CloudWatchRegion"},
785
- "Name":{"shape":"AlarmName"}
786
- }
787
- },
788
- "AlarmName":{
789
- "type":"string",
790
- "max":256,
791
- "min":1
792
- },
793
- "AliasHealthEnabled":{"type":"boolean"},
794
- "AliasTarget":{
795
- "type":"structure",
796
- "required":[
797
- "HostedZoneId",
798
- "DNSName",
799
- "EvaluateTargetHealth"
800
- ],
801
- "members":{
802
- "HostedZoneId":{"shape":"ResourceId"},
803
- "DNSName":{"shape":"DNSName"},
804
- "EvaluateTargetHealth":{"shape":"AliasHealthEnabled"}
805
- }
806
- },
807
- "AssociateVPCComment":{"type":"string"},
808
- "AssociateVPCWithHostedZoneRequest":{
809
- "type":"structure",
810
- "required":[
811
- "HostedZoneId",
812
- "VPC"
813
- ],
814
- "members":{
815
- "HostedZoneId":{
816
- "shape":"ResourceId",
817
- "location":"uri",
818
- "locationName":"Id"
819
- },
820
- "VPC":{"shape":"VPC"},
821
- "Comment":{"shape":"AssociateVPCComment"}
822
- }
823
- },
824
- "AssociateVPCWithHostedZoneResponse":{
825
- "type":"structure",
826
- "required":["ChangeInfo"],
827
- "members":{
828
- "ChangeInfo":{"shape":"ChangeInfo"}
829
- }
830
- },
831
- "Change":{
832
- "type":"structure",
833
- "required":[
834
- "Action",
835
- "ResourceRecordSet"
836
- ],
837
- "members":{
838
- "Action":{"shape":"ChangeAction"},
839
- "ResourceRecordSet":{"shape":"ResourceRecordSet"}
840
- }
841
- },
842
- "ChangeAction":{
843
- "type":"string",
844
- "enum":[
845
- "CREATE",
846
- "DELETE",
847
- "UPSERT"
848
- ]
849
- },
850
- "ChangeBatch":{
851
- "type":"structure",
852
- "required":["Changes"],
853
- "members":{
854
- "Comment":{"shape":"ResourceDescription"},
855
- "Changes":{"shape":"Changes"}
856
- }
857
- },
858
- "ChangeInfo":{
859
- "type":"structure",
860
- "required":[
861
- "Id",
862
- "Status",
863
- "SubmittedAt"
864
- ],
865
- "members":{
866
- "Id":{"shape":"ResourceId"},
867
- "Status":{"shape":"ChangeStatus"},
868
- "SubmittedAt":{"shape":"TimeStamp"},
869
- "Comment":{"shape":"ResourceDescription"}
870
- }
871
- },
872
- "ChangeResourceRecordSetsRequest":{
873
- "type":"structure",
874
- "required":[
875
- "HostedZoneId",
876
- "ChangeBatch"
877
- ],
878
- "members":{
879
- "HostedZoneId":{
880
- "shape":"ResourceId",
881
- "location":"uri",
882
- "locationName":"Id"
883
- },
884
- "ChangeBatch":{"shape":"ChangeBatch"}
885
- }
886
- },
887
- "ChangeResourceRecordSetsResponse":{
888
- "type":"structure",
889
- "required":["ChangeInfo"],
890
- "members":{
891
- "ChangeInfo":{"shape":"ChangeInfo"}
892
- }
893
- },
894
- "ChangeStatus":{
895
- "type":"string",
896
- "enum":[
897
- "PENDING",
898
- "INSYNC"
899
- ]
900
- },
901
- "ChangeTagsForResourceRequest":{
902
- "type":"structure",
903
- "required":[
904
- "ResourceType",
905
- "ResourceId"
906
- ],
907
- "members":{
908
- "ResourceType":{
909
- "shape":"TagResourceType",
910
- "location":"uri",
911
- "locationName":"ResourceType"
912
- },
913
- "ResourceId":{
914
- "shape":"TagResourceId",
915
- "location":"uri",
916
- "locationName":"ResourceId"
917
- },
918
- "AddTags":{"shape":"TagList"},
919
- "RemoveTagKeys":{"shape":"TagKeyList"}
920
- }
921
- },
922
- "ChangeTagsForResourceResponse":{
923
- "type":"structure",
924
- "members":{
925
- }
926
- },
927
- "Changes":{
928
- "type":"list",
929
- "member":{
930
- "shape":"Change",
931
- "locationName":"Change"
932
- },
933
- "min":1
934
- },
935
- "CheckerIpRanges":{
936
- "type":"list",
937
- "member":{"shape":"IPAddressCidr"}
938
- },
939
- "ChildHealthCheckList":{
940
- "type":"list",
941
- "member":{
942
- "shape":"HealthCheckId",
943
- "locationName":"ChildHealthCheck"
944
- },
945
- "max":256
946
- },
947
- "CloudWatchAlarmConfiguration":{
948
- "type":"structure",
949
- "required":[
950
- "EvaluationPeriods",
951
- "Threshold",
952
- "ComparisonOperator",
953
- "Period",
954
- "MetricName",
955
- "Namespace",
956
- "Statistic"
957
- ],
958
- "members":{
959
- "EvaluationPeriods":{"shape":"EvaluationPeriods"},
960
- "Threshold":{"shape":"Threshold"},
961
- "ComparisonOperator":{"shape":"ComparisonOperator"},
962
- "Period":{"shape":"Period"},
963
- "MetricName":{"shape":"MetricName"},
964
- "Namespace":{"shape":"Namespace"},
965
- "Statistic":{"shape":"Statistic"},
966
- "Dimensions":{"shape":"DimensionList"}
967
- }
968
- },
969
- "CloudWatchRegion":{
970
- "type":"string",
971
- "enum":[
972
- "us-east-1",
973
- "us-east-2",
974
- "us-west-1",
975
- "us-west-2",
976
- "ca-central-1",
977
- "eu-central-1",
978
- "eu-west-1",
979
- "eu-west-2",
980
- "ap-south-1",
981
- "ap-southeast-1",
982
- "ap-southeast-2",
983
- "ap-northeast-1",
984
- "ap-northeast-2",
985
- "sa-east-1"
986
- ],
987
- "max":64,
988
- "min":1
989
- },
990
- "ComparisonOperator":{
991
- "type":"string",
992
- "enum":[
993
- "GreaterThanOrEqualToThreshold",
994
- "GreaterThanThreshold",
995
- "LessThanThreshold",
996
- "LessThanOrEqualToThreshold"
997
- ]
998
- },
999
- "ConcurrentModification":{
1000
- "type":"structure",
1001
- "members":{
1002
- "message":{"shape":"ErrorMessage"}
1003
- },
1004
- "error":{"httpStatusCode":400},
1005
- "exception":true
1006
- },
1007
- "ConflictingDomainExists":{
1008
- "type":"structure",
1009
- "members":{
1010
- "message":{"shape":"ErrorMessage"}
1011
- },
1012
- "exception":true
1013
- },
1014
- "ConflictingTypes":{
1015
- "type":"structure",
1016
- "members":{
1017
- "message":{"shape":"ErrorMessage"}
1018
- },
1019
- "error":{"httpStatusCode":400},
1020
- "exception":true
1021
- },
1022
- "CreateHealthCheckRequest":{
1023
- "type":"structure",
1024
- "required":[
1025
- "CallerReference",
1026
- "HealthCheckConfig"
1027
- ],
1028
- "members":{
1029
- "CallerReference":{"shape":"HealthCheckNonce"},
1030
- "HealthCheckConfig":{"shape":"HealthCheckConfig"}
1031
- }
1032
- },
1033
- "CreateHealthCheckResponse":{
1034
- "type":"structure",
1035
- "required":[
1036
- "HealthCheck",
1037
- "Location"
1038
- ],
1039
- "members":{
1040
- "HealthCheck":{"shape":"HealthCheck"},
1041
- "Location":{
1042
- "shape":"ResourceURI",
1043
- "location":"header",
1044
- "locationName":"Location"
1045
- }
1046
- }
1047
- },
1048
- "CreateHostedZoneRequest":{
1049
- "type":"structure",
1050
- "required":[
1051
- "Name",
1052
- "CallerReference"
1053
- ],
1054
- "members":{
1055
- "Name":{"shape":"DNSName"},
1056
- "VPC":{"shape":"VPC"},
1057
- "CallerReference":{"shape":"Nonce"},
1058
- "HostedZoneConfig":{"shape":"HostedZoneConfig"},
1059
- "DelegationSetId":{"shape":"ResourceId"}
1060
- }
1061
- },
1062
- "CreateHostedZoneResponse":{
1063
- "type":"structure",
1064
- "required":[
1065
- "HostedZone",
1066
- "ChangeInfo",
1067
- "DelegationSet",
1068
- "Location"
1069
- ],
1070
- "members":{
1071
- "HostedZone":{"shape":"HostedZone"},
1072
- "ChangeInfo":{"shape":"ChangeInfo"},
1073
- "DelegationSet":{"shape":"DelegationSet"},
1074
- "VPC":{"shape":"VPC"},
1075
- "Location":{
1076
- "shape":"ResourceURI",
1077
- "location":"header",
1078
- "locationName":"Location"
1079
- }
1080
- }
1081
- },
1082
- "CreateReusableDelegationSetRequest":{
1083
- "type":"structure",
1084
- "required":["CallerReference"],
1085
- "members":{
1086
- "CallerReference":{"shape":"Nonce"},
1087
- "HostedZoneId":{"shape":"ResourceId"}
1088
- }
1089
- },
1090
- "CreateReusableDelegationSetResponse":{
1091
- "type":"structure",
1092
- "required":[
1093
- "DelegationSet",
1094
- "Location"
1095
- ],
1096
- "members":{
1097
- "DelegationSet":{"shape":"DelegationSet"},
1098
- "Location":{
1099
- "shape":"ResourceURI",
1100
- "location":"header",
1101
- "locationName":"Location"
1102
- }
1103
- }
1104
- },
1105
- "CreateTrafficPolicyInstanceRequest":{
1106
- "type":"structure",
1107
- "required":[
1108
- "HostedZoneId",
1109
- "Name",
1110
- "TTL",
1111
- "TrafficPolicyId",
1112
- "TrafficPolicyVersion"
1113
- ],
1114
- "members":{
1115
- "HostedZoneId":{"shape":"ResourceId"},
1116
- "Name":{"shape":"DNSName"},
1117
- "TTL":{"shape":"TTL"},
1118
- "TrafficPolicyId":{"shape":"TrafficPolicyId"},
1119
- "TrafficPolicyVersion":{"shape":"TrafficPolicyVersion"}
1120
- }
1121
- },
1122
- "CreateTrafficPolicyInstanceResponse":{
1123
- "type":"structure",
1124
- "required":[
1125
- "TrafficPolicyInstance",
1126
- "Location"
1127
- ],
1128
- "members":{
1129
- "TrafficPolicyInstance":{"shape":"TrafficPolicyInstance"},
1130
- "Location":{
1131
- "shape":"ResourceURI",
1132
- "location":"header",
1133
- "locationName":"Location"
1134
- }
1135
- }
1136
- },
1137
- "CreateTrafficPolicyRequest":{
1138
- "type":"structure",
1139
- "required":[
1140
- "Name",
1141
- "Document"
1142
- ],
1143
- "members":{
1144
- "Name":{"shape":"TrafficPolicyName"},
1145
- "Document":{"shape":"TrafficPolicyDocument"},
1146
- "Comment":{"shape":"TrafficPolicyComment"}
1147
- }
1148
- },
1149
- "CreateTrafficPolicyResponse":{
1150
- "type":"structure",
1151
- "required":[
1152
- "TrafficPolicy",
1153
- "Location"
1154
- ],
1155
- "members":{
1156
- "TrafficPolicy":{"shape":"TrafficPolicy"},
1157
- "Location":{
1158
- "shape":"ResourceURI",
1159
- "location":"header",
1160
- "locationName":"Location"
1161
- }
1162
- }
1163
- },
1164
- "CreateTrafficPolicyVersionRequest":{
1165
- "type":"structure",
1166
- "required":[
1167
- "Id",
1168
- "Document"
1169
- ],
1170
- "members":{
1171
- "Id":{
1172
- "shape":"TrafficPolicyId",
1173
- "location":"uri",
1174
- "locationName":"Id"
1175
- },
1176
- "Document":{"shape":"TrafficPolicyDocument"},
1177
- "Comment":{"shape":"TrafficPolicyComment"}
1178
- }
1179
- },
1180
- "CreateTrafficPolicyVersionResponse":{
1181
- "type":"structure",
1182
- "required":[
1183
- "TrafficPolicy",
1184
- "Location"
1185
- ],
1186
- "members":{
1187
- "TrafficPolicy":{"shape":"TrafficPolicy"},
1188
- "Location":{
1189
- "shape":"ResourceURI",
1190
- "location":"header",
1191
- "locationName":"Location"
1192
- }
1193
- }
1194
- },
1195
- "CreateVPCAssociationAuthorizationRequest":{
1196
- "type":"structure",
1197
- "required":[
1198
- "HostedZoneId",
1199
- "VPC"
1200
- ],
1201
- "members":{
1202
- "HostedZoneId":{
1203
- "shape":"ResourceId",
1204
- "location":"uri",
1205
- "locationName":"Id"
1206
- },
1207
- "VPC":{"shape":"VPC"}
1208
- }
1209
- },
1210
- "CreateVPCAssociationAuthorizationResponse":{
1211
- "type":"structure",
1212
- "required":[
1213
- "HostedZoneId",
1214
- "VPC"
1215
- ],
1216
- "members":{
1217
- "HostedZoneId":{"shape":"ResourceId"},
1218
- "VPC":{"shape":"VPC"}
1219
- }
1220
- },
1221
- "DNSName":{
1222
- "type":"string",
1223
- "max":1024
1224
- },
1225
- "DNSRCode":{"type":"string"},
1226
- "DelegationSet":{
1227
- "type":"structure",
1228
- "required":["NameServers"],
1229
- "members":{
1230
- "Id":{"shape":"ResourceId"},
1231
- "CallerReference":{"shape":"Nonce"},
1232
- "NameServers":{"shape":"DelegationSetNameServers"}
1233
- }
1234
- },
1235
- "DelegationSetAlreadyCreated":{
1236
- "type":"structure",
1237
- "members":{
1238
- "message":{"shape":"ErrorMessage"}
1239
- },
1240
- "exception":true
1241
- },
1242
- "DelegationSetAlreadyReusable":{
1243
- "type":"structure",
1244
- "members":{
1245
- "message":{"shape":"ErrorMessage"}
1246
- },
1247
- "exception":true
1248
- },
1249
- "DelegationSetInUse":{
1250
- "type":"structure",
1251
- "members":{
1252
- "message":{"shape":"ErrorMessage"}
1253
- },
1254
- "exception":true
1255
- },
1256
- "DelegationSetNameServers":{
1257
- "type":"list",
1258
- "member":{
1259
- "shape":"DNSName",
1260
- "locationName":"NameServer"
1261
- },
1262
- "min":1
1263
- },
1264
- "DelegationSetNotAvailable":{
1265
- "type":"structure",
1266
- "members":{
1267
- "message":{"shape":"ErrorMessage"}
1268
- },
1269
- "exception":true
1270
- },
1271
- "DelegationSetNotReusable":{
1272
- "type":"structure",
1273
- "members":{
1274
- "message":{"shape":"ErrorMessage"}
1275
- },
1276
- "exception":true
1277
- },
1278
- "DelegationSets":{
1279
- "type":"list",
1280
- "member":{
1281
- "shape":"DelegationSet",
1282
- "locationName":"DelegationSet"
1283
- }
1284
- },
1285
- "DeleteHealthCheckRequest":{
1286
- "type":"structure",
1287
- "required":["HealthCheckId"],
1288
- "members":{
1289
- "HealthCheckId":{
1290
- "shape":"HealthCheckId",
1291
- "location":"uri",
1292
- "locationName":"HealthCheckId"
1293
- }
1294
- }
1295
- },
1296
- "DeleteHealthCheckResponse":{
1297
- "type":"structure",
1298
- "members":{
1299
- }
1300
- },
1301
- "DeleteHostedZoneRequest":{
1302
- "type":"structure",
1303
- "required":["Id"],
1304
- "members":{
1305
- "Id":{
1306
- "shape":"ResourceId",
1307
- "location":"uri",
1308
- "locationName":"Id"
1309
- }
1310
- }
1311
- },
1312
- "DeleteHostedZoneResponse":{
1313
- "type":"structure",
1314
- "required":["ChangeInfo"],
1315
- "members":{
1316
- "ChangeInfo":{"shape":"ChangeInfo"}
1317
- }
1318
- },
1319
- "DeleteReusableDelegationSetRequest":{
1320
- "type":"structure",
1321
- "required":["Id"],
1322
- "members":{
1323
- "Id":{
1324
- "shape":"ResourceId",
1325
- "location":"uri",
1326
- "locationName":"Id"
1327
- }
1328
- }
1329
- },
1330
- "DeleteReusableDelegationSetResponse":{
1331
- "type":"structure",
1332
- "members":{
1333
- }
1334
- },
1335
- "DeleteTrafficPolicyInstanceRequest":{
1336
- "type":"structure",
1337
- "required":["Id"],
1338
- "members":{
1339
- "Id":{
1340
- "shape":"TrafficPolicyInstanceId",
1341
- "location":"uri",
1342
- "locationName":"Id"
1343
- }
1344
- }
1345
- },
1346
- "DeleteTrafficPolicyInstanceResponse":{
1347
- "type":"structure",
1348
- "members":{
1349
- }
1350
- },
1351
- "DeleteTrafficPolicyRequest":{
1352
- "type":"structure",
1353
- "required":[
1354
- "Id",
1355
- "Version"
1356
- ],
1357
- "members":{
1358
- "Id":{
1359
- "shape":"TrafficPolicyId",
1360
- "location":"uri",
1361
- "locationName":"Id"
1362
- },
1363
- "Version":{
1364
- "shape":"TrafficPolicyVersion",
1365
- "location":"uri",
1366
- "locationName":"Version"
1367
- }
1368
- }
1369
- },
1370
- "DeleteTrafficPolicyResponse":{
1371
- "type":"structure",
1372
- "members":{
1373
- }
1374
- },
1375
- "DeleteVPCAssociationAuthorizationRequest":{
1376
- "type":"structure",
1377
- "required":[
1378
- "HostedZoneId",
1379
- "VPC"
1380
- ],
1381
- "members":{
1382
- "HostedZoneId":{
1383
- "shape":"ResourceId",
1384
- "location":"uri",
1385
- "locationName":"Id"
1386
- },
1387
- "VPC":{"shape":"VPC"}
1388
- }
1389
- },
1390
- "DeleteVPCAssociationAuthorizationResponse":{
1391
- "type":"structure",
1392
- "members":{
1393
- }
1394
- },
1395
- "Dimension":{
1396
- "type":"structure",
1397
- "required":[
1398
- "Name",
1399
- "Value"
1400
- ],
1401
- "members":{
1402
- "Name":{"shape":"DimensionField"},
1403
- "Value":{"shape":"DimensionField"}
1404
- }
1405
- },
1406
- "DimensionField":{
1407
- "type":"string",
1408
- "max":255,
1409
- "min":1
1410
- },
1411
- "DimensionList":{
1412
- "type":"list",
1413
- "member":{
1414
- "shape":"Dimension",
1415
- "locationName":"Dimension"
1416
- },
1417
- "max":10
1418
- },
1419
- "DisassociateVPCComment":{"type":"string"},
1420
- "DisassociateVPCFromHostedZoneRequest":{
1421
- "type":"structure",
1422
- "required":[
1423
- "HostedZoneId",
1424
- "VPC"
1425
- ],
1426
- "members":{
1427
- "HostedZoneId":{
1428
- "shape":"ResourceId",
1429
- "location":"uri",
1430
- "locationName":"Id"
1431
- },
1432
- "VPC":{"shape":"VPC"},
1433
- "Comment":{"shape":"DisassociateVPCComment"}
1434
- }
1435
- },
1436
- "DisassociateVPCFromHostedZoneResponse":{
1437
- "type":"structure",
1438
- "required":["ChangeInfo"],
1439
- "members":{
1440
- "ChangeInfo":{"shape":"ChangeInfo"}
1441
- }
1442
- },
1443
- "EnableSNI":{"type":"boolean"},
1444
- "ErrorMessage":{"type":"string"},
1445
- "ErrorMessages":{
1446
- "type":"list",
1447
- "member":{
1448
- "shape":"ErrorMessage",
1449
- "locationName":"Message"
1450
- }
1451
- },
1452
- "EvaluationPeriods":{
1453
- "type":"integer",
1454
- "min":1
1455
- },
1456
- "FailureThreshold":{
1457
- "type":"integer",
1458
- "max":10,
1459
- "min":1
1460
- },
1461
- "FullyQualifiedDomainName":{
1462
- "type":"string",
1463
- "max":255
1464
- },
1465
- "GeoLocation":{
1466
- "type":"structure",
1467
- "members":{
1468
- "ContinentCode":{"shape":"GeoLocationContinentCode"},
1469
- "CountryCode":{"shape":"GeoLocationCountryCode"},
1470
- "SubdivisionCode":{"shape":"GeoLocationSubdivisionCode"}
1471
- }
1472
- },
1473
- "GeoLocationContinentCode":{
1474
- "type":"string",
1475
- "max":2,
1476
- "min":2
1477
- },
1478
- "GeoLocationContinentName":{
1479
- "type":"string",
1480
- "max":32,
1481
- "min":1
1482
- },
1483
- "GeoLocationCountryCode":{
1484
- "type":"string",
1485
- "max":2,
1486
- "min":1
1487
- },
1488
- "GeoLocationCountryName":{
1489
- "type":"string",
1490
- "max":64,
1491
- "min":1
1492
- },
1493
- "GeoLocationDetails":{
1494
- "type":"structure",
1495
- "members":{
1496
- "ContinentCode":{"shape":"GeoLocationContinentCode"},
1497
- "ContinentName":{"shape":"GeoLocationContinentName"},
1498
- "CountryCode":{"shape":"GeoLocationCountryCode"},
1499
- "CountryName":{"shape":"GeoLocationCountryName"},
1500
- "SubdivisionCode":{"shape":"GeoLocationSubdivisionCode"},
1501
- "SubdivisionName":{"shape":"GeoLocationSubdivisionName"}
1502
- }
1503
- },
1504
- "GeoLocationDetailsList":{
1505
- "type":"list",
1506
- "member":{
1507
- "shape":"GeoLocationDetails",
1508
- "locationName":"GeoLocationDetails"
1509
- }
1510
- },
1511
- "GeoLocationSubdivisionCode":{
1512
- "type":"string",
1513
- "max":3,
1514
- "min":1
1515
- },
1516
- "GeoLocationSubdivisionName":{
1517
- "type":"string",
1518
- "max":64,
1519
- "min":1
1520
- },
1521
- "GetChangeRequest":{
1522
- "type":"structure",
1523
- "required":["Id"],
1524
- "members":{
1525
- "Id":{
1526
- "shape":"ResourceId",
1527
- "location":"uri",
1528
- "locationName":"Id"
1529
- }
1530
- }
1531
- },
1532
- "GetChangeResponse":{
1533
- "type":"structure",
1534
- "required":["ChangeInfo"],
1535
- "members":{
1536
- "ChangeInfo":{"shape":"ChangeInfo"}
1537
- }
1538
- },
1539
- "GetCheckerIpRangesRequest":{
1540
- "type":"structure",
1541
- "members":{
1542
- }
1543
- },
1544
- "GetCheckerIpRangesResponse":{
1545
- "type":"structure",
1546
- "required":["CheckerIpRanges"],
1547
- "members":{
1548
- "CheckerIpRanges":{"shape":"CheckerIpRanges"}
1549
- }
1550
- },
1551
- "GetGeoLocationRequest":{
1552
- "type":"structure",
1553
- "members":{
1554
- "ContinentCode":{
1555
- "shape":"GeoLocationContinentCode",
1556
- "location":"querystring",
1557
- "locationName":"continentcode"
1558
- },
1559
- "CountryCode":{
1560
- "shape":"GeoLocationCountryCode",
1561
- "location":"querystring",
1562
- "locationName":"countrycode"
1563
- },
1564
- "SubdivisionCode":{
1565
- "shape":"GeoLocationSubdivisionCode",
1566
- "location":"querystring",
1567
- "locationName":"subdivisioncode"
1568
- }
1569
- }
1570
- },
1571
- "GetGeoLocationResponse":{
1572
- "type":"structure",
1573
- "required":["GeoLocationDetails"],
1574
- "members":{
1575
- "GeoLocationDetails":{"shape":"GeoLocationDetails"}
1576
- }
1577
- },
1578
- "GetHealthCheckCountRequest":{
1579
- "type":"structure",
1580
- "members":{
1581
- }
1582
- },
1583
- "GetHealthCheckCountResponse":{
1584
- "type":"structure",
1585
- "required":["HealthCheckCount"],
1586
- "members":{
1587
- "HealthCheckCount":{"shape":"HealthCheckCount"}
1588
- }
1589
- },
1590
- "GetHealthCheckLastFailureReasonRequest":{
1591
- "type":"structure",
1592
- "required":["HealthCheckId"],
1593
- "members":{
1594
- "HealthCheckId":{
1595
- "shape":"HealthCheckId",
1596
- "location":"uri",
1597
- "locationName":"HealthCheckId"
1598
- }
1599
- }
1600
- },
1601
- "GetHealthCheckLastFailureReasonResponse":{
1602
- "type":"structure",
1603
- "required":["HealthCheckObservations"],
1604
- "members":{
1605
- "HealthCheckObservations":{"shape":"HealthCheckObservations"}
1606
- }
1607
- },
1608
- "GetHealthCheckRequest":{
1609
- "type":"structure",
1610
- "required":["HealthCheckId"],
1611
- "members":{
1612
- "HealthCheckId":{
1613
- "shape":"HealthCheckId",
1614
- "location":"uri",
1615
- "locationName":"HealthCheckId"
1616
- }
1617
- }
1618
- },
1619
- "GetHealthCheckResponse":{
1620
- "type":"structure",
1621
- "required":["HealthCheck"],
1622
- "members":{
1623
- "HealthCheck":{"shape":"HealthCheck"}
1624
- }
1625
- },
1626
- "GetHealthCheckStatusRequest":{
1627
- "type":"structure",
1628
- "required":["HealthCheckId"],
1629
- "members":{
1630
- "HealthCheckId":{
1631
- "shape":"HealthCheckId",
1632
- "location":"uri",
1633
- "locationName":"HealthCheckId"
1634
- }
1635
- }
1636
- },
1637
- "GetHealthCheckStatusResponse":{
1638
- "type":"structure",
1639
- "required":["HealthCheckObservations"],
1640
- "members":{
1641
- "HealthCheckObservations":{"shape":"HealthCheckObservations"}
1642
- }
1643
- },
1644
- "GetHostedZoneCountRequest":{
1645
- "type":"structure",
1646
- "members":{
1647
- }
1648
- },
1649
- "GetHostedZoneCountResponse":{
1650
- "type":"structure",
1651
- "required":["HostedZoneCount"],
1652
- "members":{
1653
- "HostedZoneCount":{"shape":"HostedZoneCount"}
1654
- }
1655
- },
1656
- "GetHostedZoneRequest":{
1657
- "type":"structure",
1658
- "required":["Id"],
1659
- "members":{
1660
- "Id":{
1661
- "shape":"ResourceId",
1662
- "location":"uri",
1663
- "locationName":"Id"
1664
- }
1665
- }
1666
- },
1667
- "GetHostedZoneResponse":{
1668
- "type":"structure",
1669
- "required":["HostedZone"],
1670
- "members":{
1671
- "HostedZone":{"shape":"HostedZone"},
1672
- "DelegationSet":{"shape":"DelegationSet"},
1673
- "VPCs":{"shape":"VPCs"}
1674
- }
1675
- },
1676
- "GetReusableDelegationSetRequest":{
1677
- "type":"structure",
1678
- "required":["Id"],
1679
- "members":{
1680
- "Id":{
1681
- "shape":"ResourceId",
1682
- "location":"uri",
1683
- "locationName":"Id"
1684
- }
1685
- }
1686
- },
1687
- "GetReusableDelegationSetResponse":{
1688
- "type":"structure",
1689
- "required":["DelegationSet"],
1690
- "members":{
1691
- "DelegationSet":{"shape":"DelegationSet"}
1692
- }
1693
- },
1694
- "GetTrafficPolicyInstanceCountRequest":{
1695
- "type":"structure",
1696
- "members":{
1697
- }
1698
- },
1699
- "GetTrafficPolicyInstanceCountResponse":{
1700
- "type":"structure",
1701
- "required":["TrafficPolicyInstanceCount"],
1702
- "members":{
1703
- "TrafficPolicyInstanceCount":{"shape":"TrafficPolicyInstanceCount"}
1704
- }
1705
- },
1706
- "GetTrafficPolicyInstanceRequest":{
1707
- "type":"structure",
1708
- "required":["Id"],
1709
- "members":{
1710
- "Id":{
1711
- "shape":"TrafficPolicyInstanceId",
1712
- "location":"uri",
1713
- "locationName":"Id"
1714
- }
1715
- }
1716
- },
1717
- "GetTrafficPolicyInstanceResponse":{
1718
- "type":"structure",
1719
- "required":["TrafficPolicyInstance"],
1720
- "members":{
1721
- "TrafficPolicyInstance":{"shape":"TrafficPolicyInstance"}
1722
- }
1723
- },
1724
- "GetTrafficPolicyRequest":{
1725
- "type":"structure",
1726
- "required":[
1727
- "Id",
1728
- "Version"
1729
- ],
1730
- "members":{
1731
- "Id":{
1732
- "shape":"TrafficPolicyId",
1733
- "location":"uri",
1734
- "locationName":"Id"
1735
- },
1736
- "Version":{
1737
- "shape":"TrafficPolicyVersion",
1738
- "location":"uri",
1739
- "locationName":"Version"
1740
- }
1741
- }
1742
- },
1743
- "GetTrafficPolicyResponse":{
1744
- "type":"structure",
1745
- "required":["TrafficPolicy"],
1746
- "members":{
1747
- "TrafficPolicy":{"shape":"TrafficPolicy"}
1748
- }
1749
- },
1750
- "HealthCheck":{
1751
- "type":"structure",
1752
- "required":[
1753
- "Id",
1754
- "CallerReference",
1755
- "HealthCheckConfig",
1756
- "HealthCheckVersion"
1757
- ],
1758
- "members":{
1759
- "Id":{"shape":"HealthCheckId"},
1760
- "CallerReference":{"shape":"HealthCheckNonce"},
1761
- "HealthCheckConfig":{"shape":"HealthCheckConfig"},
1762
- "HealthCheckVersion":{"shape":"HealthCheckVersion"},
1763
- "CloudWatchAlarmConfiguration":{"shape":"CloudWatchAlarmConfiguration"}
1764
- }
1765
- },
1766
- "HealthCheckAlreadyExists":{
1767
- "type":"structure",
1768
- "members":{
1769
- "message":{"shape":"ErrorMessage"}
1770
- },
1771
- "error":{"httpStatusCode":409},
1772
- "exception":true
1773
- },
1774
- "HealthCheckConfig":{
1775
- "type":"structure",
1776
- "required":["Type"],
1777
- "members":{
1778
- "IPAddress":{"shape":"IPAddress"},
1779
- "Port":{"shape":"Port"},
1780
- "Type":{"shape":"HealthCheckType"},
1781
- "ResourcePath":{"shape":"ResourcePath"},
1782
- "FullyQualifiedDomainName":{"shape":"FullyQualifiedDomainName"},
1783
- "SearchString":{"shape":"SearchString"},
1784
- "RequestInterval":{"shape":"RequestInterval"},
1785
- "FailureThreshold":{"shape":"FailureThreshold"},
1786
- "MeasureLatency":{"shape":"MeasureLatency"},
1787
- "Inverted":{"shape":"Inverted"},
1788
- "HealthThreshold":{"shape":"HealthThreshold"},
1789
- "ChildHealthChecks":{"shape":"ChildHealthCheckList"},
1790
- "EnableSNI":{"shape":"EnableSNI"},
1791
- "Regions":{"shape":"HealthCheckRegionList"},
1792
- "AlarmIdentifier":{"shape":"AlarmIdentifier"},
1793
- "InsufficientDataHealthStatus":{"shape":"InsufficientDataHealthStatus"}
1794
- }
1795
- },
1796
- "HealthCheckCount":{"type":"long"},
1797
- "HealthCheckId":{
1798
- "type":"string",
1799
- "max":64
1800
- },
1801
- "HealthCheckInUse":{
1802
- "type":"structure",
1803
- "members":{
1804
- "message":{"shape":"ErrorMessage"}
1805
- },
1806
- "error":{"httpStatusCode":400},
1807
- "exception":true
1808
- },
1809
- "HealthCheckNonce":{
1810
- "type":"string",
1811
- "max":64,
1812
- "min":1
1813
- },
1814
- "HealthCheckObservation":{
1815
- "type":"structure",
1816
- "members":{
1817
- "Region":{"shape":"HealthCheckRegion"},
1818
- "IPAddress":{"shape":"IPAddress"},
1819
- "StatusReport":{"shape":"StatusReport"}
1820
- }
1821
- },
1822
- "HealthCheckObservations":{
1823
- "type":"list",
1824
- "member":{
1825
- "shape":"HealthCheckObservation",
1826
- "locationName":"HealthCheckObservation"
1827
- }
1828
- },
1829
- "HealthCheckRegion":{
1830
- "type":"string",
1831
- "enum":[
1832
- "us-east-1",
1833
- "us-west-1",
1834
- "us-west-2",
1835
- "eu-west-1",
1836
- "ap-southeast-1",
1837
- "ap-southeast-2",
1838
- "ap-northeast-1",
1839
- "sa-east-1"
1840
- ],
1841
- "max":64,
1842
- "min":1
1843
- },
1844
- "HealthCheckRegionList":{
1845
- "type":"list",
1846
- "member":{
1847
- "shape":"HealthCheckRegion",
1848
- "locationName":"Region"
1849
- },
1850
- "max":64,
1851
- "min":1
1852
- },
1853
- "HealthCheckType":{
1854
- "type":"string",
1855
- "enum":[
1856
- "HTTP",
1857
- "HTTPS",
1858
- "HTTP_STR_MATCH",
1859
- "HTTPS_STR_MATCH",
1860
- "TCP",
1861
- "CALCULATED",
1862
- "CLOUDWATCH_METRIC"
1863
- ]
1864
- },
1865
- "HealthCheckVersion":{
1866
- "type":"long",
1867
- "min":1
1868
- },
1869
- "HealthCheckVersionMismatch":{
1870
- "type":"structure",
1871
- "members":{
1872
- "message":{"shape":"ErrorMessage"}
1873
- },
1874
- "error":{"httpStatusCode":409},
1875
- "exception":true
1876
- },
1877
- "HealthChecks":{
1878
- "type":"list",
1879
- "member":{
1880
- "shape":"HealthCheck",
1881
- "locationName":"HealthCheck"
1882
- }
1883
- },
1884
- "HealthThreshold":{
1885
- "type":"integer",
1886
- "max":256,
1887
- "min":0
1888
- },
1889
- "HostedZone":{
1890
- "type":"structure",
1891
- "required":[
1892
- "Id",
1893
- "Name",
1894
- "CallerReference"
1895
- ],
1896
- "members":{
1897
- "Id":{"shape":"ResourceId"},
1898
- "Name":{"shape":"DNSName"},
1899
- "CallerReference":{"shape":"Nonce"},
1900
- "Config":{"shape":"HostedZoneConfig"},
1901
- "ResourceRecordSetCount":{"shape":"HostedZoneRRSetCount"}
1902
- }
1903
- },
1904
- "HostedZoneAlreadyExists":{
1905
- "type":"structure",
1906
- "members":{
1907
- "message":{"shape":"ErrorMessage"}
1908
- },
1909
- "error":{"httpStatusCode":409},
1910
- "exception":true
1911
- },
1912
- "HostedZoneConfig":{
1913
- "type":"structure",
1914
- "members":{
1915
- "Comment":{"shape":"ResourceDescription"},
1916
- "PrivateZone":{"shape":"IsPrivateZone"}
1917
- }
1918
- },
1919
- "HostedZoneCount":{"type":"long"},
1920
- "HostedZoneNotEmpty":{
1921
- "type":"structure",
1922
- "members":{
1923
- "message":{"shape":"ErrorMessage"}
1924
- },
1925
- "error":{"httpStatusCode":400},
1926
- "exception":true
1927
- },
1928
- "HostedZoneNotFound":{
1929
- "type":"structure",
1930
- "members":{
1931
- "message":{"shape":"ErrorMessage"}
1932
- },
1933
- "exception":true
1934
- },
1935
- "HostedZoneRRSetCount":{"type":"long"},
1936
- "HostedZones":{
1937
- "type":"list",
1938
- "member":{
1939
- "shape":"HostedZone",
1940
- "locationName":"HostedZone"
1941
- }
1942
- },
1943
- "IPAddress":{
1944
- "type":"string",
1945
- "max":45,
1946
- "pattern":"(^((([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$|^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$)"
1947
- },
1948
- "IPAddressCidr":{"type":"string"},
1949
- "IncompatibleVersion":{
1950
- "type":"structure",
1951
- "members":{
1952
- "message":{"shape":"ErrorMessage"}
1953
- },
1954
- "error":{"httpStatusCode":400},
1955
- "exception":true
1956
- },
1957
- "InsufficientDataHealthStatus":{
1958
- "type":"string",
1959
- "enum":[
1960
- "Healthy",
1961
- "Unhealthy",
1962
- "LastKnownStatus"
1963
- ]
1964
- },
1965
- "InvalidArgument":{
1966
- "type":"structure",
1967
- "members":{
1968
- "message":{"shape":"ErrorMessage"}
1969
- },
1970
- "exception":true
1971
- },
1972
- "InvalidChangeBatch":{
1973
- "type":"structure",
1974
- "members":{
1975
- "messages":{"shape":"ErrorMessages"}
1976
- },
1977
- "exception":true
1978
- },
1979
- "InvalidDomainName":{
1980
- "type":"structure",
1981
- "members":{
1982
- "message":{"shape":"ErrorMessage"}
1983
- },
1984
- "error":{"httpStatusCode":400},
1985
- "exception":true
1986
- },
1987
- "InvalidInput":{
1988
- "type":"structure",
1989
- "members":{
1990
- "message":{"shape":"ErrorMessage"}
1991
- },
1992
- "error":{"httpStatusCode":400},
1993
- "exception":true
1994
- },
1995
- "InvalidPaginationToken":{
1996
- "type":"structure",
1997
- "members":{
1998
- "message":{"shape":"ErrorMessage"}
1999
- },
2000
- "error":{"httpStatusCode":400},
2001
- "exception":true
2002
- },
2003
- "InvalidTrafficPolicyDocument":{
2004
- "type":"structure",
2005
- "members":{
2006
- "message":{"shape":"ErrorMessage"}
2007
- },
2008
- "error":{"httpStatusCode":400},
2009
- "exception":true
2010
- },
2011
- "InvalidVPCId":{
2012
- "type":"structure",
2013
- "members":{
2014
- "message":{"shape":"ErrorMessage"}
2015
- },
2016
- "error":{"httpStatusCode":400},
2017
- "exception":true
2018
- },
2019
- "Inverted":{"type":"boolean"},
2020
- "IsPrivateZone":{"type":"boolean"},
2021
- "LastVPCAssociation":{
2022
- "type":"structure",
2023
- "members":{
2024
- "message":{"shape":"ErrorMessage"}
2025
- },
2026
- "error":{"httpStatusCode":400},
2027
- "exception":true
2028
- },
2029
- "LimitsExceeded":{
2030
- "type":"structure",
2031
- "members":{
2032
- "message":{"shape":"ErrorMessage"}
2033
- },
2034
- "exception":true
2035
- },
2036
- "ListGeoLocationsRequest":{
2037
- "type":"structure",
2038
- "members":{
2039
- "StartContinentCode":{
2040
- "shape":"GeoLocationContinentCode",
2041
- "location":"querystring",
2042
- "locationName":"startcontinentcode"
2043
- },
2044
- "StartCountryCode":{
2045
- "shape":"GeoLocationCountryCode",
2046
- "location":"querystring",
2047
- "locationName":"startcountrycode"
2048
- },
2049
- "StartSubdivisionCode":{
2050
- "shape":"GeoLocationSubdivisionCode",
2051
- "location":"querystring",
2052
- "locationName":"startsubdivisioncode"
2053
- },
2054
- "MaxItems":{
2055
- "shape":"PageMaxItems",
2056
- "location":"querystring",
2057
- "locationName":"maxitems"
2058
- }
2059
- }
2060
- },
2061
- "ListGeoLocationsResponse":{
2062
- "type":"structure",
2063
- "required":[
2064
- "GeoLocationDetailsList",
2065
- "IsTruncated",
2066
- "MaxItems"
2067
- ],
2068
- "members":{
2069
- "GeoLocationDetailsList":{"shape":"GeoLocationDetailsList"},
2070
- "IsTruncated":{"shape":"PageTruncated"},
2071
- "NextContinentCode":{"shape":"GeoLocationContinentCode"},
2072
- "NextCountryCode":{"shape":"GeoLocationCountryCode"},
2073
- "NextSubdivisionCode":{"shape":"GeoLocationSubdivisionCode"},
2074
- "MaxItems":{"shape":"PageMaxItems"}
2075
- }
2076
- },
2077
- "ListHealthChecksRequest":{
2078
- "type":"structure",
2079
- "members":{
2080
- "Marker":{
2081
- "shape":"PageMarker",
2082
- "location":"querystring",
2083
- "locationName":"marker"
2084
- },
2085
- "MaxItems":{
2086
- "shape":"PageMaxItems",
2087
- "location":"querystring",
2088
- "locationName":"maxitems"
2089
- }
2090
- }
2091
- },
2092
- "ListHealthChecksResponse":{
2093
- "type":"structure",
2094
- "required":[
2095
- "HealthChecks",
2096
- "Marker",
2097
- "IsTruncated",
2098
- "MaxItems"
2099
- ],
2100
- "members":{
2101
- "HealthChecks":{"shape":"HealthChecks"},
2102
- "Marker":{"shape":"PageMarker"},
2103
- "IsTruncated":{"shape":"PageTruncated"},
2104
- "NextMarker":{"shape":"PageMarker"},
2105
- "MaxItems":{"shape":"PageMaxItems"}
2106
- }
2107
- },
2108
- "ListHostedZonesByNameRequest":{
2109
- "type":"structure",
2110
- "members":{
2111
- "DNSName":{
2112
- "shape":"DNSName",
2113
- "location":"querystring",
2114
- "locationName":"dnsname"
2115
- },
2116
- "HostedZoneId":{
2117
- "shape":"ResourceId",
2118
- "location":"querystring",
2119
- "locationName":"hostedzoneid"
2120
- },
2121
- "MaxItems":{
2122
- "shape":"PageMaxItems",
2123
- "location":"querystring",
2124
- "locationName":"maxitems"
2125
- }
2126
- }
2127
- },
2128
- "ListHostedZonesByNameResponse":{
2129
- "type":"structure",
2130
- "required":[
2131
- "HostedZones",
2132
- "IsTruncated",
2133
- "MaxItems"
2134
- ],
2135
- "members":{
2136
- "HostedZones":{"shape":"HostedZones"},
2137
- "DNSName":{"shape":"DNSName"},
2138
- "HostedZoneId":{"shape":"ResourceId"},
2139
- "IsTruncated":{"shape":"PageTruncated"},
2140
- "NextDNSName":{"shape":"DNSName"},
2141
- "NextHostedZoneId":{"shape":"ResourceId"},
2142
- "MaxItems":{"shape":"PageMaxItems"}
2143
- }
2144
- },
2145
- "ListHostedZonesRequest":{
2146
- "type":"structure",
2147
- "members":{
2148
- "Marker":{
2149
- "shape":"PageMarker",
2150
- "location":"querystring",
2151
- "locationName":"marker"
2152
- },
2153
- "MaxItems":{
2154
- "shape":"PageMaxItems",
2155
- "location":"querystring",
2156
- "locationName":"maxitems"
2157
- },
2158
- "DelegationSetId":{
2159
- "shape":"ResourceId",
2160
- "location":"querystring",
2161
- "locationName":"delegationsetid"
2162
- }
2163
- }
2164
- },
2165
- "ListHostedZonesResponse":{
2166
- "type":"structure",
2167
- "required":[
2168
- "HostedZones",
2169
- "Marker",
2170
- "IsTruncated",
2171
- "MaxItems"
2172
- ],
2173
- "members":{
2174
- "HostedZones":{"shape":"HostedZones"},
2175
- "Marker":{"shape":"PageMarker"},
2176
- "IsTruncated":{"shape":"PageTruncated"},
2177
- "NextMarker":{"shape":"PageMarker"},
2178
- "MaxItems":{"shape":"PageMaxItems"}
2179
- }
2180
- },
2181
- "ListResourceRecordSetsRequest":{
2182
- "type":"structure",
2183
- "required":["HostedZoneId"],
2184
- "members":{
2185
- "HostedZoneId":{
2186
- "shape":"ResourceId",
2187
- "location":"uri",
2188
- "locationName":"Id"
2189
- },
2190
- "StartRecordName":{
2191
- "shape":"DNSName",
2192
- "location":"querystring",
2193
- "locationName":"name"
2194
- },
2195
- "StartRecordType":{
2196
- "shape":"RRType",
2197
- "location":"querystring",
2198
- "locationName":"type"
2199
- },
2200
- "StartRecordIdentifier":{
2201
- "shape":"ResourceRecordSetIdentifier",
2202
- "location":"querystring",
2203
- "locationName":"identifier"
2204
- },
2205
- "MaxItems":{
2206
- "shape":"PageMaxItems",
2207
- "location":"querystring",
2208
- "locationName":"maxitems"
2209
- }
2210
- }
2211
- },
2212
- "ListResourceRecordSetsResponse":{
2213
- "type":"structure",
2214
- "required":[
2215
- "ResourceRecordSets",
2216
- "IsTruncated",
2217
- "MaxItems"
2218
- ],
2219
- "members":{
2220
- "ResourceRecordSets":{"shape":"ResourceRecordSets"},
2221
- "IsTruncated":{"shape":"PageTruncated"},
2222
- "NextRecordName":{"shape":"DNSName"},
2223
- "NextRecordType":{"shape":"RRType"},
2224
- "NextRecordIdentifier":{"shape":"ResourceRecordSetIdentifier"},
2225
- "MaxItems":{"shape":"PageMaxItems"}
2226
- }
2227
- },
2228
- "ListReusableDelegationSetsRequest":{
2229
- "type":"structure",
2230
- "members":{
2231
- "Marker":{
2232
- "shape":"PageMarker",
2233
- "location":"querystring",
2234
- "locationName":"marker"
2235
- },
2236
- "MaxItems":{
2237
- "shape":"PageMaxItems",
2238
- "location":"querystring",
2239
- "locationName":"maxitems"
2240
- }
2241
- }
2242
- },
2243
- "ListReusableDelegationSetsResponse":{
2244
- "type":"structure",
2245
- "required":[
2246
- "DelegationSets",
2247
- "Marker",
2248
- "IsTruncated",
2249
- "MaxItems"
2250
- ],
2251
- "members":{
2252
- "DelegationSets":{"shape":"DelegationSets"},
2253
- "Marker":{"shape":"PageMarker"},
2254
- "IsTruncated":{"shape":"PageTruncated"},
2255
- "NextMarker":{"shape":"PageMarker"},
2256
- "MaxItems":{"shape":"PageMaxItems"}
2257
- }
2258
- },
2259
- "ListTagsForResourceRequest":{
2260
- "type":"structure",
2261
- "required":[
2262
- "ResourceType",
2263
- "ResourceId"
2264
- ],
2265
- "members":{
2266
- "ResourceType":{
2267
- "shape":"TagResourceType",
2268
- "location":"uri",
2269
- "locationName":"ResourceType"
2270
- },
2271
- "ResourceId":{
2272
- "shape":"TagResourceId",
2273
- "location":"uri",
2274
- "locationName":"ResourceId"
2275
- }
2276
- }
2277
- },
2278
- "ListTagsForResourceResponse":{
2279
- "type":"structure",
2280
- "required":["ResourceTagSet"],
2281
- "members":{
2282
- "ResourceTagSet":{"shape":"ResourceTagSet"}
2283
- }
2284
- },
2285
- "ListTagsForResourcesRequest":{
2286
- "type":"structure",
2287
- "required":[
2288
- "ResourceType",
2289
- "ResourceIds"
2290
- ],
2291
- "members":{
2292
- "ResourceType":{
2293
- "shape":"TagResourceType",
2294
- "location":"uri",
2295
- "locationName":"ResourceType"
2296
- },
2297
- "ResourceIds":{"shape":"TagResourceIdList"}
2298
- }
2299
- },
2300
- "ListTagsForResourcesResponse":{
2301
- "type":"structure",
2302
- "required":["ResourceTagSets"],
2303
- "members":{
2304
- "ResourceTagSets":{"shape":"ResourceTagSetList"}
2305
- }
2306
- },
2307
- "ListTrafficPoliciesRequest":{
2308
- "type":"structure",
2309
- "members":{
2310
- "TrafficPolicyIdMarker":{
2311
- "shape":"TrafficPolicyId",
2312
- "location":"querystring",
2313
- "locationName":"trafficpolicyid"
2314
- },
2315
- "MaxItems":{
2316
- "shape":"PageMaxItems",
2317
- "location":"querystring",
2318
- "locationName":"maxitems"
2319
- }
2320
- }
2321
- },
2322
- "ListTrafficPoliciesResponse":{
2323
- "type":"structure",
2324
- "required":[
2325
- "TrafficPolicySummaries",
2326
- "IsTruncated",
2327
- "TrafficPolicyIdMarker",
2328
- "MaxItems"
2329
- ],
2330
- "members":{
2331
- "TrafficPolicySummaries":{"shape":"TrafficPolicySummaries"},
2332
- "IsTruncated":{"shape":"PageTruncated"},
2333
- "TrafficPolicyIdMarker":{"shape":"TrafficPolicyId"},
2334
- "MaxItems":{"shape":"PageMaxItems"}
2335
- }
2336
- },
2337
- "ListTrafficPolicyInstancesByHostedZoneRequest":{
2338
- "type":"structure",
2339
- "required":["HostedZoneId"],
2340
- "members":{
2341
- "HostedZoneId":{
2342
- "shape":"ResourceId",
2343
- "location":"querystring",
2344
- "locationName":"id"
2345
- },
2346
- "TrafficPolicyInstanceNameMarker":{
2347
- "shape":"DNSName",
2348
- "location":"querystring",
2349
- "locationName":"trafficpolicyinstancename"
2350
- },
2351
- "TrafficPolicyInstanceTypeMarker":{
2352
- "shape":"RRType",
2353
- "location":"querystring",
2354
- "locationName":"trafficpolicyinstancetype"
2355
- },
2356
- "MaxItems":{
2357
- "shape":"PageMaxItems",
2358
- "location":"querystring",
2359
- "locationName":"maxitems"
2360
- }
2361
- }
2362
- },
2363
- "ListTrafficPolicyInstancesByHostedZoneResponse":{
2364
- "type":"structure",
2365
- "required":[
2366
- "TrafficPolicyInstances",
2367
- "IsTruncated",
2368
- "MaxItems"
2369
- ],
2370
- "members":{
2371
- "TrafficPolicyInstances":{"shape":"TrafficPolicyInstances"},
2372
- "TrafficPolicyInstanceNameMarker":{"shape":"DNSName"},
2373
- "TrafficPolicyInstanceTypeMarker":{"shape":"RRType"},
2374
- "IsTruncated":{"shape":"PageTruncated"},
2375
- "MaxItems":{"shape":"PageMaxItems"}
2376
- }
2377
- },
2378
- "ListTrafficPolicyInstancesByPolicyRequest":{
2379
- "type":"structure",
2380
- "required":[
2381
- "TrafficPolicyId",
2382
- "TrafficPolicyVersion"
2383
- ],
2384
- "members":{
2385
- "TrafficPolicyId":{
2386
- "shape":"TrafficPolicyId",
2387
- "location":"querystring",
2388
- "locationName":"id"
2389
- },
2390
- "TrafficPolicyVersion":{
2391
- "shape":"TrafficPolicyVersion",
2392
- "location":"querystring",
2393
- "locationName":"version"
2394
- },
2395
- "HostedZoneIdMarker":{
2396
- "shape":"ResourceId",
2397
- "location":"querystring",
2398
- "locationName":"hostedzoneid"
2399
- },
2400
- "TrafficPolicyInstanceNameMarker":{
2401
- "shape":"DNSName",
2402
- "location":"querystring",
2403
- "locationName":"trafficpolicyinstancename"
2404
- },
2405
- "TrafficPolicyInstanceTypeMarker":{
2406
- "shape":"RRType",
2407
- "location":"querystring",
2408
- "locationName":"trafficpolicyinstancetype"
2409
- },
2410
- "MaxItems":{
2411
- "shape":"PageMaxItems",
2412
- "location":"querystring",
2413
- "locationName":"maxitems"
2414
- }
2415
- }
2416
- },
2417
- "ListTrafficPolicyInstancesByPolicyResponse":{
2418
- "type":"structure",
2419
- "required":[
2420
- "TrafficPolicyInstances",
2421
- "IsTruncated",
2422
- "MaxItems"
2423
- ],
2424
- "members":{
2425
- "TrafficPolicyInstances":{"shape":"TrafficPolicyInstances"},
2426
- "HostedZoneIdMarker":{"shape":"ResourceId"},
2427
- "TrafficPolicyInstanceNameMarker":{"shape":"DNSName"},
2428
- "TrafficPolicyInstanceTypeMarker":{"shape":"RRType"},
2429
- "IsTruncated":{"shape":"PageTruncated"},
2430
- "MaxItems":{"shape":"PageMaxItems"}
2431
- }
2432
- },
2433
- "ListTrafficPolicyInstancesRequest":{
2434
- "type":"structure",
2435
- "members":{
2436
- "HostedZoneIdMarker":{
2437
- "shape":"ResourceId",
2438
- "location":"querystring",
2439
- "locationName":"hostedzoneid"
2440
- },
2441
- "TrafficPolicyInstanceNameMarker":{
2442
- "shape":"DNSName",
2443
- "location":"querystring",
2444
- "locationName":"trafficpolicyinstancename"
2445
- },
2446
- "TrafficPolicyInstanceTypeMarker":{
2447
- "shape":"RRType",
2448
- "location":"querystring",
2449
- "locationName":"trafficpolicyinstancetype"
2450
- },
2451
- "MaxItems":{
2452
- "shape":"PageMaxItems",
2453
- "location":"querystring",
2454
- "locationName":"maxitems"
2455
- }
2456
- }
2457
- },
2458
- "ListTrafficPolicyInstancesResponse":{
2459
- "type":"structure",
2460
- "required":[
2461
- "TrafficPolicyInstances",
2462
- "IsTruncated",
2463
- "MaxItems"
2464
- ],
2465
- "members":{
2466
- "TrafficPolicyInstances":{"shape":"TrafficPolicyInstances"},
2467
- "HostedZoneIdMarker":{"shape":"ResourceId"},
2468
- "TrafficPolicyInstanceNameMarker":{"shape":"DNSName"},
2469
- "TrafficPolicyInstanceTypeMarker":{"shape":"RRType"},
2470
- "IsTruncated":{"shape":"PageTruncated"},
2471
- "MaxItems":{"shape":"PageMaxItems"}
2472
- }
2473
- },
2474
- "ListTrafficPolicyVersionsRequest":{
2475
- "type":"structure",
2476
- "required":["Id"],
2477
- "members":{
2478
- "Id":{
2479
- "shape":"TrafficPolicyId",
2480
- "location":"uri",
2481
- "locationName":"Id"
2482
- },
2483
- "TrafficPolicyVersionMarker":{
2484
- "shape":"TrafficPolicyVersionMarker",
2485
- "location":"querystring",
2486
- "locationName":"trafficpolicyversion"
2487
- },
2488
- "MaxItems":{
2489
- "shape":"PageMaxItems",
2490
- "location":"querystring",
2491
- "locationName":"maxitems"
2492
- }
2493
- }
2494
- },
2495
- "ListTrafficPolicyVersionsResponse":{
2496
- "type":"structure",
2497
- "required":[
2498
- "TrafficPolicies",
2499
- "IsTruncated",
2500
- "TrafficPolicyVersionMarker",
2501
- "MaxItems"
2502
- ],
2503
- "members":{
2504
- "TrafficPolicies":{"shape":"TrafficPolicies"},
2505
- "IsTruncated":{"shape":"PageTruncated"},
2506
- "TrafficPolicyVersionMarker":{"shape":"TrafficPolicyVersionMarker"},
2507
- "MaxItems":{"shape":"PageMaxItems"}
2508
- }
2509
- },
2510
- "ListVPCAssociationAuthorizationsRequest":{
2511
- "type":"structure",
2512
- "required":["HostedZoneId"],
2513
- "members":{
2514
- "HostedZoneId":{
2515
- "shape":"ResourceId",
2516
- "location":"uri",
2517
- "locationName":"Id"
2518
- },
2519
- "NextToken":{
2520
- "shape":"PaginationToken",
2521
- "location":"querystring",
2522
- "locationName":"nexttoken"
2523
- },
2524
- "MaxResults":{
2525
- "shape":"MaxResults",
2526
- "location":"querystring",
2527
- "locationName":"maxresults"
2528
- }
2529
- }
2530
- },
2531
- "ListVPCAssociationAuthorizationsResponse":{
2532
- "type":"structure",
2533
- "required":[
2534
- "HostedZoneId",
2535
- "VPCs"
2536
- ],
2537
- "members":{
2538
- "HostedZoneId":{"shape":"ResourceId"},
2539
- "NextToken":{"shape":"PaginationToken"},
2540
- "VPCs":{"shape":"VPCs"}
2541
- }
2542
- },
2543
- "MaxResults":{"type":"string"},
2544
- "MeasureLatency":{"type":"boolean"},
2545
- "Message":{
2546
- "type":"string",
2547
- "max":1024
2548
- },
2549
- "MetricName":{
2550
- "type":"string",
2551
- "max":255,
2552
- "min":1
2553
- },
2554
- "Nameserver":{
2555
- "type":"string",
2556
- "max":255,
2557
- "min":0
2558
- },
2559
- "Namespace":{
2560
- "type":"string",
2561
- "max":255,
2562
- "min":1
2563
- },
2564
- "NoSuchChange":{
2565
- "type":"structure",
2566
- "members":{
2567
- "message":{"shape":"ErrorMessage"}
2568
- },
2569
- "error":{"httpStatusCode":404},
2570
- "exception":true
2571
- },
2572
- "NoSuchDelegationSet":{
2573
- "type":"structure",
2574
- "members":{
2575
- "message":{"shape":"ErrorMessage"}
2576
- },
2577
- "exception":true
2578
- },
2579
- "NoSuchGeoLocation":{
2580
- "type":"structure",
2581
- "members":{
2582
- "message":{"shape":"ErrorMessage"}
2583
- },
2584
- "error":{"httpStatusCode":404},
2585
- "exception":true
2586
- },
2587
- "NoSuchHealthCheck":{
2588
- "type":"structure",
2589
- "members":{
2590
- "message":{"shape":"ErrorMessage"}
2591
- },
2592
- "error":{"httpStatusCode":404},
2593
- "exception":true
2594
- },
2595
- "NoSuchHostedZone":{
2596
- "type":"structure",
2597
- "members":{
2598
- "message":{"shape":"ErrorMessage"}
2599
- },
2600
- "error":{"httpStatusCode":404},
2601
- "exception":true
2602
- },
2603
- "NoSuchTrafficPolicy":{
2604
- "type":"structure",
2605
- "members":{
2606
- "message":{"shape":"ErrorMessage"}
2607
- },
2608
- "error":{"httpStatusCode":404},
2609
- "exception":true
2610
- },
2611
- "NoSuchTrafficPolicyInstance":{
2612
- "type":"structure",
2613
- "members":{
2614
- "message":{"shape":"ErrorMessage"}
2615
- },
2616
- "error":{"httpStatusCode":404},
2617
- "exception":true
2618
- },
2619
- "Nonce":{
2620
- "type":"string",
2621
- "max":128,
2622
- "min":1
2623
- },
2624
- "NotAuthorizedException":{
2625
- "type":"structure",
2626
- "members":{
2627
- "message":{"shape":"ErrorMessage"}
2628
- },
2629
- "error":{"httpStatusCode":401},
2630
- "exception":true
2631
- },
2632
- "PageMarker":{
2633
- "type":"string",
2634
- "max":64
2635
- },
2636
- "PageMaxItems":{"type":"string"},
2637
- "PageTruncated":{"type":"boolean"},
2638
- "PaginationToken":{
2639
- "type":"string",
2640
- "max":256
2641
- },
2642
- "Period":{
2643
- "type":"integer",
2644
- "min":60
2645
- },
2646
- "Port":{
2647
- "type":"integer",
2648
- "max":65535,
2649
- "min":1
2650
- },
2651
- "PriorRequestNotComplete":{
2652
- "type":"structure",
2653
- "members":{
2654
- "message":{"shape":"ErrorMessage"}
2655
- },
2656
- "error":{"httpStatusCode":400},
2657
- "exception":true
2658
- },
2659
- "PublicZoneVPCAssociation":{
2660
- "type":"structure",
2661
- "members":{
2662
- "message":{"shape":"ErrorMessage"}
2663
- },
2664
- "error":{"httpStatusCode":400},
2665
- "exception":true
2666
- },
2667
- "RData":{
2668
- "type":"string",
2669
- "max":4000
2670
- },
2671
- "RRType":{
2672
- "type":"string",
2673
- "enum":[
2674
- "SOA",
2675
- "A",
2676
- "TXT",
2677
- "NS",
2678
- "CNAME",
2679
- "MX",
2680
- "NAPTR",
2681
- "PTR",
2682
- "SRV",
2683
- "SPF",
2684
- "AAAA"
2685
- ]
2686
- },
2687
- "RecordData":{
2688
- "type":"list",
2689
- "member":{
2690
- "shape":"RecordDataEntry",
2691
- "locationName":"RecordDataEntry"
2692
- }
2693
- },
2694
- "RecordDataEntry":{
2695
- "type":"string",
2696
- "max":512,
2697
- "min":0
2698
- },
2699
- "RequestInterval":{
2700
- "type":"integer",
2701
- "max":30,
2702
- "min":10
2703
- },
2704
- "ResourceDescription":{
2705
- "type":"string",
2706
- "max":256
2707
- },
2708
- "ResourceId":{
2709
- "type":"string",
2710
- "max":32
2711
- },
2712
- "ResourcePath":{
2713
- "type":"string",
2714
- "max":255
2715
- },
2716
- "ResourceRecord":{
2717
- "type":"structure",
2718
- "required":["Value"],
2719
- "members":{
2720
- "Value":{"shape":"RData"}
2721
- }
2722
- },
2723
- "ResourceRecordSet":{
2724
- "type":"structure",
2725
- "required":[
2726
- "Name",
2727
- "Type"
2728
- ],
2729
- "members":{
2730
- "Name":{"shape":"DNSName"},
2731
- "Type":{"shape":"RRType"},
2732
- "SetIdentifier":{"shape":"ResourceRecordSetIdentifier"},
2733
- "Weight":{"shape":"ResourceRecordSetWeight"},
2734
- "Region":{"shape":"ResourceRecordSetRegion"},
2735
- "GeoLocation":{"shape":"GeoLocation"},
2736
- "Failover":{"shape":"ResourceRecordSetFailover"},
2737
- "TTL":{"shape":"TTL"},
2738
- "ResourceRecords":{"shape":"ResourceRecords"},
2739
- "AliasTarget":{"shape":"AliasTarget"},
2740
- "HealthCheckId":{"shape":"HealthCheckId"},
2741
- "TrafficPolicyInstanceId":{"shape":"TrafficPolicyInstanceId"}
2742
- }
2743
- },
2744
- "ResourceRecordSetFailover":{
2745
- "type":"string",
2746
- "enum":[
2747
- "PRIMARY",
2748
- "SECONDARY"
2749
- ]
2750
- },
2751
- "ResourceRecordSetIdentifier":{
2752
- "type":"string",
2753
- "max":128,
2754
- "min":1
2755
- },
2756
- "ResourceRecordSetRegion":{
2757
- "type":"string",
2758
- "enum":[
2759
- "us-east-1",
2760
- "us-east-2",
2761
- "us-west-1",
2762
- "us-west-2",
2763
- "ca-central-1",
2764
- "eu-west-1",
2765
- "eu-west-2",
2766
- "eu-central-1",
2767
- "ap-southeast-1",
2768
- "ap-southeast-2",
2769
- "ap-northeast-1",
2770
- "ap-northeast-2",
2771
- "sa-east-1",
2772
- "cn-north-1",
2773
- "ap-south-1"
2774
- ],
2775
- "max":64,
2776
- "min":1
2777
- },
2778
- "ResourceRecordSetWeight":{
2779
- "type":"long",
2780
- "max":255,
2781
- "min":0
2782
- },
2783
- "ResourceRecordSets":{
2784
- "type":"list",
2785
- "member":{
2786
- "shape":"ResourceRecordSet",
2787
- "locationName":"ResourceRecordSet"
2788
- }
2789
- },
2790
- "ResourceRecords":{
2791
- "type":"list",
2792
- "member":{
2793
- "shape":"ResourceRecord",
2794
- "locationName":"ResourceRecord"
2795
- },
2796
- "min":1
2797
- },
2798
- "ResourceTagSet":{
2799
- "type":"structure",
2800
- "members":{
2801
- "ResourceType":{"shape":"TagResourceType"},
2802
- "ResourceId":{"shape":"TagResourceId"},
2803
- "Tags":{"shape":"TagList"}
2804
- }
2805
- },
2806
- "ResourceTagSetList":{
2807
- "type":"list",
2808
- "member":{
2809
- "shape":"ResourceTagSet",
2810
- "locationName":"ResourceTagSet"
2811
- }
2812
- },
2813
- "ResourceURI":{
2814
- "type":"string",
2815
- "max":1024
2816
- },
2817
- "SearchString":{
2818
- "type":"string",
2819
- "max":255
2820
- },
2821
- "Statistic":{
2822
- "type":"string",
2823
- "enum":[
2824
- "Average",
2825
- "Sum",
2826
- "SampleCount",
2827
- "Maximum",
2828
- "Minimum"
2829
- ]
2830
- },
2831
- "Status":{"type":"string"},
2832
- "StatusReport":{
2833
- "type":"structure",
2834
- "members":{
2835
- "Status":{"shape":"Status"},
2836
- "CheckedTime":{"shape":"TimeStamp"}
2837
- }
2838
- },
2839
- "SubnetMask":{
2840
- "type":"string",
2841
- "max":3,
2842
- "min":0
2843
- },
2844
- "TTL":{
2845
- "type":"long",
2846
- "max":2147483647,
2847
- "min":0
2848
- },
2849
- "Tag":{
2850
- "type":"structure",
2851
- "members":{
2852
- "Key":{"shape":"TagKey"},
2853
- "Value":{"shape":"TagValue"}
2854
- }
2855
- },
2856
- "TagKey":{
2857
- "type":"string",
2858
- "max":128
2859
- },
2860
- "TagKeyList":{
2861
- "type":"list",
2862
- "member":{
2863
- "shape":"TagKey",
2864
- "locationName":"Key"
2865
- },
2866
- "max":10,
2867
- "min":1
2868
- },
2869
- "TagList":{
2870
- "type":"list",
2871
- "member":{
2872
- "shape":"Tag",
2873
- "locationName":"Tag"
2874
- },
2875
- "max":10,
2876
- "min":1
2877
- },
2878
- "TagResourceId":{
2879
- "type":"string",
2880
- "max":64
2881
- },
2882
- "TagResourceIdList":{
2883
- "type":"list",
2884
- "member":{
2885
- "shape":"TagResourceId",
2886
- "locationName":"ResourceId"
2887
- },
2888
- "max":10,
2889
- "min":1
2890
- },
2891
- "TagResourceType":{
2892
- "type":"string",
2893
- "enum":[
2894
- "healthcheck",
2895
- "hostedzone"
2896
- ]
2897
- },
2898
- "TagValue":{
2899
- "type":"string",
2900
- "max":256
2901
- },
2902
- "TestDNSAnswerRequest":{
2903
- "type":"structure",
2904
- "required":[
2905
- "HostedZoneId",
2906
- "RecordName",
2907
- "RecordType"
2908
- ],
2909
- "members":{
2910
- "HostedZoneId":{
2911
- "shape":"ResourceId",
2912
- "location":"querystring",
2913
- "locationName":"hostedzoneid"
2914
- },
2915
- "RecordName":{
2916
- "shape":"DNSName",
2917
- "location":"querystring",
2918
- "locationName":"recordname"
2919
- },
2920
- "RecordType":{
2921
- "shape":"RRType",
2922
- "location":"querystring",
2923
- "locationName":"recordtype"
2924
- },
2925
- "ResolverIP":{
2926
- "shape":"IPAddress",
2927
- "location":"querystring",
2928
- "locationName":"resolverip"
2929
- },
2930
- "EDNS0ClientSubnetIP":{
2931
- "shape":"IPAddress",
2932
- "location":"querystring",
2933
- "locationName":"edns0clientsubnetip"
2934
- },
2935
- "EDNS0ClientSubnetMask":{
2936
- "shape":"SubnetMask",
2937
- "location":"querystring",
2938
- "locationName":"edns0clientsubnetmask"
2939
- }
2940
- }
2941
- },
2942
- "TestDNSAnswerResponse":{
2943
- "type":"structure",
2944
- "required":[
2945
- "Nameserver",
2946
- "RecordName",
2947
- "RecordType",
2948
- "RecordData",
2949
- "ResponseCode",
2950
- "Protocol"
2951
- ],
2952
- "members":{
2953
- "Nameserver":{"shape":"Nameserver"},
2954
- "RecordName":{"shape":"DNSName"},
2955
- "RecordType":{"shape":"RRType"},
2956
- "RecordData":{"shape":"RecordData"},
2957
- "ResponseCode":{"shape":"DNSRCode"},
2958
- "Protocol":{"shape":"TransportProtocol"}
2959
- }
2960
- },
2961
- "Threshold":{"type":"double"},
2962
- "ThrottlingException":{
2963
- "type":"structure",
2964
- "members":{
2965
- "message":{"shape":"ErrorMessage"}
2966
- },
2967
- "error":{"httpStatusCode":400},
2968
- "exception":true
2969
- },
2970
- "TimeStamp":{"type":"timestamp"},
2971
- "TooManyHealthChecks":{
2972
- "type":"structure",
2973
- "members":{
2974
- "message":{"shape":"ErrorMessage"}
2975
- },
2976
- "exception":true
2977
- },
2978
- "TooManyHostedZones":{
2979
- "type":"structure",
2980
- "members":{
2981
- "message":{"shape":"ErrorMessage"}
2982
- },
2983
- "error":{"httpStatusCode":400},
2984
- "exception":true
2985
- },
2986
- "TooManyTrafficPolicies":{
2987
- "type":"structure",
2988
- "members":{
2989
- "message":{"shape":"ErrorMessage"}
2990
- },
2991
- "error":{"httpStatusCode":400},
2992
- "exception":true
2993
- },
2994
- "TooManyTrafficPolicyInstances":{
2995
- "type":"structure",
2996
- "members":{
2997
- "message":{"shape":"ErrorMessage"}
2998
- },
2999
- "error":{"httpStatusCode":400},
3000
- "exception":true
3001
- },
3002
- "TooManyVPCAssociationAuthorizations":{
3003
- "type":"structure",
3004
- "members":{
3005
- "message":{"shape":"ErrorMessage"}
3006
- },
3007
- "error":{"httpStatusCode":400},
3008
- "exception":true
3009
- },
3010
- "TrafficPolicies":{
3011
- "type":"list",
3012
- "member":{
3013
- "shape":"TrafficPolicy",
3014
- "locationName":"TrafficPolicy"
3015
- }
3016
- },
3017
- "TrafficPolicy":{
3018
- "type":"structure",
3019
- "required":[
3020
- "Id",
3021
- "Version",
3022
- "Name",
3023
- "Type",
3024
- "Document"
3025
- ],
3026
- "members":{
3027
- "Id":{"shape":"TrafficPolicyId"},
3028
- "Version":{"shape":"TrafficPolicyVersion"},
3029
- "Name":{"shape":"TrafficPolicyName"},
3030
- "Type":{"shape":"RRType"},
3031
- "Document":{"shape":"TrafficPolicyDocument"},
3032
- "Comment":{"shape":"TrafficPolicyComment"}
3033
- }
3034
- },
3035
- "TrafficPolicyAlreadyExists":{
3036
- "type":"structure",
3037
- "members":{
3038
- "message":{"shape":"ErrorMessage"}
3039
- },
3040
- "error":{"httpStatusCode":409},
3041
- "exception":true
3042
- },
3043
- "TrafficPolicyComment":{
3044
- "type":"string",
3045
- "max":1024
3046
- },
3047
- "TrafficPolicyDocument":{
3048
- "type":"string",
3049
- "max":102400
3050
- },
3051
- "TrafficPolicyId":{
3052
- "type":"string",
3053
- "max":36,
3054
- "min":1
3055
- },
3056
- "TrafficPolicyInUse":{
3057
- "type":"structure",
3058
- "members":{
3059
- "message":{"shape":"ErrorMessage"}
3060
- },
3061
- "error":{"httpStatusCode":400},
3062
- "exception":true
3063
- },
3064
- "TrafficPolicyInstance":{
3065
- "type":"structure",
3066
- "required":[
3067
- "Id",
3068
- "HostedZoneId",
3069
- "Name",
3070
- "TTL",
3071
- "State",
3072
- "Message",
3073
- "TrafficPolicyId",
3074
- "TrafficPolicyVersion",
3075
- "TrafficPolicyType"
3076
- ],
3077
- "members":{
3078
- "Id":{"shape":"TrafficPolicyInstanceId"},
3079
- "HostedZoneId":{"shape":"ResourceId"},
3080
- "Name":{"shape":"DNSName"},
3081
- "TTL":{"shape":"TTL"},
3082
- "State":{"shape":"TrafficPolicyInstanceState"},
3083
- "Message":{"shape":"Message"},
3084
- "TrafficPolicyId":{"shape":"TrafficPolicyId"},
3085
- "TrafficPolicyVersion":{"shape":"TrafficPolicyVersion"},
3086
- "TrafficPolicyType":{"shape":"RRType"}
3087
- }
3088
- },
3089
- "TrafficPolicyInstanceAlreadyExists":{
3090
- "type":"structure",
3091
- "members":{
3092
- "message":{"shape":"ErrorMessage"}
3093
- },
3094
- "error":{"httpStatusCode":409},
3095
- "exception":true
3096
- },
3097
- "TrafficPolicyInstanceCount":{"type":"integer"},
3098
- "TrafficPolicyInstanceId":{
3099
- "type":"string",
3100
- "max":36,
3101
- "min":1
3102
- },
3103
- "TrafficPolicyInstanceState":{"type":"string"},
3104
- "TrafficPolicyInstances":{
3105
- "type":"list",
3106
- "member":{
3107
- "shape":"TrafficPolicyInstance",
3108
- "locationName":"TrafficPolicyInstance"
3109
- }
3110
- },
3111
- "TrafficPolicyName":{
3112
- "type":"string",
3113
- "max":512
3114
- },
3115
- "TrafficPolicySummaries":{
3116
- "type":"list",
3117
- "member":{
3118
- "shape":"TrafficPolicySummary",
3119
- "locationName":"TrafficPolicySummary"
3120
- }
3121
- },
3122
- "TrafficPolicySummary":{
3123
- "type":"structure",
3124
- "required":[
3125
- "Id",
3126
- "Name",
3127
- "Type",
3128
- "LatestVersion",
3129
- "TrafficPolicyCount"
3130
- ],
3131
- "members":{
3132
- "Id":{"shape":"TrafficPolicyId"},
3133
- "Name":{"shape":"TrafficPolicyName"},
3134
- "Type":{"shape":"RRType"},
3135
- "LatestVersion":{"shape":"TrafficPolicyVersion"},
3136
- "TrafficPolicyCount":{"shape":"TrafficPolicyVersion"}
3137
- }
3138
- },
3139
- "TrafficPolicyVersion":{
3140
- "type":"integer",
3141
- "max":1000,
3142
- "min":1
3143
- },
3144
- "TrafficPolicyVersionMarker":{
3145
- "type":"string",
3146
- "max":4
3147
- },
3148
- "TransportProtocol":{"type":"string"},
3149
- "UpdateHealthCheckRequest":{
3150
- "type":"structure",
3151
- "required":["HealthCheckId"],
3152
- "members":{
3153
- "HealthCheckId":{
3154
- "shape":"HealthCheckId",
3155
- "location":"uri",
3156
- "locationName":"HealthCheckId"
3157
- },
3158
- "HealthCheckVersion":{"shape":"HealthCheckVersion"},
3159
- "IPAddress":{"shape":"IPAddress"},
3160
- "Port":{"shape":"Port"},
3161
- "ResourcePath":{"shape":"ResourcePath"},
3162
- "FullyQualifiedDomainName":{"shape":"FullyQualifiedDomainName"},
3163
- "SearchString":{"shape":"SearchString"},
3164
- "FailureThreshold":{"shape":"FailureThreshold"},
3165
- "Inverted":{"shape":"Inverted"},
3166
- "HealthThreshold":{"shape":"HealthThreshold"},
3167
- "ChildHealthChecks":{"shape":"ChildHealthCheckList"},
3168
- "EnableSNI":{"shape":"EnableSNI"},
3169
- "Regions":{"shape":"HealthCheckRegionList"},
3170
- "AlarmIdentifier":{"shape":"AlarmIdentifier"},
3171
- "InsufficientDataHealthStatus":{"shape":"InsufficientDataHealthStatus"}
3172
- }
3173
- },
3174
- "UpdateHealthCheckResponse":{
3175
- "type":"structure",
3176
- "required":["HealthCheck"],
3177
- "members":{
3178
- "HealthCheck":{"shape":"HealthCheck"}
3179
- }
3180
- },
3181
- "UpdateHostedZoneCommentRequest":{
3182
- "type":"structure",
3183
- "required":["Id"],
3184
- "members":{
3185
- "Id":{
3186
- "shape":"ResourceId",
3187
- "location":"uri",
3188
- "locationName":"Id"
3189
- },
3190
- "Comment":{"shape":"ResourceDescription"}
3191
- }
3192
- },
3193
- "UpdateHostedZoneCommentResponse":{
3194
- "type":"structure",
3195
- "required":["HostedZone"],
3196
- "members":{
3197
- "HostedZone":{"shape":"HostedZone"}
3198
- }
3199
- },
3200
- "UpdateTrafficPolicyCommentRequest":{
3201
- "type":"structure",
3202
- "required":[
3203
- "Id",
3204
- "Version",
3205
- "Comment"
3206
- ],
3207
- "members":{
3208
- "Id":{
3209
- "shape":"TrafficPolicyId",
3210
- "location":"uri",
3211
- "locationName":"Id"
3212
- },
3213
- "Version":{
3214
- "shape":"TrafficPolicyVersion",
3215
- "location":"uri",
3216
- "locationName":"Version"
3217
- },
3218
- "Comment":{"shape":"TrafficPolicyComment"}
3219
- }
3220
- },
3221
- "UpdateTrafficPolicyCommentResponse":{
3222
- "type":"structure",
3223
- "required":["TrafficPolicy"],
3224
- "members":{
3225
- "TrafficPolicy":{"shape":"TrafficPolicy"}
3226
- }
3227
- },
3228
- "UpdateTrafficPolicyInstanceRequest":{
3229
- "type":"structure",
3230
- "required":[
3231
- "Id",
3232
- "TTL",
3233
- "TrafficPolicyId",
3234
- "TrafficPolicyVersion"
3235
- ],
3236
- "members":{
3237
- "Id":{
3238
- "shape":"TrafficPolicyInstanceId",
3239
- "location":"uri",
3240
- "locationName":"Id"
3241
- },
3242
- "TTL":{"shape":"TTL"},
3243
- "TrafficPolicyId":{"shape":"TrafficPolicyId"},
3244
- "TrafficPolicyVersion":{"shape":"TrafficPolicyVersion"}
3245
- }
3246
- },
3247
- "UpdateTrafficPolicyInstanceResponse":{
3248
- "type":"structure",
3249
- "required":["TrafficPolicyInstance"],
3250
- "members":{
3251
- "TrafficPolicyInstance":{"shape":"TrafficPolicyInstance"}
3252
- }
3253
- },
3254
- "VPC":{
3255
- "type":"structure",
3256
- "members":{
3257
- "VPCRegion":{"shape":"VPCRegion"},
3258
- "VPCId":{"shape":"VPCId"}
3259
- }
3260
- },
3261
- "VPCAssociationAuthorizationNotFound":{
3262
- "type":"structure",
3263
- "members":{
3264
- "message":{"shape":"ErrorMessage"}
3265
- },
3266
- "error":{"httpStatusCode":404},
3267
- "exception":true
3268
- },
3269
- "VPCAssociationNotFound":{
3270
- "type":"structure",
3271
- "members":{
3272
- "message":{"shape":"ErrorMessage"}
3273
- },
3274
- "error":{"httpStatusCode":404},
3275
- "exception":true
3276
- },
3277
- "VPCId":{
3278
- "type":"string",
3279
- "max":1024
3280
- },
3281
- "VPCRegion":{
3282
- "type":"string",
3283
- "enum":[
3284
- "us-east-1",
3285
- "us-east-2",
3286
- "us-west-1",
3287
- "us-west-2",
3288
- "eu-west-1",
3289
- "eu-west-2",
3290
- "eu-central-1",
3291
- "ap-southeast-1",
3292
- "ap-southeast-2",
3293
- "ap-south-1",
3294
- "ap-northeast-1",
3295
- "ap-northeast-2",
3296
- "sa-east-1",
3297
- "ca-central-1",
3298
- "cn-north-1"
3299
- ],
3300
- "max":64,
3301
- "min":1
3302
- },
3303
- "VPCs":{
3304
- "type":"list",
3305
- "member":{
3306
- "shape":"VPC",
3307
- "locationName":"VPC"
3308
- },
3309
- "min":1
3310
- }
3311
- }
3312
- }