aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -1,3772 +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
- "serviceId":"Route 53",
11
- "signatureVersion":"v4",
12
- "uid":"route53-2013-04-01"
13
- },
14
- "operations":{
15
- "AssociateVPCWithHostedZone":{
16
- "name":"AssociateVPCWithHostedZone",
17
- "http":{
18
- "method":"POST",
19
- "requestUri":"/2013-04-01/hostedzone/{Id}/associatevpc"
20
- },
21
- "input":{
22
- "shape":"AssociateVPCWithHostedZoneRequest",
23
- "locationName":"AssociateVPCWithHostedZoneRequest",
24
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
25
- },
26
- "output":{"shape":"AssociateVPCWithHostedZoneResponse"},
27
- "errors":[
28
- {"shape":"NoSuchHostedZone"},
29
- {"shape":"NotAuthorizedException"},
30
- {"shape":"InvalidVPCId"},
31
- {"shape":"InvalidInput"},
32
- {"shape":"PublicZoneVPCAssociation"},
33
- {"shape":"ConflictingDomainExists"},
34
- {"shape":"LimitsExceeded"}
35
- ]
36
- },
37
- "ChangeResourceRecordSets":{
38
- "name":"ChangeResourceRecordSets",
39
- "http":{
40
- "method":"POST",
41
- "requestUri":"/2013-04-01/hostedzone/{Id}/rrset/"
42
- },
43
- "input":{
44
- "shape":"ChangeResourceRecordSetsRequest",
45
- "locationName":"ChangeResourceRecordSetsRequest",
46
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
47
- },
48
- "output":{"shape":"ChangeResourceRecordSetsResponse"},
49
- "errors":[
50
- {"shape":"NoSuchHostedZone"},
51
- {"shape":"NoSuchHealthCheck"},
52
- {"shape":"InvalidChangeBatch"},
53
- {"shape":"InvalidInput"},
54
- {"shape":"PriorRequestNotComplete"}
55
- ]
56
- },
57
- "ChangeTagsForResource":{
58
- "name":"ChangeTagsForResource",
59
- "http":{
60
- "method":"POST",
61
- "requestUri":"/2013-04-01/tags/{ResourceType}/{ResourceId}"
62
- },
63
- "input":{
64
- "shape":"ChangeTagsForResourceRequest",
65
- "locationName":"ChangeTagsForResourceRequest",
66
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
67
- },
68
- "output":{"shape":"ChangeTagsForResourceResponse"},
69
- "errors":[
70
- {"shape":"InvalidInput"},
71
- {"shape":"NoSuchHealthCheck"},
72
- {"shape":"NoSuchHostedZone"},
73
- {"shape":"PriorRequestNotComplete"},
74
- {"shape":"ThrottlingException"}
75
- ]
76
- },
77
- "CreateHealthCheck":{
78
- "name":"CreateHealthCheck",
79
- "http":{
80
- "method":"POST",
81
- "requestUri":"/2013-04-01/healthcheck",
82
- "responseCode":201
83
- },
84
- "input":{
85
- "shape":"CreateHealthCheckRequest",
86
- "locationName":"CreateHealthCheckRequest",
87
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
88
- },
89
- "output":{"shape":"CreateHealthCheckResponse"},
90
- "errors":[
91
- {"shape":"TooManyHealthChecks"},
92
- {"shape":"HealthCheckAlreadyExists"},
93
- {"shape":"InvalidInput"}
94
- ]
95
- },
96
- "CreateHostedZone":{
97
- "name":"CreateHostedZone",
98
- "http":{
99
- "method":"POST",
100
- "requestUri":"/2013-04-01/hostedzone",
101
- "responseCode":201
102
- },
103
- "input":{
104
- "shape":"CreateHostedZoneRequest",
105
- "locationName":"CreateHostedZoneRequest",
106
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
107
- },
108
- "output":{"shape":"CreateHostedZoneResponse"},
109
- "errors":[
110
- {"shape":"InvalidDomainName"},
111
- {"shape":"HostedZoneAlreadyExists"},
112
- {"shape":"TooManyHostedZones"},
113
- {"shape":"InvalidVPCId"},
114
- {"shape":"InvalidInput"},
115
- {"shape":"DelegationSetNotAvailable"},
116
- {"shape":"ConflictingDomainExists"},
117
- {"shape":"NoSuchDelegationSet"},
118
- {"shape":"DelegationSetNotReusable"}
119
- ]
120
- },
121
- "CreateQueryLoggingConfig":{
122
- "name":"CreateQueryLoggingConfig",
123
- "http":{
124
- "method":"POST",
125
- "requestUri":"/2013-04-01/queryloggingconfig",
126
- "responseCode":201
127
- },
128
- "input":{
129
- "shape":"CreateQueryLoggingConfigRequest",
130
- "locationName":"CreateQueryLoggingConfigRequest",
131
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
132
- },
133
- "output":{"shape":"CreateQueryLoggingConfigResponse"},
134
- "errors":[
135
- {"shape":"ConcurrentModification"},
136
- {"shape":"NoSuchHostedZone"},
137
- {"shape":"NoSuchCloudWatchLogsLogGroup"},
138
- {"shape":"InvalidInput"},
139
- {"shape":"QueryLoggingConfigAlreadyExists"},
140
- {"shape":"InsufficientCloudWatchLogsResourcePolicy"}
141
- ]
142
- },
143
- "CreateReusableDelegationSet":{
144
- "name":"CreateReusableDelegationSet",
145
- "http":{
146
- "method":"POST",
147
- "requestUri":"/2013-04-01/delegationset",
148
- "responseCode":201
149
- },
150
- "input":{
151
- "shape":"CreateReusableDelegationSetRequest",
152
- "locationName":"CreateReusableDelegationSetRequest",
153
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
154
- },
155
- "output":{"shape":"CreateReusableDelegationSetResponse"},
156
- "errors":[
157
- {"shape":"DelegationSetAlreadyCreated"},
158
- {"shape":"LimitsExceeded"},
159
- {"shape":"HostedZoneNotFound"},
160
- {"shape":"InvalidArgument"},
161
- {"shape":"InvalidInput"},
162
- {"shape":"DelegationSetNotAvailable"},
163
- {"shape":"DelegationSetAlreadyReusable"}
164
- ]
165
- },
166
- "CreateTrafficPolicy":{
167
- "name":"CreateTrafficPolicy",
168
- "http":{
169
- "method":"POST",
170
- "requestUri":"/2013-04-01/trafficpolicy",
171
- "responseCode":201
172
- },
173
- "input":{
174
- "shape":"CreateTrafficPolicyRequest",
175
- "locationName":"CreateTrafficPolicyRequest",
176
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
177
- },
178
- "output":{"shape":"CreateTrafficPolicyResponse"},
179
- "errors":[
180
- {"shape":"InvalidInput"},
181
- {"shape":"TooManyTrafficPolicies"},
182
- {"shape":"TrafficPolicyAlreadyExists"},
183
- {"shape":"InvalidTrafficPolicyDocument"}
184
- ]
185
- },
186
- "CreateTrafficPolicyInstance":{
187
- "name":"CreateTrafficPolicyInstance",
188
- "http":{
189
- "method":"POST",
190
- "requestUri":"/2013-04-01/trafficpolicyinstance",
191
- "responseCode":201
192
- },
193
- "input":{
194
- "shape":"CreateTrafficPolicyInstanceRequest",
195
- "locationName":"CreateTrafficPolicyInstanceRequest",
196
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
197
- },
198
- "output":{"shape":"CreateTrafficPolicyInstanceResponse"},
199
- "errors":[
200
- {"shape":"NoSuchHostedZone"},
201
- {"shape":"InvalidInput"},
202
- {"shape":"TooManyTrafficPolicyInstances"},
203
- {"shape":"NoSuchTrafficPolicy"},
204
- {"shape":"TrafficPolicyInstanceAlreadyExists"}
205
- ]
206
- },
207
- "CreateTrafficPolicyVersion":{
208
- "name":"CreateTrafficPolicyVersion",
209
- "http":{
210
- "method":"POST",
211
- "requestUri":"/2013-04-01/trafficpolicy/{Id}",
212
- "responseCode":201
213
- },
214
- "input":{
215
- "shape":"CreateTrafficPolicyVersionRequest",
216
- "locationName":"CreateTrafficPolicyVersionRequest",
217
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
218
- },
219
- "output":{"shape":"CreateTrafficPolicyVersionResponse"},
220
- "errors":[
221
- {"shape":"NoSuchTrafficPolicy"},
222
- {"shape":"InvalidInput"},
223
- {"shape":"TooManyTrafficPolicyVersionsForCurrentPolicy"},
224
- {"shape":"ConcurrentModification"},
225
- {"shape":"InvalidTrafficPolicyDocument"}
226
- ]
227
- },
228
- "CreateVPCAssociationAuthorization":{
229
- "name":"CreateVPCAssociationAuthorization",
230
- "http":{
231
- "method":"POST",
232
- "requestUri":"/2013-04-01/hostedzone/{Id}/authorizevpcassociation"
233
- },
234
- "input":{
235
- "shape":"CreateVPCAssociationAuthorizationRequest",
236
- "locationName":"CreateVPCAssociationAuthorizationRequest",
237
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
238
- },
239
- "output":{"shape":"CreateVPCAssociationAuthorizationResponse"},
240
- "errors":[
241
- {"shape":"ConcurrentModification"},
242
- {"shape":"TooManyVPCAssociationAuthorizations"},
243
- {"shape":"NoSuchHostedZone"},
244
- {"shape":"InvalidVPCId"},
245
- {"shape":"InvalidInput"}
246
- ]
247
- },
248
- "DeleteHealthCheck":{
249
- "name":"DeleteHealthCheck",
250
- "http":{
251
- "method":"DELETE",
252
- "requestUri":"/2013-04-01/healthcheck/{HealthCheckId}"
253
- },
254
- "input":{"shape":"DeleteHealthCheckRequest"},
255
- "output":{"shape":"DeleteHealthCheckResponse"},
256
- "errors":[
257
- {"shape":"NoSuchHealthCheck"},
258
- {"shape":"HealthCheckInUse"},
259
- {"shape":"InvalidInput"}
260
- ]
261
- },
262
- "DeleteHostedZone":{
263
- "name":"DeleteHostedZone",
264
- "http":{
265
- "method":"DELETE",
266
- "requestUri":"/2013-04-01/hostedzone/{Id}"
267
- },
268
- "input":{"shape":"DeleteHostedZoneRequest"},
269
- "output":{"shape":"DeleteHostedZoneResponse"},
270
- "errors":[
271
- {"shape":"NoSuchHostedZone"},
272
- {"shape":"HostedZoneNotEmpty"},
273
- {"shape":"PriorRequestNotComplete"},
274
- {"shape":"InvalidInput"},
275
- {"shape":"InvalidDomainName"}
276
- ]
277
- },
278
- "DeleteQueryLoggingConfig":{
279
- "name":"DeleteQueryLoggingConfig",
280
- "http":{
281
- "method":"DELETE",
282
- "requestUri":"/2013-04-01/queryloggingconfig/{Id}"
283
- },
284
- "input":{"shape":"DeleteQueryLoggingConfigRequest"},
285
- "output":{"shape":"DeleteQueryLoggingConfigResponse"},
286
- "errors":[
287
- {"shape":"ConcurrentModification"},
288
- {"shape":"NoSuchQueryLoggingConfig"},
289
- {"shape":"InvalidInput"}
290
- ]
291
- },
292
- "DeleteReusableDelegationSet":{
293
- "name":"DeleteReusableDelegationSet",
294
- "http":{
295
- "method":"DELETE",
296
- "requestUri":"/2013-04-01/delegationset/{Id}"
297
- },
298
- "input":{"shape":"DeleteReusableDelegationSetRequest"},
299
- "output":{"shape":"DeleteReusableDelegationSetResponse"},
300
- "errors":[
301
- {"shape":"NoSuchDelegationSet"},
302
- {"shape":"DelegationSetInUse"},
303
- {"shape":"DelegationSetNotReusable"},
304
- {"shape":"InvalidInput"}
305
- ]
306
- },
307
- "DeleteTrafficPolicy":{
308
- "name":"DeleteTrafficPolicy",
309
- "http":{
310
- "method":"DELETE",
311
- "requestUri":"/2013-04-01/trafficpolicy/{Id}/{Version}"
312
- },
313
- "input":{"shape":"DeleteTrafficPolicyRequest"},
314
- "output":{"shape":"DeleteTrafficPolicyResponse"},
315
- "errors":[
316
- {"shape":"NoSuchTrafficPolicy"},
317
- {"shape":"InvalidInput"},
318
- {"shape":"TrafficPolicyInUse"},
319
- {"shape":"ConcurrentModification"}
320
- ]
321
- },
322
- "DeleteTrafficPolicyInstance":{
323
- "name":"DeleteTrafficPolicyInstance",
324
- "http":{
325
- "method":"DELETE",
326
- "requestUri":"/2013-04-01/trafficpolicyinstance/{Id}"
327
- },
328
- "input":{"shape":"DeleteTrafficPolicyInstanceRequest"},
329
- "output":{"shape":"DeleteTrafficPolicyInstanceResponse"},
330
- "errors":[
331
- {"shape":"NoSuchTrafficPolicyInstance"},
332
- {"shape":"InvalidInput"},
333
- {"shape":"PriorRequestNotComplete"}
334
- ]
335
- },
336
- "DeleteVPCAssociationAuthorization":{
337
- "name":"DeleteVPCAssociationAuthorization",
338
- "http":{
339
- "method":"POST",
340
- "requestUri":"/2013-04-01/hostedzone/{Id}/deauthorizevpcassociation"
341
- },
342
- "input":{
343
- "shape":"DeleteVPCAssociationAuthorizationRequest",
344
- "locationName":"DeleteVPCAssociationAuthorizationRequest",
345
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
346
- },
347
- "output":{"shape":"DeleteVPCAssociationAuthorizationResponse"},
348
- "errors":[
349
- {"shape":"ConcurrentModification"},
350
- {"shape":"VPCAssociationAuthorizationNotFound"},
351
- {"shape":"NoSuchHostedZone"},
352
- {"shape":"InvalidVPCId"},
353
- {"shape":"InvalidInput"}
354
- ]
355
- },
356
- "DisassociateVPCFromHostedZone":{
357
- "name":"DisassociateVPCFromHostedZone",
358
- "http":{
359
- "method":"POST",
360
- "requestUri":"/2013-04-01/hostedzone/{Id}/disassociatevpc"
361
- },
362
- "input":{
363
- "shape":"DisassociateVPCFromHostedZoneRequest",
364
- "locationName":"DisassociateVPCFromHostedZoneRequest",
365
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
366
- },
367
- "output":{"shape":"DisassociateVPCFromHostedZoneResponse"},
368
- "errors":[
369
- {"shape":"NoSuchHostedZone"},
370
- {"shape":"InvalidVPCId"},
371
- {"shape":"VPCAssociationNotFound"},
372
- {"shape":"LastVPCAssociation"},
373
- {"shape":"InvalidInput"}
374
- ]
375
- },
376
- "GetAccountLimit":{
377
- "name":"GetAccountLimit",
378
- "http":{
379
- "method":"GET",
380
- "requestUri":"/2013-04-01/accountlimit/{Type}"
381
- },
382
- "input":{"shape":"GetAccountLimitRequest"},
383
- "output":{"shape":"GetAccountLimitResponse"},
384
- "errors":[
385
- {"shape":"InvalidInput"}
386
- ]
387
- },
388
- "GetChange":{
389
- "name":"GetChange",
390
- "http":{
391
- "method":"GET",
392
- "requestUri":"/2013-04-01/change/{Id}"
393
- },
394
- "input":{"shape":"GetChangeRequest"},
395
- "output":{"shape":"GetChangeResponse"},
396
- "errors":[
397
- {"shape":"NoSuchChange"},
398
- {"shape":"InvalidInput"}
399
- ]
400
- },
401
- "GetCheckerIpRanges":{
402
- "name":"GetCheckerIpRanges",
403
- "http":{
404
- "method":"GET",
405
- "requestUri":"/2013-04-01/checkeripranges"
406
- },
407
- "input":{"shape":"GetCheckerIpRangesRequest"},
408
- "output":{"shape":"GetCheckerIpRangesResponse"}
409
- },
410
- "GetGeoLocation":{
411
- "name":"GetGeoLocation",
412
- "http":{
413
- "method":"GET",
414
- "requestUri":"/2013-04-01/geolocation"
415
- },
416
- "input":{"shape":"GetGeoLocationRequest"},
417
- "output":{"shape":"GetGeoLocationResponse"},
418
- "errors":[
419
- {"shape":"NoSuchGeoLocation"},
420
- {"shape":"InvalidInput"}
421
- ]
422
- },
423
- "GetHealthCheck":{
424
- "name":"GetHealthCheck",
425
- "http":{
426
- "method":"GET",
427
- "requestUri":"/2013-04-01/healthcheck/{HealthCheckId}"
428
- },
429
- "input":{"shape":"GetHealthCheckRequest"},
430
- "output":{"shape":"GetHealthCheckResponse"},
431
- "errors":[
432
- {"shape":"NoSuchHealthCheck"},
433
- {"shape":"InvalidInput"},
434
- {"shape":"IncompatibleVersion"}
435
- ]
436
- },
437
- "GetHealthCheckCount":{
438
- "name":"GetHealthCheckCount",
439
- "http":{
440
- "method":"GET",
441
- "requestUri":"/2013-04-01/healthcheckcount"
442
- },
443
- "input":{"shape":"GetHealthCheckCountRequest"},
444
- "output":{"shape":"GetHealthCheckCountResponse"}
445
- },
446
- "GetHealthCheckLastFailureReason":{
447
- "name":"GetHealthCheckLastFailureReason",
448
- "http":{
449
- "method":"GET",
450
- "requestUri":"/2013-04-01/healthcheck/{HealthCheckId}/lastfailurereason"
451
- },
452
- "input":{"shape":"GetHealthCheckLastFailureReasonRequest"},
453
- "output":{"shape":"GetHealthCheckLastFailureReasonResponse"},
454
- "errors":[
455
- {"shape":"NoSuchHealthCheck"},
456
- {"shape":"InvalidInput"}
457
- ]
458
- },
459
- "GetHealthCheckStatus":{
460
- "name":"GetHealthCheckStatus",
461
- "http":{
462
- "method":"GET",
463
- "requestUri":"/2013-04-01/healthcheck/{HealthCheckId}/status"
464
- },
465
- "input":{"shape":"GetHealthCheckStatusRequest"},
466
- "output":{"shape":"GetHealthCheckStatusResponse"},
467
- "errors":[
468
- {"shape":"NoSuchHealthCheck"},
469
- {"shape":"InvalidInput"}
470
- ]
471
- },
472
- "GetHostedZone":{
473
- "name":"GetHostedZone",
474
- "http":{
475
- "method":"GET",
476
- "requestUri":"/2013-04-01/hostedzone/{Id}"
477
- },
478
- "input":{"shape":"GetHostedZoneRequest"},
479
- "output":{"shape":"GetHostedZoneResponse"},
480
- "errors":[
481
- {"shape":"NoSuchHostedZone"},
482
- {"shape":"InvalidInput"}
483
- ]
484
- },
485
- "GetHostedZoneCount":{
486
- "name":"GetHostedZoneCount",
487
- "http":{
488
- "method":"GET",
489
- "requestUri":"/2013-04-01/hostedzonecount"
490
- },
491
- "input":{"shape":"GetHostedZoneCountRequest"},
492
- "output":{"shape":"GetHostedZoneCountResponse"},
493
- "errors":[
494
- {"shape":"InvalidInput"}
495
- ]
496
- },
497
- "GetHostedZoneLimit":{
498
- "name":"GetHostedZoneLimit",
499
- "http":{
500
- "method":"GET",
501
- "requestUri":"/2013-04-01/hostedzonelimit/{Id}/{Type}"
502
- },
503
- "input":{"shape":"GetHostedZoneLimitRequest"},
504
- "output":{"shape":"GetHostedZoneLimitResponse"},
505
- "errors":[
506
- {"shape":"NoSuchHostedZone"},
507
- {"shape":"InvalidInput"},
508
- {"shape":"HostedZoneNotPrivate"}
509
- ]
510
- },
511
- "GetQueryLoggingConfig":{
512
- "name":"GetQueryLoggingConfig",
513
- "http":{
514
- "method":"GET",
515
- "requestUri":"/2013-04-01/queryloggingconfig/{Id}"
516
- },
517
- "input":{"shape":"GetQueryLoggingConfigRequest"},
518
- "output":{"shape":"GetQueryLoggingConfigResponse"},
519
- "errors":[
520
- {"shape":"NoSuchQueryLoggingConfig"},
521
- {"shape":"InvalidInput"}
522
- ]
523
- },
524
- "GetReusableDelegationSet":{
525
- "name":"GetReusableDelegationSet",
526
- "http":{
527
- "method":"GET",
528
- "requestUri":"/2013-04-01/delegationset/{Id}"
529
- },
530
- "input":{"shape":"GetReusableDelegationSetRequest"},
531
- "output":{"shape":"GetReusableDelegationSetResponse"},
532
- "errors":[
533
- {"shape":"NoSuchDelegationSet"},
534
- {"shape":"DelegationSetNotReusable"},
535
- {"shape":"InvalidInput"}
536
- ]
537
- },
538
- "GetReusableDelegationSetLimit":{
539
- "name":"GetReusableDelegationSetLimit",
540
- "http":{
541
- "method":"GET",
542
- "requestUri":"/2013-04-01/reusabledelegationsetlimit/{Id}/{Type}"
543
- },
544
- "input":{"shape":"GetReusableDelegationSetLimitRequest"},
545
- "output":{"shape":"GetReusableDelegationSetLimitResponse"},
546
- "errors":[
547
- {"shape":"InvalidInput"},
548
- {"shape":"NoSuchDelegationSet"}
549
- ]
550
- },
551
- "GetTrafficPolicy":{
552
- "name":"GetTrafficPolicy",
553
- "http":{
554
- "method":"GET",
555
- "requestUri":"/2013-04-01/trafficpolicy/{Id}/{Version}"
556
- },
557
- "input":{"shape":"GetTrafficPolicyRequest"},
558
- "output":{"shape":"GetTrafficPolicyResponse"},
559
- "errors":[
560
- {"shape":"NoSuchTrafficPolicy"},
561
- {"shape":"InvalidInput"}
562
- ]
563
- },
564
- "GetTrafficPolicyInstance":{
565
- "name":"GetTrafficPolicyInstance",
566
- "http":{
567
- "method":"GET",
568
- "requestUri":"/2013-04-01/trafficpolicyinstance/{Id}"
569
- },
570
- "input":{"shape":"GetTrafficPolicyInstanceRequest"},
571
- "output":{"shape":"GetTrafficPolicyInstanceResponse"},
572
- "errors":[
573
- {"shape":"NoSuchTrafficPolicyInstance"},
574
- {"shape":"InvalidInput"}
575
- ]
576
- },
577
- "GetTrafficPolicyInstanceCount":{
578
- "name":"GetTrafficPolicyInstanceCount",
579
- "http":{
580
- "method":"GET",
581
- "requestUri":"/2013-04-01/trafficpolicyinstancecount"
582
- },
583
- "input":{"shape":"GetTrafficPolicyInstanceCountRequest"},
584
- "output":{"shape":"GetTrafficPolicyInstanceCountResponse"}
585
- },
586
- "ListGeoLocations":{
587
- "name":"ListGeoLocations",
588
- "http":{
589
- "method":"GET",
590
- "requestUri":"/2013-04-01/geolocations"
591
- },
592
- "input":{"shape":"ListGeoLocationsRequest"},
593
- "output":{"shape":"ListGeoLocationsResponse"},
594
- "errors":[
595
- {"shape":"InvalidInput"}
596
- ]
597
- },
598
- "ListHealthChecks":{
599
- "name":"ListHealthChecks",
600
- "http":{
601
- "method":"GET",
602
- "requestUri":"/2013-04-01/healthcheck"
603
- },
604
- "input":{"shape":"ListHealthChecksRequest"},
605
- "output":{"shape":"ListHealthChecksResponse"},
606
- "errors":[
607
- {"shape":"InvalidInput"},
608
- {"shape":"IncompatibleVersion"}
609
- ]
610
- },
611
- "ListHostedZones":{
612
- "name":"ListHostedZones",
613
- "http":{
614
- "method":"GET",
615
- "requestUri":"/2013-04-01/hostedzone"
616
- },
617
- "input":{"shape":"ListHostedZonesRequest"},
618
- "output":{"shape":"ListHostedZonesResponse"},
619
- "errors":[
620
- {"shape":"InvalidInput"},
621
- {"shape":"NoSuchDelegationSet"},
622
- {"shape":"DelegationSetNotReusable"}
623
- ]
624
- },
625
- "ListHostedZonesByName":{
626
- "name":"ListHostedZonesByName",
627
- "http":{
628
- "method":"GET",
629
- "requestUri":"/2013-04-01/hostedzonesbyname"
630
- },
631
- "input":{"shape":"ListHostedZonesByNameRequest"},
632
- "output":{"shape":"ListHostedZonesByNameResponse"},
633
- "errors":[
634
- {"shape":"InvalidInput"},
635
- {"shape":"InvalidDomainName"}
636
- ]
637
- },
638
- "ListQueryLoggingConfigs":{
639
- "name":"ListQueryLoggingConfigs",
640
- "http":{
641
- "method":"GET",
642
- "requestUri":"/2013-04-01/queryloggingconfig"
643
- },
644
- "input":{"shape":"ListQueryLoggingConfigsRequest"},
645
- "output":{"shape":"ListQueryLoggingConfigsResponse"},
646
- "errors":[
647
- {"shape":"InvalidInput"},
648
- {"shape":"InvalidPaginationToken"},
649
- {"shape":"NoSuchHostedZone"}
650
- ]
651
- },
652
- "ListResourceRecordSets":{
653
- "name":"ListResourceRecordSets",
654
- "http":{
655
- "method":"GET",
656
- "requestUri":"/2013-04-01/hostedzone/{Id}/rrset"
657
- },
658
- "input":{"shape":"ListResourceRecordSetsRequest"},
659
- "output":{"shape":"ListResourceRecordSetsResponse"},
660
- "errors":[
661
- {"shape":"NoSuchHostedZone"},
662
- {"shape":"InvalidInput"}
663
- ]
664
- },
665
- "ListReusableDelegationSets":{
666
- "name":"ListReusableDelegationSets",
667
- "http":{
668
- "method":"GET",
669
- "requestUri":"/2013-04-01/delegationset"
670
- },
671
- "input":{"shape":"ListReusableDelegationSetsRequest"},
672
- "output":{"shape":"ListReusableDelegationSetsResponse"},
673
- "errors":[
674
- {"shape":"InvalidInput"}
675
- ]
676
- },
677
- "ListTagsForResource":{
678
- "name":"ListTagsForResource",
679
- "http":{
680
- "method":"GET",
681
- "requestUri":"/2013-04-01/tags/{ResourceType}/{ResourceId}"
682
- },
683
- "input":{"shape":"ListTagsForResourceRequest"},
684
- "output":{"shape":"ListTagsForResourceResponse"},
685
- "errors":[
686
- {"shape":"InvalidInput"},
687
- {"shape":"NoSuchHealthCheck"},
688
- {"shape":"NoSuchHostedZone"},
689
- {"shape":"PriorRequestNotComplete"},
690
- {"shape":"ThrottlingException"}
691
- ]
692
- },
693
- "ListTagsForResources":{
694
- "name":"ListTagsForResources",
695
- "http":{
696
- "method":"POST",
697
- "requestUri":"/2013-04-01/tags/{ResourceType}"
698
- },
699
- "input":{
700
- "shape":"ListTagsForResourcesRequest",
701
- "locationName":"ListTagsForResourcesRequest",
702
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
703
- },
704
- "output":{"shape":"ListTagsForResourcesResponse"},
705
- "errors":[
706
- {"shape":"InvalidInput"},
707
- {"shape":"NoSuchHealthCheck"},
708
- {"shape":"NoSuchHostedZone"},
709
- {"shape":"PriorRequestNotComplete"},
710
- {"shape":"ThrottlingException"}
711
- ]
712
- },
713
- "ListTrafficPolicies":{
714
- "name":"ListTrafficPolicies",
715
- "http":{
716
- "method":"GET",
717
- "requestUri":"/2013-04-01/trafficpolicies"
718
- },
719
- "input":{"shape":"ListTrafficPoliciesRequest"},
720
- "output":{"shape":"ListTrafficPoliciesResponse"},
721
- "errors":[
722
- {"shape":"InvalidInput"}
723
- ]
724
- },
725
- "ListTrafficPolicyInstances":{
726
- "name":"ListTrafficPolicyInstances",
727
- "http":{
728
- "method":"GET",
729
- "requestUri":"/2013-04-01/trafficpolicyinstances"
730
- },
731
- "input":{"shape":"ListTrafficPolicyInstancesRequest"},
732
- "output":{"shape":"ListTrafficPolicyInstancesResponse"},
733
- "errors":[
734
- {"shape":"InvalidInput"},
735
- {"shape":"NoSuchTrafficPolicyInstance"}
736
- ]
737
- },
738
- "ListTrafficPolicyInstancesByHostedZone":{
739
- "name":"ListTrafficPolicyInstancesByHostedZone",
740
- "http":{
741
- "method":"GET",
742
- "requestUri":"/2013-04-01/trafficpolicyinstances/hostedzone"
743
- },
744
- "input":{"shape":"ListTrafficPolicyInstancesByHostedZoneRequest"},
745
- "output":{"shape":"ListTrafficPolicyInstancesByHostedZoneResponse"},
746
- "errors":[
747
- {"shape":"InvalidInput"},
748
- {"shape":"NoSuchTrafficPolicyInstance"},
749
- {"shape":"NoSuchHostedZone"}
750
- ]
751
- },
752
- "ListTrafficPolicyInstancesByPolicy":{
753
- "name":"ListTrafficPolicyInstancesByPolicy",
754
- "http":{
755
- "method":"GET",
756
- "requestUri":"/2013-04-01/trafficpolicyinstances/trafficpolicy"
757
- },
758
- "input":{"shape":"ListTrafficPolicyInstancesByPolicyRequest"},
759
- "output":{"shape":"ListTrafficPolicyInstancesByPolicyResponse"},
760
- "errors":[
761
- {"shape":"InvalidInput"},
762
- {"shape":"NoSuchTrafficPolicyInstance"},
763
- {"shape":"NoSuchTrafficPolicy"}
764
- ]
765
- },
766
- "ListTrafficPolicyVersions":{
767
- "name":"ListTrafficPolicyVersions",
768
- "http":{
769
- "method":"GET",
770
- "requestUri":"/2013-04-01/trafficpolicies/{Id}/versions"
771
- },
772
- "input":{"shape":"ListTrafficPolicyVersionsRequest"},
773
- "output":{"shape":"ListTrafficPolicyVersionsResponse"},
774
- "errors":[
775
- {"shape":"InvalidInput"},
776
- {"shape":"NoSuchTrafficPolicy"}
777
- ]
778
- },
779
- "ListVPCAssociationAuthorizations":{
780
- "name":"ListVPCAssociationAuthorizations",
781
- "http":{
782
- "method":"GET",
783
- "requestUri":"/2013-04-01/hostedzone/{Id}/authorizevpcassociation"
784
- },
785
- "input":{"shape":"ListVPCAssociationAuthorizationsRequest"},
786
- "output":{"shape":"ListVPCAssociationAuthorizationsResponse"},
787
- "errors":[
788
- {"shape":"NoSuchHostedZone"},
789
- {"shape":"InvalidInput"},
790
- {"shape":"InvalidPaginationToken"}
791
- ]
792
- },
793
- "TestDNSAnswer":{
794
- "name":"TestDNSAnswer",
795
- "http":{
796
- "method":"GET",
797
- "requestUri":"/2013-04-01/testdnsanswer"
798
- },
799
- "input":{"shape":"TestDNSAnswerRequest"},
800
- "output":{"shape":"TestDNSAnswerResponse"},
801
- "errors":[
802
- {"shape":"NoSuchHostedZone"},
803
- {"shape":"InvalidInput"}
804
- ]
805
- },
806
- "UpdateHealthCheck":{
807
- "name":"UpdateHealthCheck",
808
- "http":{
809
- "method":"POST",
810
- "requestUri":"/2013-04-01/healthcheck/{HealthCheckId}"
811
- },
812
- "input":{
813
- "shape":"UpdateHealthCheckRequest",
814
- "locationName":"UpdateHealthCheckRequest",
815
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
816
- },
817
- "output":{"shape":"UpdateHealthCheckResponse"},
818
- "errors":[
819
- {"shape":"NoSuchHealthCheck"},
820
- {"shape":"InvalidInput"},
821
- {"shape":"HealthCheckVersionMismatch"}
822
- ]
823
- },
824
- "UpdateHostedZoneComment":{
825
- "name":"UpdateHostedZoneComment",
826
- "http":{
827
- "method":"POST",
828
- "requestUri":"/2013-04-01/hostedzone/{Id}"
829
- },
830
- "input":{
831
- "shape":"UpdateHostedZoneCommentRequest",
832
- "locationName":"UpdateHostedZoneCommentRequest",
833
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
834
- },
835
- "output":{"shape":"UpdateHostedZoneCommentResponse"},
836
- "errors":[
837
- {"shape":"NoSuchHostedZone"},
838
- {"shape":"InvalidInput"}
839
- ]
840
- },
841
- "UpdateTrafficPolicyComment":{
842
- "name":"UpdateTrafficPolicyComment",
843
- "http":{
844
- "method":"POST",
845
- "requestUri":"/2013-04-01/trafficpolicy/{Id}/{Version}"
846
- },
847
- "input":{
848
- "shape":"UpdateTrafficPolicyCommentRequest",
849
- "locationName":"UpdateTrafficPolicyCommentRequest",
850
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
851
- },
852
- "output":{"shape":"UpdateTrafficPolicyCommentResponse"},
853
- "errors":[
854
- {"shape":"InvalidInput"},
855
- {"shape":"NoSuchTrafficPolicy"},
856
- {"shape":"ConcurrentModification"}
857
- ]
858
- },
859
- "UpdateTrafficPolicyInstance":{
860
- "name":"UpdateTrafficPolicyInstance",
861
- "http":{
862
- "method":"POST",
863
- "requestUri":"/2013-04-01/trafficpolicyinstance/{Id}"
864
- },
865
- "input":{
866
- "shape":"UpdateTrafficPolicyInstanceRequest",
867
- "locationName":"UpdateTrafficPolicyInstanceRequest",
868
- "xmlNamespace":{"uri":"https://route53.amazonaws.com/doc/2013-04-01/"}
869
- },
870
- "output":{"shape":"UpdateTrafficPolicyInstanceResponse"},
871
- "errors":[
872
- {"shape":"InvalidInput"},
873
- {"shape":"NoSuchTrafficPolicy"},
874
- {"shape":"NoSuchTrafficPolicyInstance"},
875
- {"shape":"PriorRequestNotComplete"},
876
- {"shape":"ConflictingTypes"}
877
- ]
878
- }
879
- },
880
- "shapes":{
881
- "AccountLimit":{
882
- "type":"structure",
883
- "required":[
884
- "Type",
885
- "Value"
886
- ],
887
- "members":{
888
- "Type":{"shape":"AccountLimitType"},
889
- "Value":{"shape":"LimitValue"}
890
- }
891
- },
892
- "AccountLimitType":{
893
- "type":"string",
894
- "enum":[
895
- "MAX_HEALTH_CHECKS_BY_OWNER",
896
- "MAX_HOSTED_ZONES_BY_OWNER",
897
- "MAX_TRAFFIC_POLICY_INSTANCES_BY_OWNER",
898
- "MAX_REUSABLE_DELEGATION_SETS_BY_OWNER",
899
- "MAX_TRAFFIC_POLICIES_BY_OWNER"
900
- ]
901
- },
902
- "AlarmIdentifier":{
903
- "type":"structure",
904
- "required":[
905
- "Region",
906
- "Name"
907
- ],
908
- "members":{
909
- "Region":{"shape":"CloudWatchRegion"},
910
- "Name":{"shape":"AlarmName"}
911
- }
912
- },
913
- "AlarmName":{
914
- "type":"string",
915
- "max":256,
916
- "min":1
917
- },
918
- "AliasHealthEnabled":{"type":"boolean"},
919
- "AliasTarget":{
920
- "type":"structure",
921
- "required":[
922
- "HostedZoneId",
923
- "DNSName",
924
- "EvaluateTargetHealth"
925
- ],
926
- "members":{
927
- "HostedZoneId":{"shape":"ResourceId"},
928
- "DNSName":{"shape":"DNSName"},
929
- "EvaluateTargetHealth":{"shape":"AliasHealthEnabled"}
930
- }
931
- },
932
- "AssociateVPCComment":{"type":"string"},
933
- "AssociateVPCWithHostedZoneRequest":{
934
- "type":"structure",
935
- "required":[
936
- "HostedZoneId",
937
- "VPC"
938
- ],
939
- "members":{
940
- "HostedZoneId":{
941
- "shape":"ResourceId",
942
- "location":"uri",
943
- "locationName":"Id"
944
- },
945
- "VPC":{"shape":"VPC"},
946
- "Comment":{"shape":"AssociateVPCComment"}
947
- }
948
- },
949
- "AssociateVPCWithHostedZoneResponse":{
950
- "type":"structure",
951
- "required":["ChangeInfo"],
952
- "members":{
953
- "ChangeInfo":{"shape":"ChangeInfo"}
954
- }
955
- },
956
- "Change":{
957
- "type":"structure",
958
- "required":[
959
- "Action",
960
- "ResourceRecordSet"
961
- ],
962
- "members":{
963
- "Action":{"shape":"ChangeAction"},
964
- "ResourceRecordSet":{"shape":"ResourceRecordSet"}
965
- }
966
- },
967
- "ChangeAction":{
968
- "type":"string",
969
- "enum":[
970
- "CREATE",
971
- "DELETE",
972
- "UPSERT"
973
- ]
974
- },
975
- "ChangeBatch":{
976
- "type":"structure",
977
- "required":["Changes"],
978
- "members":{
979
- "Comment":{"shape":"ResourceDescription"},
980
- "Changes":{"shape":"Changes"}
981
- }
982
- },
983
- "ChangeInfo":{
984
- "type":"structure",
985
- "required":[
986
- "Id",
987
- "Status",
988
- "SubmittedAt"
989
- ],
990
- "members":{
991
- "Id":{"shape":"ResourceId"},
992
- "Status":{"shape":"ChangeStatus"},
993
- "SubmittedAt":{"shape":"TimeStamp"},
994
- "Comment":{"shape":"ResourceDescription"}
995
- }
996
- },
997
- "ChangeResourceRecordSetsRequest":{
998
- "type":"structure",
999
- "required":[
1000
- "HostedZoneId",
1001
- "ChangeBatch"
1002
- ],
1003
- "members":{
1004
- "HostedZoneId":{
1005
- "shape":"ResourceId",
1006
- "location":"uri",
1007
- "locationName":"Id"
1008
- },
1009
- "ChangeBatch":{"shape":"ChangeBatch"}
1010
- }
1011
- },
1012
- "ChangeResourceRecordSetsResponse":{
1013
- "type":"structure",
1014
- "required":["ChangeInfo"],
1015
- "members":{
1016
- "ChangeInfo":{"shape":"ChangeInfo"}
1017
- }
1018
- },
1019
- "ChangeStatus":{
1020
- "type":"string",
1021
- "enum":[
1022
- "PENDING",
1023
- "INSYNC"
1024
- ]
1025
- },
1026
- "ChangeTagsForResourceRequest":{
1027
- "type":"structure",
1028
- "required":[
1029
- "ResourceType",
1030
- "ResourceId"
1031
- ],
1032
- "members":{
1033
- "ResourceType":{
1034
- "shape":"TagResourceType",
1035
- "location":"uri",
1036
- "locationName":"ResourceType"
1037
- },
1038
- "ResourceId":{
1039
- "shape":"TagResourceId",
1040
- "location":"uri",
1041
- "locationName":"ResourceId"
1042
- },
1043
- "AddTags":{"shape":"TagList"},
1044
- "RemoveTagKeys":{"shape":"TagKeyList"}
1045
- }
1046
- },
1047
- "ChangeTagsForResourceResponse":{
1048
- "type":"structure",
1049
- "members":{
1050
- }
1051
- },
1052
- "Changes":{
1053
- "type":"list",
1054
- "member":{
1055
- "shape":"Change",
1056
- "locationName":"Change"
1057
- },
1058
- "min":1
1059
- },
1060
- "CheckerIpRanges":{
1061
- "type":"list",
1062
- "member":{"shape":"IPAddressCidr"}
1063
- },
1064
- "ChildHealthCheckList":{
1065
- "type":"list",
1066
- "member":{
1067
- "shape":"HealthCheckId",
1068
- "locationName":"ChildHealthCheck"
1069
- },
1070
- "max":256
1071
- },
1072
- "CloudWatchAlarmConfiguration":{
1073
- "type":"structure",
1074
- "required":[
1075
- "EvaluationPeriods",
1076
- "Threshold",
1077
- "ComparisonOperator",
1078
- "Period",
1079
- "MetricName",
1080
- "Namespace",
1081
- "Statistic"
1082
- ],
1083
- "members":{
1084
- "EvaluationPeriods":{"shape":"EvaluationPeriods"},
1085
- "Threshold":{"shape":"Threshold"},
1086
- "ComparisonOperator":{"shape":"ComparisonOperator"},
1087
- "Period":{"shape":"Period"},
1088
- "MetricName":{"shape":"MetricName"},
1089
- "Namespace":{"shape":"Namespace"},
1090
- "Statistic":{"shape":"Statistic"},
1091
- "Dimensions":{"shape":"DimensionList"}
1092
- }
1093
- },
1094
- "CloudWatchLogsLogGroupArn":{"type":"string"},
1095
- "CloudWatchRegion":{
1096
- "type":"string",
1097
- "enum":[
1098
- "us-east-1",
1099
- "us-east-2",
1100
- "us-west-1",
1101
- "us-west-2",
1102
- "ca-central-1",
1103
- "eu-central-1",
1104
- "eu-west-1",
1105
- "eu-west-2",
1106
- "eu-west-3",
1107
- "ap-south-1",
1108
- "ap-southeast-1",
1109
- "ap-southeast-2",
1110
- "ap-northeast-1",
1111
- "ap-northeast-2",
1112
- "ap-northeast-3",
1113
- "eu-north-1",
1114
- "sa-east-1"
1115
- ],
1116
- "max":64,
1117
- "min":1
1118
- },
1119
- "ComparisonOperator":{
1120
- "type":"string",
1121
- "enum":[
1122
- "GreaterThanOrEqualToThreshold",
1123
- "GreaterThanThreshold",
1124
- "LessThanThreshold",
1125
- "LessThanOrEqualToThreshold"
1126
- ]
1127
- },
1128
- "ConcurrentModification":{
1129
- "type":"structure",
1130
- "members":{
1131
- "message":{"shape":"ErrorMessage"}
1132
- },
1133
- "error":{"httpStatusCode":400},
1134
- "exception":true
1135
- },
1136
- "ConflictingDomainExists":{
1137
- "type":"structure",
1138
- "members":{
1139
- "message":{"shape":"ErrorMessage"}
1140
- },
1141
- "exception":true
1142
- },
1143
- "ConflictingTypes":{
1144
- "type":"structure",
1145
- "members":{
1146
- "message":{"shape":"ErrorMessage"}
1147
- },
1148
- "error":{"httpStatusCode":400},
1149
- "exception":true
1150
- },
1151
- "CreateHealthCheckRequest":{
1152
- "type":"structure",
1153
- "required":[
1154
- "CallerReference",
1155
- "HealthCheckConfig"
1156
- ],
1157
- "members":{
1158
- "CallerReference":{"shape":"HealthCheckNonce"},
1159
- "HealthCheckConfig":{"shape":"HealthCheckConfig"}
1160
- }
1161
- },
1162
- "CreateHealthCheckResponse":{
1163
- "type":"structure",
1164
- "required":[
1165
- "HealthCheck",
1166
- "Location"
1167
- ],
1168
- "members":{
1169
- "HealthCheck":{"shape":"HealthCheck"},
1170
- "Location":{
1171
- "shape":"ResourceURI",
1172
- "location":"header",
1173
- "locationName":"Location"
1174
- }
1175
- }
1176
- },
1177
- "CreateHostedZoneRequest":{
1178
- "type":"structure",
1179
- "required":[
1180
- "Name",
1181
- "CallerReference"
1182
- ],
1183
- "members":{
1184
- "Name":{"shape":"DNSName"},
1185
- "VPC":{"shape":"VPC"},
1186
- "CallerReference":{"shape":"Nonce"},
1187
- "HostedZoneConfig":{"shape":"HostedZoneConfig"},
1188
- "DelegationSetId":{"shape":"ResourceId"}
1189
- }
1190
- },
1191
- "CreateHostedZoneResponse":{
1192
- "type":"structure",
1193
- "required":[
1194
- "HostedZone",
1195
- "ChangeInfo",
1196
- "DelegationSet",
1197
- "Location"
1198
- ],
1199
- "members":{
1200
- "HostedZone":{"shape":"HostedZone"},
1201
- "ChangeInfo":{"shape":"ChangeInfo"},
1202
- "DelegationSet":{"shape":"DelegationSet"},
1203
- "VPC":{"shape":"VPC"},
1204
- "Location":{
1205
- "shape":"ResourceURI",
1206
- "location":"header",
1207
- "locationName":"Location"
1208
- }
1209
- }
1210
- },
1211
- "CreateQueryLoggingConfigRequest":{
1212
- "type":"structure",
1213
- "required":[
1214
- "HostedZoneId",
1215
- "CloudWatchLogsLogGroupArn"
1216
- ],
1217
- "members":{
1218
- "HostedZoneId":{"shape":"ResourceId"},
1219
- "CloudWatchLogsLogGroupArn":{"shape":"CloudWatchLogsLogGroupArn"}
1220
- }
1221
- },
1222
- "CreateQueryLoggingConfigResponse":{
1223
- "type":"structure",
1224
- "required":[
1225
- "QueryLoggingConfig",
1226
- "Location"
1227
- ],
1228
- "members":{
1229
- "QueryLoggingConfig":{"shape":"QueryLoggingConfig"},
1230
- "Location":{
1231
- "shape":"ResourceURI",
1232
- "location":"header",
1233
- "locationName":"Location"
1234
- }
1235
- }
1236
- },
1237
- "CreateReusableDelegationSetRequest":{
1238
- "type":"structure",
1239
- "required":["CallerReference"],
1240
- "members":{
1241
- "CallerReference":{"shape":"Nonce"},
1242
- "HostedZoneId":{"shape":"ResourceId"}
1243
- }
1244
- },
1245
- "CreateReusableDelegationSetResponse":{
1246
- "type":"structure",
1247
- "required":[
1248
- "DelegationSet",
1249
- "Location"
1250
- ],
1251
- "members":{
1252
- "DelegationSet":{"shape":"DelegationSet"},
1253
- "Location":{
1254
- "shape":"ResourceURI",
1255
- "location":"header",
1256
- "locationName":"Location"
1257
- }
1258
- }
1259
- },
1260
- "CreateTrafficPolicyInstanceRequest":{
1261
- "type":"structure",
1262
- "required":[
1263
- "HostedZoneId",
1264
- "Name",
1265
- "TTL",
1266
- "TrafficPolicyId",
1267
- "TrafficPolicyVersion"
1268
- ],
1269
- "members":{
1270
- "HostedZoneId":{"shape":"ResourceId"},
1271
- "Name":{"shape":"DNSName"},
1272
- "TTL":{"shape":"TTL"},
1273
- "TrafficPolicyId":{"shape":"TrafficPolicyId"},
1274
- "TrafficPolicyVersion":{"shape":"TrafficPolicyVersion"}
1275
- }
1276
- },
1277
- "CreateTrafficPolicyInstanceResponse":{
1278
- "type":"structure",
1279
- "required":[
1280
- "TrafficPolicyInstance",
1281
- "Location"
1282
- ],
1283
- "members":{
1284
- "TrafficPolicyInstance":{"shape":"TrafficPolicyInstance"},
1285
- "Location":{
1286
- "shape":"ResourceURI",
1287
- "location":"header",
1288
- "locationName":"Location"
1289
- }
1290
- }
1291
- },
1292
- "CreateTrafficPolicyRequest":{
1293
- "type":"structure",
1294
- "required":[
1295
- "Name",
1296
- "Document"
1297
- ],
1298
- "members":{
1299
- "Name":{"shape":"TrafficPolicyName"},
1300
- "Document":{"shape":"TrafficPolicyDocument"},
1301
- "Comment":{"shape":"TrafficPolicyComment"}
1302
- }
1303
- },
1304
- "CreateTrafficPolicyResponse":{
1305
- "type":"structure",
1306
- "required":[
1307
- "TrafficPolicy",
1308
- "Location"
1309
- ],
1310
- "members":{
1311
- "TrafficPolicy":{"shape":"TrafficPolicy"},
1312
- "Location":{
1313
- "shape":"ResourceURI",
1314
- "location":"header",
1315
- "locationName":"Location"
1316
- }
1317
- }
1318
- },
1319
- "CreateTrafficPolicyVersionRequest":{
1320
- "type":"structure",
1321
- "required":[
1322
- "Id",
1323
- "Document"
1324
- ],
1325
- "members":{
1326
- "Id":{
1327
- "shape":"TrafficPolicyId",
1328
- "location":"uri",
1329
- "locationName":"Id"
1330
- },
1331
- "Document":{"shape":"TrafficPolicyDocument"},
1332
- "Comment":{"shape":"TrafficPolicyComment"}
1333
- }
1334
- },
1335
- "CreateTrafficPolicyVersionResponse":{
1336
- "type":"structure",
1337
- "required":[
1338
- "TrafficPolicy",
1339
- "Location"
1340
- ],
1341
- "members":{
1342
- "TrafficPolicy":{"shape":"TrafficPolicy"},
1343
- "Location":{
1344
- "shape":"ResourceURI",
1345
- "location":"header",
1346
- "locationName":"Location"
1347
- }
1348
- }
1349
- },
1350
- "CreateVPCAssociationAuthorizationRequest":{
1351
- "type":"structure",
1352
- "required":[
1353
- "HostedZoneId",
1354
- "VPC"
1355
- ],
1356
- "members":{
1357
- "HostedZoneId":{
1358
- "shape":"ResourceId",
1359
- "location":"uri",
1360
- "locationName":"Id"
1361
- },
1362
- "VPC":{"shape":"VPC"}
1363
- }
1364
- },
1365
- "CreateVPCAssociationAuthorizationResponse":{
1366
- "type":"structure",
1367
- "required":[
1368
- "HostedZoneId",
1369
- "VPC"
1370
- ],
1371
- "members":{
1372
- "HostedZoneId":{"shape":"ResourceId"},
1373
- "VPC":{"shape":"VPC"}
1374
- }
1375
- },
1376
- "DNSName":{
1377
- "type":"string",
1378
- "max":1024
1379
- },
1380
- "DNSRCode":{"type":"string"},
1381
- "DelegationSet":{
1382
- "type":"structure",
1383
- "required":["NameServers"],
1384
- "members":{
1385
- "Id":{"shape":"ResourceId"},
1386
- "CallerReference":{"shape":"Nonce"},
1387
- "NameServers":{"shape":"DelegationSetNameServers"}
1388
- }
1389
- },
1390
- "DelegationSetAlreadyCreated":{
1391
- "type":"structure",
1392
- "members":{
1393
- "message":{"shape":"ErrorMessage"}
1394
- },
1395
- "exception":true
1396
- },
1397
- "DelegationSetAlreadyReusable":{
1398
- "type":"structure",
1399
- "members":{
1400
- "message":{"shape":"ErrorMessage"}
1401
- },
1402
- "exception":true
1403
- },
1404
- "DelegationSetInUse":{
1405
- "type":"structure",
1406
- "members":{
1407
- "message":{"shape":"ErrorMessage"}
1408
- },
1409
- "exception":true
1410
- },
1411
- "DelegationSetNameServers":{
1412
- "type":"list",
1413
- "member":{
1414
- "shape":"DNSName",
1415
- "locationName":"NameServer"
1416
- },
1417
- "min":1
1418
- },
1419
- "DelegationSetNotAvailable":{
1420
- "type":"structure",
1421
- "members":{
1422
- "message":{"shape":"ErrorMessage"}
1423
- },
1424
- "exception":true
1425
- },
1426
- "DelegationSetNotReusable":{
1427
- "type":"structure",
1428
- "members":{
1429
- "message":{"shape":"ErrorMessage"}
1430
- },
1431
- "exception":true
1432
- },
1433
- "DelegationSets":{
1434
- "type":"list",
1435
- "member":{
1436
- "shape":"DelegationSet",
1437
- "locationName":"DelegationSet"
1438
- }
1439
- },
1440
- "DeleteHealthCheckRequest":{
1441
- "type":"structure",
1442
- "required":["HealthCheckId"],
1443
- "members":{
1444
- "HealthCheckId":{
1445
- "shape":"HealthCheckId",
1446
- "location":"uri",
1447
- "locationName":"HealthCheckId"
1448
- }
1449
- }
1450
- },
1451
- "DeleteHealthCheckResponse":{
1452
- "type":"structure",
1453
- "members":{
1454
- }
1455
- },
1456
- "DeleteHostedZoneRequest":{
1457
- "type":"structure",
1458
- "required":["Id"],
1459
- "members":{
1460
- "Id":{
1461
- "shape":"ResourceId",
1462
- "location":"uri",
1463
- "locationName":"Id"
1464
- }
1465
- }
1466
- },
1467
- "DeleteHostedZoneResponse":{
1468
- "type":"structure",
1469
- "required":["ChangeInfo"],
1470
- "members":{
1471
- "ChangeInfo":{"shape":"ChangeInfo"}
1472
- }
1473
- },
1474
- "DeleteQueryLoggingConfigRequest":{
1475
- "type":"structure",
1476
- "required":["Id"],
1477
- "members":{
1478
- "Id":{
1479
- "shape":"QueryLoggingConfigId",
1480
- "location":"uri",
1481
- "locationName":"Id"
1482
- }
1483
- }
1484
- },
1485
- "DeleteQueryLoggingConfigResponse":{
1486
- "type":"structure",
1487
- "members":{
1488
- }
1489
- },
1490
- "DeleteReusableDelegationSetRequest":{
1491
- "type":"structure",
1492
- "required":["Id"],
1493
- "members":{
1494
- "Id":{
1495
- "shape":"ResourceId",
1496
- "location":"uri",
1497
- "locationName":"Id"
1498
- }
1499
- }
1500
- },
1501
- "DeleteReusableDelegationSetResponse":{
1502
- "type":"structure",
1503
- "members":{
1504
- }
1505
- },
1506
- "DeleteTrafficPolicyInstanceRequest":{
1507
- "type":"structure",
1508
- "required":["Id"],
1509
- "members":{
1510
- "Id":{
1511
- "shape":"TrafficPolicyInstanceId",
1512
- "location":"uri",
1513
- "locationName":"Id"
1514
- }
1515
- }
1516
- },
1517
- "DeleteTrafficPolicyInstanceResponse":{
1518
- "type":"structure",
1519
- "members":{
1520
- }
1521
- },
1522
- "DeleteTrafficPolicyRequest":{
1523
- "type":"structure",
1524
- "required":[
1525
- "Id",
1526
- "Version"
1527
- ],
1528
- "members":{
1529
- "Id":{
1530
- "shape":"TrafficPolicyId",
1531
- "location":"uri",
1532
- "locationName":"Id"
1533
- },
1534
- "Version":{
1535
- "shape":"TrafficPolicyVersion",
1536
- "location":"uri",
1537
- "locationName":"Version"
1538
- }
1539
- }
1540
- },
1541
- "DeleteTrafficPolicyResponse":{
1542
- "type":"structure",
1543
- "members":{
1544
- }
1545
- },
1546
- "DeleteVPCAssociationAuthorizationRequest":{
1547
- "type":"structure",
1548
- "required":[
1549
- "HostedZoneId",
1550
- "VPC"
1551
- ],
1552
- "members":{
1553
- "HostedZoneId":{
1554
- "shape":"ResourceId",
1555
- "location":"uri",
1556
- "locationName":"Id"
1557
- },
1558
- "VPC":{"shape":"VPC"}
1559
- }
1560
- },
1561
- "DeleteVPCAssociationAuthorizationResponse":{
1562
- "type":"structure",
1563
- "members":{
1564
- }
1565
- },
1566
- "Dimension":{
1567
- "type":"structure",
1568
- "required":[
1569
- "Name",
1570
- "Value"
1571
- ],
1572
- "members":{
1573
- "Name":{"shape":"DimensionField"},
1574
- "Value":{"shape":"DimensionField"}
1575
- }
1576
- },
1577
- "DimensionField":{
1578
- "type":"string",
1579
- "max":255,
1580
- "min":1
1581
- },
1582
- "DimensionList":{
1583
- "type":"list",
1584
- "member":{
1585
- "shape":"Dimension",
1586
- "locationName":"Dimension"
1587
- },
1588
- "max":10
1589
- },
1590
- "Disabled":{"type":"boolean"},
1591
- "DisassociateVPCComment":{"type":"string"},
1592
- "DisassociateVPCFromHostedZoneRequest":{
1593
- "type":"structure",
1594
- "required":[
1595
- "HostedZoneId",
1596
- "VPC"
1597
- ],
1598
- "members":{
1599
- "HostedZoneId":{
1600
- "shape":"ResourceId",
1601
- "location":"uri",
1602
- "locationName":"Id"
1603
- },
1604
- "VPC":{"shape":"VPC"},
1605
- "Comment":{"shape":"DisassociateVPCComment"}
1606
- }
1607
- },
1608
- "DisassociateVPCFromHostedZoneResponse":{
1609
- "type":"structure",
1610
- "required":["ChangeInfo"],
1611
- "members":{
1612
- "ChangeInfo":{"shape":"ChangeInfo"}
1613
- }
1614
- },
1615
- "EnableSNI":{"type":"boolean"},
1616
- "ErrorMessage":{"type":"string"},
1617
- "ErrorMessages":{
1618
- "type":"list",
1619
- "member":{
1620
- "shape":"ErrorMessage",
1621
- "locationName":"Message"
1622
- }
1623
- },
1624
- "EvaluationPeriods":{
1625
- "type":"integer",
1626
- "min":1
1627
- },
1628
- "FailureThreshold":{
1629
- "type":"integer",
1630
- "max":10,
1631
- "min":1
1632
- },
1633
- "FullyQualifiedDomainName":{
1634
- "type":"string",
1635
- "max":255
1636
- },
1637
- "GeoLocation":{
1638
- "type":"structure",
1639
- "members":{
1640
- "ContinentCode":{"shape":"GeoLocationContinentCode"},
1641
- "CountryCode":{"shape":"GeoLocationCountryCode"},
1642
- "SubdivisionCode":{"shape":"GeoLocationSubdivisionCode"}
1643
- }
1644
- },
1645
- "GeoLocationContinentCode":{
1646
- "type":"string",
1647
- "max":2,
1648
- "min":2
1649
- },
1650
- "GeoLocationContinentName":{
1651
- "type":"string",
1652
- "max":32,
1653
- "min":1
1654
- },
1655
- "GeoLocationCountryCode":{
1656
- "type":"string",
1657
- "max":2,
1658
- "min":1
1659
- },
1660
- "GeoLocationCountryName":{
1661
- "type":"string",
1662
- "max":64,
1663
- "min":1
1664
- },
1665
- "GeoLocationDetails":{
1666
- "type":"structure",
1667
- "members":{
1668
- "ContinentCode":{"shape":"GeoLocationContinentCode"},
1669
- "ContinentName":{"shape":"GeoLocationContinentName"},
1670
- "CountryCode":{"shape":"GeoLocationCountryCode"},
1671
- "CountryName":{"shape":"GeoLocationCountryName"},
1672
- "SubdivisionCode":{"shape":"GeoLocationSubdivisionCode"},
1673
- "SubdivisionName":{"shape":"GeoLocationSubdivisionName"}
1674
- }
1675
- },
1676
- "GeoLocationDetailsList":{
1677
- "type":"list",
1678
- "member":{
1679
- "shape":"GeoLocationDetails",
1680
- "locationName":"GeoLocationDetails"
1681
- }
1682
- },
1683
- "GeoLocationSubdivisionCode":{
1684
- "type":"string",
1685
- "max":3,
1686
- "min":1
1687
- },
1688
- "GeoLocationSubdivisionName":{
1689
- "type":"string",
1690
- "max":64,
1691
- "min":1
1692
- },
1693
- "GetAccountLimitRequest":{
1694
- "type":"structure",
1695
- "required":["Type"],
1696
- "members":{
1697
- "Type":{
1698
- "shape":"AccountLimitType",
1699
- "location":"uri",
1700
- "locationName":"Type"
1701
- }
1702
- }
1703
- },
1704
- "GetAccountLimitResponse":{
1705
- "type":"structure",
1706
- "required":[
1707
- "Limit",
1708
- "Count"
1709
- ],
1710
- "members":{
1711
- "Limit":{"shape":"AccountLimit"},
1712
- "Count":{"shape":"UsageCount"}
1713
- }
1714
- },
1715
- "GetChangeRequest":{
1716
- "type":"structure",
1717
- "required":["Id"],
1718
- "members":{
1719
- "Id":{
1720
- "shape":"ResourceId",
1721
- "location":"uri",
1722
- "locationName":"Id"
1723
- }
1724
- }
1725
- },
1726
- "GetChangeResponse":{
1727
- "type":"structure",
1728
- "required":["ChangeInfo"],
1729
- "members":{
1730
- "ChangeInfo":{"shape":"ChangeInfo"}
1731
- }
1732
- },
1733
- "GetCheckerIpRangesRequest":{
1734
- "type":"structure",
1735
- "members":{
1736
- }
1737
- },
1738
- "GetCheckerIpRangesResponse":{
1739
- "type":"structure",
1740
- "required":["CheckerIpRanges"],
1741
- "members":{
1742
- "CheckerIpRanges":{"shape":"CheckerIpRanges"}
1743
- }
1744
- },
1745
- "GetGeoLocationRequest":{
1746
- "type":"structure",
1747
- "members":{
1748
- "ContinentCode":{
1749
- "shape":"GeoLocationContinentCode",
1750
- "location":"querystring",
1751
- "locationName":"continentcode"
1752
- },
1753
- "CountryCode":{
1754
- "shape":"GeoLocationCountryCode",
1755
- "location":"querystring",
1756
- "locationName":"countrycode"
1757
- },
1758
- "SubdivisionCode":{
1759
- "shape":"GeoLocationSubdivisionCode",
1760
- "location":"querystring",
1761
- "locationName":"subdivisioncode"
1762
- }
1763
- }
1764
- },
1765
- "GetGeoLocationResponse":{
1766
- "type":"structure",
1767
- "required":["GeoLocationDetails"],
1768
- "members":{
1769
- "GeoLocationDetails":{"shape":"GeoLocationDetails"}
1770
- }
1771
- },
1772
- "GetHealthCheckCountRequest":{
1773
- "type":"structure",
1774
- "members":{
1775
- }
1776
- },
1777
- "GetHealthCheckCountResponse":{
1778
- "type":"structure",
1779
- "required":["HealthCheckCount"],
1780
- "members":{
1781
- "HealthCheckCount":{"shape":"HealthCheckCount"}
1782
- }
1783
- },
1784
- "GetHealthCheckLastFailureReasonRequest":{
1785
- "type":"structure",
1786
- "required":["HealthCheckId"],
1787
- "members":{
1788
- "HealthCheckId":{
1789
- "shape":"HealthCheckId",
1790
- "location":"uri",
1791
- "locationName":"HealthCheckId"
1792
- }
1793
- }
1794
- },
1795
- "GetHealthCheckLastFailureReasonResponse":{
1796
- "type":"structure",
1797
- "required":["HealthCheckObservations"],
1798
- "members":{
1799
- "HealthCheckObservations":{"shape":"HealthCheckObservations"}
1800
- }
1801
- },
1802
- "GetHealthCheckRequest":{
1803
- "type":"structure",
1804
- "required":["HealthCheckId"],
1805
- "members":{
1806
- "HealthCheckId":{
1807
- "shape":"HealthCheckId",
1808
- "location":"uri",
1809
- "locationName":"HealthCheckId"
1810
- }
1811
- }
1812
- },
1813
- "GetHealthCheckResponse":{
1814
- "type":"structure",
1815
- "required":["HealthCheck"],
1816
- "members":{
1817
- "HealthCheck":{"shape":"HealthCheck"}
1818
- }
1819
- },
1820
- "GetHealthCheckStatusRequest":{
1821
- "type":"structure",
1822
- "required":["HealthCheckId"],
1823
- "members":{
1824
- "HealthCheckId":{
1825
- "shape":"HealthCheckId",
1826
- "location":"uri",
1827
- "locationName":"HealthCheckId"
1828
- }
1829
- }
1830
- },
1831
- "GetHealthCheckStatusResponse":{
1832
- "type":"structure",
1833
- "required":["HealthCheckObservations"],
1834
- "members":{
1835
- "HealthCheckObservations":{"shape":"HealthCheckObservations"}
1836
- }
1837
- },
1838
- "GetHostedZoneCountRequest":{
1839
- "type":"structure",
1840
- "members":{
1841
- }
1842
- },
1843
- "GetHostedZoneCountResponse":{
1844
- "type":"structure",
1845
- "required":["HostedZoneCount"],
1846
- "members":{
1847
- "HostedZoneCount":{"shape":"HostedZoneCount"}
1848
- }
1849
- },
1850
- "GetHostedZoneLimitRequest":{
1851
- "type":"structure",
1852
- "required":[
1853
- "Type",
1854
- "HostedZoneId"
1855
- ],
1856
- "members":{
1857
- "Type":{
1858
- "shape":"HostedZoneLimitType",
1859
- "location":"uri",
1860
- "locationName":"Type"
1861
- },
1862
- "HostedZoneId":{
1863
- "shape":"ResourceId",
1864
- "location":"uri",
1865
- "locationName":"Id"
1866
- }
1867
- }
1868
- },
1869
- "GetHostedZoneLimitResponse":{
1870
- "type":"structure",
1871
- "required":[
1872
- "Limit",
1873
- "Count"
1874
- ],
1875
- "members":{
1876
- "Limit":{"shape":"HostedZoneLimit"},
1877
- "Count":{"shape":"UsageCount"}
1878
- }
1879
- },
1880
- "GetHostedZoneRequest":{
1881
- "type":"structure",
1882
- "required":["Id"],
1883
- "members":{
1884
- "Id":{
1885
- "shape":"ResourceId",
1886
- "location":"uri",
1887
- "locationName":"Id"
1888
- }
1889
- }
1890
- },
1891
- "GetHostedZoneResponse":{
1892
- "type":"structure",
1893
- "required":["HostedZone"],
1894
- "members":{
1895
- "HostedZone":{"shape":"HostedZone"},
1896
- "DelegationSet":{"shape":"DelegationSet"},
1897
- "VPCs":{"shape":"VPCs"}
1898
- }
1899
- },
1900
- "GetQueryLoggingConfigRequest":{
1901
- "type":"structure",
1902
- "required":["Id"],
1903
- "members":{
1904
- "Id":{
1905
- "shape":"QueryLoggingConfigId",
1906
- "location":"uri",
1907
- "locationName":"Id"
1908
- }
1909
- }
1910
- },
1911
- "GetQueryLoggingConfigResponse":{
1912
- "type":"structure",
1913
- "required":["QueryLoggingConfig"],
1914
- "members":{
1915
- "QueryLoggingConfig":{"shape":"QueryLoggingConfig"}
1916
- }
1917
- },
1918
- "GetReusableDelegationSetLimitRequest":{
1919
- "type":"structure",
1920
- "required":[
1921
- "Type",
1922
- "DelegationSetId"
1923
- ],
1924
- "members":{
1925
- "Type":{
1926
- "shape":"ReusableDelegationSetLimitType",
1927
- "location":"uri",
1928
- "locationName":"Type"
1929
- },
1930
- "DelegationSetId":{
1931
- "shape":"ResourceId",
1932
- "location":"uri",
1933
- "locationName":"Id"
1934
- }
1935
- }
1936
- },
1937
- "GetReusableDelegationSetLimitResponse":{
1938
- "type":"structure",
1939
- "required":[
1940
- "Limit",
1941
- "Count"
1942
- ],
1943
- "members":{
1944
- "Limit":{"shape":"ReusableDelegationSetLimit"},
1945
- "Count":{"shape":"UsageCount"}
1946
- }
1947
- },
1948
- "GetReusableDelegationSetRequest":{
1949
- "type":"structure",
1950
- "required":["Id"],
1951
- "members":{
1952
- "Id":{
1953
- "shape":"ResourceId",
1954
- "location":"uri",
1955
- "locationName":"Id"
1956
- }
1957
- }
1958
- },
1959
- "GetReusableDelegationSetResponse":{
1960
- "type":"structure",
1961
- "required":["DelegationSet"],
1962
- "members":{
1963
- "DelegationSet":{"shape":"DelegationSet"}
1964
- }
1965
- },
1966
- "GetTrafficPolicyInstanceCountRequest":{
1967
- "type":"structure",
1968
- "members":{
1969
- }
1970
- },
1971
- "GetTrafficPolicyInstanceCountResponse":{
1972
- "type":"structure",
1973
- "required":["TrafficPolicyInstanceCount"],
1974
- "members":{
1975
- "TrafficPolicyInstanceCount":{"shape":"TrafficPolicyInstanceCount"}
1976
- }
1977
- },
1978
- "GetTrafficPolicyInstanceRequest":{
1979
- "type":"structure",
1980
- "required":["Id"],
1981
- "members":{
1982
- "Id":{
1983
- "shape":"TrafficPolicyInstanceId",
1984
- "location":"uri",
1985
- "locationName":"Id"
1986
- }
1987
- }
1988
- },
1989
- "GetTrafficPolicyInstanceResponse":{
1990
- "type":"structure",
1991
- "required":["TrafficPolicyInstance"],
1992
- "members":{
1993
- "TrafficPolicyInstance":{"shape":"TrafficPolicyInstance"}
1994
- }
1995
- },
1996
- "GetTrafficPolicyRequest":{
1997
- "type":"structure",
1998
- "required":[
1999
- "Id",
2000
- "Version"
2001
- ],
2002
- "members":{
2003
- "Id":{
2004
- "shape":"TrafficPolicyId",
2005
- "location":"uri",
2006
- "locationName":"Id"
2007
- },
2008
- "Version":{
2009
- "shape":"TrafficPolicyVersion",
2010
- "location":"uri",
2011
- "locationName":"Version"
2012
- }
2013
- }
2014
- },
2015
- "GetTrafficPolicyResponse":{
2016
- "type":"structure",
2017
- "required":["TrafficPolicy"],
2018
- "members":{
2019
- "TrafficPolicy":{"shape":"TrafficPolicy"}
2020
- }
2021
- },
2022
- "HealthCheck":{
2023
- "type":"structure",
2024
- "required":[
2025
- "Id",
2026
- "CallerReference",
2027
- "HealthCheckConfig",
2028
- "HealthCheckVersion"
2029
- ],
2030
- "members":{
2031
- "Id":{"shape":"HealthCheckId"},
2032
- "CallerReference":{"shape":"HealthCheckNonce"},
2033
- "LinkedService":{"shape":"LinkedService"},
2034
- "HealthCheckConfig":{"shape":"HealthCheckConfig"},
2035
- "HealthCheckVersion":{"shape":"HealthCheckVersion"},
2036
- "CloudWatchAlarmConfiguration":{"shape":"CloudWatchAlarmConfiguration"}
2037
- }
2038
- },
2039
- "HealthCheckAlreadyExists":{
2040
- "type":"structure",
2041
- "members":{
2042
- "message":{"shape":"ErrorMessage"}
2043
- },
2044
- "error":{"httpStatusCode":409},
2045
- "exception":true
2046
- },
2047
- "HealthCheckConfig":{
2048
- "type":"structure",
2049
- "required":["Type"],
2050
- "members":{
2051
- "IPAddress":{"shape":"IPAddress"},
2052
- "Port":{"shape":"Port"},
2053
- "Type":{"shape":"HealthCheckType"},
2054
- "ResourcePath":{"shape":"ResourcePath"},
2055
- "FullyQualifiedDomainName":{"shape":"FullyQualifiedDomainName"},
2056
- "SearchString":{"shape":"SearchString"},
2057
- "RequestInterval":{"shape":"RequestInterval"},
2058
- "FailureThreshold":{"shape":"FailureThreshold"},
2059
- "MeasureLatency":{"shape":"MeasureLatency"},
2060
- "Inverted":{"shape":"Inverted"},
2061
- "Disabled":{"shape":"Disabled"},
2062
- "HealthThreshold":{"shape":"HealthThreshold"},
2063
- "ChildHealthChecks":{"shape":"ChildHealthCheckList"},
2064
- "EnableSNI":{"shape":"EnableSNI"},
2065
- "Regions":{"shape":"HealthCheckRegionList"},
2066
- "AlarmIdentifier":{"shape":"AlarmIdentifier"},
2067
- "InsufficientDataHealthStatus":{"shape":"InsufficientDataHealthStatus"}
2068
- }
2069
- },
2070
- "HealthCheckCount":{"type":"long"},
2071
- "HealthCheckId":{
2072
- "type":"string",
2073
- "max":64
2074
- },
2075
- "HealthCheckInUse":{
2076
- "type":"structure",
2077
- "members":{
2078
- "message":{"shape":"ErrorMessage"}
2079
- },
2080
- "deprecated":true,
2081
- "error":{"httpStatusCode":400},
2082
- "exception":true
2083
- },
2084
- "HealthCheckNonce":{
2085
- "type":"string",
2086
- "max":64,
2087
- "min":1
2088
- },
2089
- "HealthCheckObservation":{
2090
- "type":"structure",
2091
- "members":{
2092
- "Region":{"shape":"HealthCheckRegion"},
2093
- "IPAddress":{"shape":"IPAddress"},
2094
- "StatusReport":{"shape":"StatusReport"}
2095
- }
2096
- },
2097
- "HealthCheckObservations":{
2098
- "type":"list",
2099
- "member":{
2100
- "shape":"HealthCheckObservation",
2101
- "locationName":"HealthCheckObservation"
2102
- }
2103
- },
2104
- "HealthCheckRegion":{
2105
- "type":"string",
2106
- "enum":[
2107
- "us-east-1",
2108
- "us-west-1",
2109
- "us-west-2",
2110
- "eu-west-1",
2111
- "ap-southeast-1",
2112
- "ap-southeast-2",
2113
- "ap-northeast-1",
2114
- "sa-east-1"
2115
- ],
2116
- "max":64,
2117
- "min":1
2118
- },
2119
- "HealthCheckRegionList":{
2120
- "type":"list",
2121
- "member":{
2122
- "shape":"HealthCheckRegion",
2123
- "locationName":"Region"
2124
- },
2125
- "max":64,
2126
- "min":3
2127
- },
2128
- "HealthCheckType":{
2129
- "type":"string",
2130
- "enum":[
2131
- "HTTP",
2132
- "HTTPS",
2133
- "HTTP_STR_MATCH",
2134
- "HTTPS_STR_MATCH",
2135
- "TCP",
2136
- "CALCULATED",
2137
- "CLOUDWATCH_METRIC"
2138
- ]
2139
- },
2140
- "HealthCheckVersion":{
2141
- "type":"long",
2142
- "min":1
2143
- },
2144
- "HealthCheckVersionMismatch":{
2145
- "type":"structure",
2146
- "members":{
2147
- "message":{"shape":"ErrorMessage"}
2148
- },
2149
- "error":{"httpStatusCode":409},
2150
- "exception":true
2151
- },
2152
- "HealthChecks":{
2153
- "type":"list",
2154
- "member":{
2155
- "shape":"HealthCheck",
2156
- "locationName":"HealthCheck"
2157
- }
2158
- },
2159
- "HealthThreshold":{
2160
- "type":"integer",
2161
- "max":256,
2162
- "min":0
2163
- },
2164
- "HostedZone":{
2165
- "type":"structure",
2166
- "required":[
2167
- "Id",
2168
- "Name",
2169
- "CallerReference"
2170
- ],
2171
- "members":{
2172
- "Id":{"shape":"ResourceId"},
2173
- "Name":{"shape":"DNSName"},
2174
- "CallerReference":{"shape":"Nonce"},
2175
- "Config":{"shape":"HostedZoneConfig"},
2176
- "ResourceRecordSetCount":{"shape":"HostedZoneRRSetCount"},
2177
- "LinkedService":{"shape":"LinkedService"}
2178
- }
2179
- },
2180
- "HostedZoneAlreadyExists":{
2181
- "type":"structure",
2182
- "members":{
2183
- "message":{"shape":"ErrorMessage"}
2184
- },
2185
- "error":{"httpStatusCode":409},
2186
- "exception":true
2187
- },
2188
- "HostedZoneConfig":{
2189
- "type":"structure",
2190
- "members":{
2191
- "Comment":{"shape":"ResourceDescription"},
2192
- "PrivateZone":{"shape":"IsPrivateZone"}
2193
- }
2194
- },
2195
- "HostedZoneCount":{"type":"long"},
2196
- "HostedZoneLimit":{
2197
- "type":"structure",
2198
- "required":[
2199
- "Type",
2200
- "Value"
2201
- ],
2202
- "members":{
2203
- "Type":{"shape":"HostedZoneLimitType"},
2204
- "Value":{"shape":"LimitValue"}
2205
- }
2206
- },
2207
- "HostedZoneLimitType":{
2208
- "type":"string",
2209
- "enum":[
2210
- "MAX_RRSETS_BY_ZONE",
2211
- "MAX_VPCS_ASSOCIATED_BY_ZONE"
2212
- ]
2213
- },
2214
- "HostedZoneNotEmpty":{
2215
- "type":"structure",
2216
- "members":{
2217
- "message":{"shape":"ErrorMessage"}
2218
- },
2219
- "error":{"httpStatusCode":400},
2220
- "exception":true
2221
- },
2222
- "HostedZoneNotFound":{
2223
- "type":"structure",
2224
- "members":{
2225
- "message":{"shape":"ErrorMessage"}
2226
- },
2227
- "exception":true
2228
- },
2229
- "HostedZoneNotPrivate":{
2230
- "type":"structure",
2231
- "members":{
2232
- "message":{"shape":"ErrorMessage"}
2233
- },
2234
- "exception":true
2235
- },
2236
- "HostedZoneRRSetCount":{"type":"long"},
2237
- "HostedZones":{
2238
- "type":"list",
2239
- "member":{
2240
- "shape":"HostedZone",
2241
- "locationName":"HostedZone"
2242
- }
2243
- },
2244
- "IPAddress":{
2245
- "type":"string",
2246
- "max":45,
2247
- "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]))$)"
2248
- },
2249
- "IPAddressCidr":{"type":"string"},
2250
- "IncompatibleVersion":{
2251
- "type":"structure",
2252
- "members":{
2253
- "message":{"shape":"ErrorMessage"}
2254
- },
2255
- "error":{"httpStatusCode":400},
2256
- "exception":true
2257
- },
2258
- "InsufficientCloudWatchLogsResourcePolicy":{
2259
- "type":"structure",
2260
- "members":{
2261
- "message":{"shape":"ErrorMessage"}
2262
- },
2263
- "error":{"httpStatusCode":400},
2264
- "exception":true
2265
- },
2266
- "InsufficientDataHealthStatus":{
2267
- "type":"string",
2268
- "enum":[
2269
- "Healthy",
2270
- "Unhealthy",
2271
- "LastKnownStatus"
2272
- ]
2273
- },
2274
- "InvalidArgument":{
2275
- "type":"structure",
2276
- "members":{
2277
- "message":{"shape":"ErrorMessage"}
2278
- },
2279
- "exception":true
2280
- },
2281
- "InvalidChangeBatch":{
2282
- "type":"structure",
2283
- "members":{
2284
- "messages":{"shape":"ErrorMessages"},
2285
- "message":{"shape":"ErrorMessage"}
2286
- },
2287
- "exception":true
2288
- },
2289
- "InvalidDomainName":{
2290
- "type":"structure",
2291
- "members":{
2292
- "message":{"shape":"ErrorMessage"}
2293
- },
2294
- "error":{"httpStatusCode":400},
2295
- "exception":true
2296
- },
2297
- "InvalidInput":{
2298
- "type":"structure",
2299
- "members":{
2300
- "message":{"shape":"ErrorMessage"}
2301
- },
2302
- "error":{"httpStatusCode":400},
2303
- "exception":true
2304
- },
2305
- "InvalidPaginationToken":{
2306
- "type":"structure",
2307
- "members":{
2308
- "message":{"shape":"ErrorMessage"}
2309
- },
2310
- "error":{"httpStatusCode":400},
2311
- "exception":true
2312
- },
2313
- "InvalidTrafficPolicyDocument":{
2314
- "type":"structure",
2315
- "members":{
2316
- "message":{"shape":"ErrorMessage"}
2317
- },
2318
- "error":{"httpStatusCode":400},
2319
- "exception":true
2320
- },
2321
- "InvalidVPCId":{
2322
- "type":"structure",
2323
- "members":{
2324
- "message":{"shape":"ErrorMessage"}
2325
- },
2326
- "error":{"httpStatusCode":400},
2327
- "exception":true
2328
- },
2329
- "Inverted":{"type":"boolean"},
2330
- "IsPrivateZone":{"type":"boolean"},
2331
- "LastVPCAssociation":{
2332
- "type":"structure",
2333
- "members":{
2334
- "message":{"shape":"ErrorMessage"}
2335
- },
2336
- "error":{"httpStatusCode":400},
2337
- "exception":true
2338
- },
2339
- "LimitValue":{
2340
- "type":"long",
2341
- "min":1
2342
- },
2343
- "LimitsExceeded":{
2344
- "type":"structure",
2345
- "members":{
2346
- "message":{"shape":"ErrorMessage"}
2347
- },
2348
- "exception":true
2349
- },
2350
- "LinkedService":{
2351
- "type":"structure",
2352
- "members":{
2353
- "ServicePrincipal":{"shape":"ServicePrincipal"},
2354
- "Description":{"shape":"ResourceDescription"}
2355
- }
2356
- },
2357
- "ListGeoLocationsRequest":{
2358
- "type":"structure",
2359
- "members":{
2360
- "StartContinentCode":{
2361
- "shape":"GeoLocationContinentCode",
2362
- "location":"querystring",
2363
- "locationName":"startcontinentcode"
2364
- },
2365
- "StartCountryCode":{
2366
- "shape":"GeoLocationCountryCode",
2367
- "location":"querystring",
2368
- "locationName":"startcountrycode"
2369
- },
2370
- "StartSubdivisionCode":{
2371
- "shape":"GeoLocationSubdivisionCode",
2372
- "location":"querystring",
2373
- "locationName":"startsubdivisioncode"
2374
- },
2375
- "MaxItems":{
2376
- "shape":"PageMaxItems",
2377
- "location":"querystring",
2378
- "locationName":"maxitems"
2379
- }
2380
- }
2381
- },
2382
- "ListGeoLocationsResponse":{
2383
- "type":"structure",
2384
- "required":[
2385
- "GeoLocationDetailsList",
2386
- "IsTruncated",
2387
- "MaxItems"
2388
- ],
2389
- "members":{
2390
- "GeoLocationDetailsList":{"shape":"GeoLocationDetailsList"},
2391
- "IsTruncated":{"shape":"PageTruncated"},
2392
- "NextContinentCode":{"shape":"GeoLocationContinentCode"},
2393
- "NextCountryCode":{"shape":"GeoLocationCountryCode"},
2394
- "NextSubdivisionCode":{"shape":"GeoLocationSubdivisionCode"},
2395
- "MaxItems":{"shape":"PageMaxItems"}
2396
- }
2397
- },
2398
- "ListHealthChecksRequest":{
2399
- "type":"structure",
2400
- "members":{
2401
- "Marker":{
2402
- "shape":"PageMarker",
2403
- "location":"querystring",
2404
- "locationName":"marker"
2405
- },
2406
- "MaxItems":{
2407
- "shape":"PageMaxItems",
2408
- "location":"querystring",
2409
- "locationName":"maxitems"
2410
- }
2411
- }
2412
- },
2413
- "ListHealthChecksResponse":{
2414
- "type":"structure",
2415
- "required":[
2416
- "HealthChecks",
2417
- "Marker",
2418
- "IsTruncated",
2419
- "MaxItems"
2420
- ],
2421
- "members":{
2422
- "HealthChecks":{"shape":"HealthChecks"},
2423
- "Marker":{"shape":"PageMarker"},
2424
- "IsTruncated":{"shape":"PageTruncated"},
2425
- "NextMarker":{"shape":"PageMarker"},
2426
- "MaxItems":{"shape":"PageMaxItems"}
2427
- }
2428
- },
2429
- "ListHostedZonesByNameRequest":{
2430
- "type":"structure",
2431
- "members":{
2432
- "DNSName":{
2433
- "shape":"DNSName",
2434
- "location":"querystring",
2435
- "locationName":"dnsname"
2436
- },
2437
- "HostedZoneId":{
2438
- "shape":"ResourceId",
2439
- "location":"querystring",
2440
- "locationName":"hostedzoneid"
2441
- },
2442
- "MaxItems":{
2443
- "shape":"PageMaxItems",
2444
- "location":"querystring",
2445
- "locationName":"maxitems"
2446
- }
2447
- }
2448
- },
2449
- "ListHostedZonesByNameResponse":{
2450
- "type":"structure",
2451
- "required":[
2452
- "HostedZones",
2453
- "IsTruncated",
2454
- "MaxItems"
2455
- ],
2456
- "members":{
2457
- "HostedZones":{"shape":"HostedZones"},
2458
- "DNSName":{"shape":"DNSName"},
2459
- "HostedZoneId":{"shape":"ResourceId"},
2460
- "IsTruncated":{"shape":"PageTruncated"},
2461
- "NextDNSName":{"shape":"DNSName"},
2462
- "NextHostedZoneId":{"shape":"ResourceId"},
2463
- "MaxItems":{"shape":"PageMaxItems"}
2464
- }
2465
- },
2466
- "ListHostedZonesRequest":{
2467
- "type":"structure",
2468
- "members":{
2469
- "Marker":{
2470
- "shape":"PageMarker",
2471
- "location":"querystring",
2472
- "locationName":"marker"
2473
- },
2474
- "MaxItems":{
2475
- "shape":"PageMaxItems",
2476
- "location":"querystring",
2477
- "locationName":"maxitems"
2478
- },
2479
- "DelegationSetId":{
2480
- "shape":"ResourceId",
2481
- "location":"querystring",
2482
- "locationName":"delegationsetid"
2483
- }
2484
- }
2485
- },
2486
- "ListHostedZonesResponse":{
2487
- "type":"structure",
2488
- "required":[
2489
- "HostedZones",
2490
- "Marker",
2491
- "IsTruncated",
2492
- "MaxItems"
2493
- ],
2494
- "members":{
2495
- "HostedZones":{"shape":"HostedZones"},
2496
- "Marker":{"shape":"PageMarker"},
2497
- "IsTruncated":{"shape":"PageTruncated"},
2498
- "NextMarker":{"shape":"PageMarker"},
2499
- "MaxItems":{"shape":"PageMaxItems"}
2500
- }
2501
- },
2502
- "ListQueryLoggingConfigsRequest":{
2503
- "type":"structure",
2504
- "members":{
2505
- "HostedZoneId":{
2506
- "shape":"ResourceId",
2507
- "location":"querystring",
2508
- "locationName":"hostedzoneid"
2509
- },
2510
- "NextToken":{
2511
- "shape":"PaginationToken",
2512
- "location":"querystring",
2513
- "locationName":"nexttoken"
2514
- },
2515
- "MaxResults":{
2516
- "shape":"MaxResults",
2517
- "location":"querystring",
2518
- "locationName":"maxresults"
2519
- }
2520
- }
2521
- },
2522
- "ListQueryLoggingConfigsResponse":{
2523
- "type":"structure",
2524
- "required":["QueryLoggingConfigs"],
2525
- "members":{
2526
- "QueryLoggingConfigs":{"shape":"QueryLoggingConfigs"},
2527
- "NextToken":{"shape":"PaginationToken"}
2528
- }
2529
- },
2530
- "ListResourceRecordSetsRequest":{
2531
- "type":"structure",
2532
- "required":["HostedZoneId"],
2533
- "members":{
2534
- "HostedZoneId":{
2535
- "shape":"ResourceId",
2536
- "location":"uri",
2537
- "locationName":"Id"
2538
- },
2539
- "StartRecordName":{
2540
- "shape":"DNSName",
2541
- "location":"querystring",
2542
- "locationName":"name"
2543
- },
2544
- "StartRecordType":{
2545
- "shape":"RRType",
2546
- "location":"querystring",
2547
- "locationName":"type"
2548
- },
2549
- "StartRecordIdentifier":{
2550
- "shape":"ResourceRecordSetIdentifier",
2551
- "location":"querystring",
2552
- "locationName":"identifier"
2553
- },
2554
- "MaxItems":{
2555
- "shape":"PageMaxItems",
2556
- "location":"querystring",
2557
- "locationName":"maxitems"
2558
- }
2559
- }
2560
- },
2561
- "ListResourceRecordSetsResponse":{
2562
- "type":"structure",
2563
- "required":[
2564
- "ResourceRecordSets",
2565
- "IsTruncated",
2566
- "MaxItems"
2567
- ],
2568
- "members":{
2569
- "ResourceRecordSets":{"shape":"ResourceRecordSets"},
2570
- "IsTruncated":{"shape":"PageTruncated"},
2571
- "NextRecordName":{"shape":"DNSName"},
2572
- "NextRecordType":{"shape":"RRType"},
2573
- "NextRecordIdentifier":{"shape":"ResourceRecordSetIdentifier"},
2574
- "MaxItems":{"shape":"PageMaxItems"}
2575
- }
2576
- },
2577
- "ListReusableDelegationSetsRequest":{
2578
- "type":"structure",
2579
- "members":{
2580
- "Marker":{
2581
- "shape":"PageMarker",
2582
- "location":"querystring",
2583
- "locationName":"marker"
2584
- },
2585
- "MaxItems":{
2586
- "shape":"PageMaxItems",
2587
- "location":"querystring",
2588
- "locationName":"maxitems"
2589
- }
2590
- }
2591
- },
2592
- "ListReusableDelegationSetsResponse":{
2593
- "type":"structure",
2594
- "required":[
2595
- "DelegationSets",
2596
- "Marker",
2597
- "IsTruncated",
2598
- "MaxItems"
2599
- ],
2600
- "members":{
2601
- "DelegationSets":{"shape":"DelegationSets"},
2602
- "Marker":{"shape":"PageMarker"},
2603
- "IsTruncated":{"shape":"PageTruncated"},
2604
- "NextMarker":{"shape":"PageMarker"},
2605
- "MaxItems":{"shape":"PageMaxItems"}
2606
- }
2607
- },
2608
- "ListTagsForResourceRequest":{
2609
- "type":"structure",
2610
- "required":[
2611
- "ResourceType",
2612
- "ResourceId"
2613
- ],
2614
- "members":{
2615
- "ResourceType":{
2616
- "shape":"TagResourceType",
2617
- "location":"uri",
2618
- "locationName":"ResourceType"
2619
- },
2620
- "ResourceId":{
2621
- "shape":"TagResourceId",
2622
- "location":"uri",
2623
- "locationName":"ResourceId"
2624
- }
2625
- }
2626
- },
2627
- "ListTagsForResourceResponse":{
2628
- "type":"structure",
2629
- "required":["ResourceTagSet"],
2630
- "members":{
2631
- "ResourceTagSet":{"shape":"ResourceTagSet"}
2632
- }
2633
- },
2634
- "ListTagsForResourcesRequest":{
2635
- "type":"structure",
2636
- "required":[
2637
- "ResourceType",
2638
- "ResourceIds"
2639
- ],
2640
- "members":{
2641
- "ResourceType":{
2642
- "shape":"TagResourceType",
2643
- "location":"uri",
2644
- "locationName":"ResourceType"
2645
- },
2646
- "ResourceIds":{"shape":"TagResourceIdList"}
2647
- }
2648
- },
2649
- "ListTagsForResourcesResponse":{
2650
- "type":"structure",
2651
- "required":["ResourceTagSets"],
2652
- "members":{
2653
- "ResourceTagSets":{"shape":"ResourceTagSetList"}
2654
- }
2655
- },
2656
- "ListTrafficPoliciesRequest":{
2657
- "type":"structure",
2658
- "members":{
2659
- "TrafficPolicyIdMarker":{
2660
- "shape":"TrafficPolicyId",
2661
- "location":"querystring",
2662
- "locationName":"trafficpolicyid"
2663
- },
2664
- "MaxItems":{
2665
- "shape":"PageMaxItems",
2666
- "location":"querystring",
2667
- "locationName":"maxitems"
2668
- }
2669
- }
2670
- },
2671
- "ListTrafficPoliciesResponse":{
2672
- "type":"structure",
2673
- "required":[
2674
- "TrafficPolicySummaries",
2675
- "IsTruncated",
2676
- "TrafficPolicyIdMarker",
2677
- "MaxItems"
2678
- ],
2679
- "members":{
2680
- "TrafficPolicySummaries":{"shape":"TrafficPolicySummaries"},
2681
- "IsTruncated":{"shape":"PageTruncated"},
2682
- "TrafficPolicyIdMarker":{"shape":"TrafficPolicyId"},
2683
- "MaxItems":{"shape":"PageMaxItems"}
2684
- }
2685
- },
2686
- "ListTrafficPolicyInstancesByHostedZoneRequest":{
2687
- "type":"structure",
2688
- "required":["HostedZoneId"],
2689
- "members":{
2690
- "HostedZoneId":{
2691
- "shape":"ResourceId",
2692
- "location":"querystring",
2693
- "locationName":"id"
2694
- },
2695
- "TrafficPolicyInstanceNameMarker":{
2696
- "shape":"DNSName",
2697
- "location":"querystring",
2698
- "locationName":"trafficpolicyinstancename"
2699
- },
2700
- "TrafficPolicyInstanceTypeMarker":{
2701
- "shape":"RRType",
2702
- "location":"querystring",
2703
- "locationName":"trafficpolicyinstancetype"
2704
- },
2705
- "MaxItems":{
2706
- "shape":"PageMaxItems",
2707
- "location":"querystring",
2708
- "locationName":"maxitems"
2709
- }
2710
- }
2711
- },
2712
- "ListTrafficPolicyInstancesByHostedZoneResponse":{
2713
- "type":"structure",
2714
- "required":[
2715
- "TrafficPolicyInstances",
2716
- "IsTruncated",
2717
- "MaxItems"
2718
- ],
2719
- "members":{
2720
- "TrafficPolicyInstances":{"shape":"TrafficPolicyInstances"},
2721
- "TrafficPolicyInstanceNameMarker":{"shape":"DNSName"},
2722
- "TrafficPolicyInstanceTypeMarker":{"shape":"RRType"},
2723
- "IsTruncated":{"shape":"PageTruncated"},
2724
- "MaxItems":{"shape":"PageMaxItems"}
2725
- }
2726
- },
2727
- "ListTrafficPolicyInstancesByPolicyRequest":{
2728
- "type":"structure",
2729
- "required":[
2730
- "TrafficPolicyId",
2731
- "TrafficPolicyVersion"
2732
- ],
2733
- "members":{
2734
- "TrafficPolicyId":{
2735
- "shape":"TrafficPolicyId",
2736
- "location":"querystring",
2737
- "locationName":"id"
2738
- },
2739
- "TrafficPolicyVersion":{
2740
- "shape":"TrafficPolicyVersion",
2741
- "location":"querystring",
2742
- "locationName":"version"
2743
- },
2744
- "HostedZoneIdMarker":{
2745
- "shape":"ResourceId",
2746
- "location":"querystring",
2747
- "locationName":"hostedzoneid"
2748
- },
2749
- "TrafficPolicyInstanceNameMarker":{
2750
- "shape":"DNSName",
2751
- "location":"querystring",
2752
- "locationName":"trafficpolicyinstancename"
2753
- },
2754
- "TrafficPolicyInstanceTypeMarker":{
2755
- "shape":"RRType",
2756
- "location":"querystring",
2757
- "locationName":"trafficpolicyinstancetype"
2758
- },
2759
- "MaxItems":{
2760
- "shape":"PageMaxItems",
2761
- "location":"querystring",
2762
- "locationName":"maxitems"
2763
- }
2764
- }
2765
- },
2766
- "ListTrafficPolicyInstancesByPolicyResponse":{
2767
- "type":"structure",
2768
- "required":[
2769
- "TrafficPolicyInstances",
2770
- "IsTruncated",
2771
- "MaxItems"
2772
- ],
2773
- "members":{
2774
- "TrafficPolicyInstances":{"shape":"TrafficPolicyInstances"},
2775
- "HostedZoneIdMarker":{"shape":"ResourceId"},
2776
- "TrafficPolicyInstanceNameMarker":{"shape":"DNSName"},
2777
- "TrafficPolicyInstanceTypeMarker":{"shape":"RRType"},
2778
- "IsTruncated":{"shape":"PageTruncated"},
2779
- "MaxItems":{"shape":"PageMaxItems"}
2780
- }
2781
- },
2782
- "ListTrafficPolicyInstancesRequest":{
2783
- "type":"structure",
2784
- "members":{
2785
- "HostedZoneIdMarker":{
2786
- "shape":"ResourceId",
2787
- "location":"querystring",
2788
- "locationName":"hostedzoneid"
2789
- },
2790
- "TrafficPolicyInstanceNameMarker":{
2791
- "shape":"DNSName",
2792
- "location":"querystring",
2793
- "locationName":"trafficpolicyinstancename"
2794
- },
2795
- "TrafficPolicyInstanceTypeMarker":{
2796
- "shape":"RRType",
2797
- "location":"querystring",
2798
- "locationName":"trafficpolicyinstancetype"
2799
- },
2800
- "MaxItems":{
2801
- "shape":"PageMaxItems",
2802
- "location":"querystring",
2803
- "locationName":"maxitems"
2804
- }
2805
- }
2806
- },
2807
- "ListTrafficPolicyInstancesResponse":{
2808
- "type":"structure",
2809
- "required":[
2810
- "TrafficPolicyInstances",
2811
- "IsTruncated",
2812
- "MaxItems"
2813
- ],
2814
- "members":{
2815
- "TrafficPolicyInstances":{"shape":"TrafficPolicyInstances"},
2816
- "HostedZoneIdMarker":{"shape":"ResourceId"},
2817
- "TrafficPolicyInstanceNameMarker":{"shape":"DNSName"},
2818
- "TrafficPolicyInstanceTypeMarker":{"shape":"RRType"},
2819
- "IsTruncated":{"shape":"PageTruncated"},
2820
- "MaxItems":{"shape":"PageMaxItems"}
2821
- }
2822
- },
2823
- "ListTrafficPolicyVersionsRequest":{
2824
- "type":"structure",
2825
- "required":["Id"],
2826
- "members":{
2827
- "Id":{
2828
- "shape":"TrafficPolicyId",
2829
- "location":"uri",
2830
- "locationName":"Id"
2831
- },
2832
- "TrafficPolicyVersionMarker":{
2833
- "shape":"TrafficPolicyVersionMarker",
2834
- "location":"querystring",
2835
- "locationName":"trafficpolicyversion"
2836
- },
2837
- "MaxItems":{
2838
- "shape":"PageMaxItems",
2839
- "location":"querystring",
2840
- "locationName":"maxitems"
2841
- }
2842
- }
2843
- },
2844
- "ListTrafficPolicyVersionsResponse":{
2845
- "type":"structure",
2846
- "required":[
2847
- "TrafficPolicies",
2848
- "IsTruncated",
2849
- "TrafficPolicyVersionMarker",
2850
- "MaxItems"
2851
- ],
2852
- "members":{
2853
- "TrafficPolicies":{"shape":"TrafficPolicies"},
2854
- "IsTruncated":{"shape":"PageTruncated"},
2855
- "TrafficPolicyVersionMarker":{"shape":"TrafficPolicyVersionMarker"},
2856
- "MaxItems":{"shape":"PageMaxItems"}
2857
- }
2858
- },
2859
- "ListVPCAssociationAuthorizationsRequest":{
2860
- "type":"structure",
2861
- "required":["HostedZoneId"],
2862
- "members":{
2863
- "HostedZoneId":{
2864
- "shape":"ResourceId",
2865
- "location":"uri",
2866
- "locationName":"Id"
2867
- },
2868
- "NextToken":{
2869
- "shape":"PaginationToken",
2870
- "location":"querystring",
2871
- "locationName":"nexttoken"
2872
- },
2873
- "MaxResults":{
2874
- "shape":"MaxResults",
2875
- "location":"querystring",
2876
- "locationName":"maxresults"
2877
- }
2878
- }
2879
- },
2880
- "ListVPCAssociationAuthorizationsResponse":{
2881
- "type":"structure",
2882
- "required":[
2883
- "HostedZoneId",
2884
- "VPCs"
2885
- ],
2886
- "members":{
2887
- "HostedZoneId":{"shape":"ResourceId"},
2888
- "NextToken":{"shape":"PaginationToken"},
2889
- "VPCs":{"shape":"VPCs"}
2890
- }
2891
- },
2892
- "MaxResults":{"type":"string"},
2893
- "MeasureLatency":{"type":"boolean"},
2894
- "Message":{
2895
- "type":"string",
2896
- "max":1024
2897
- },
2898
- "MetricName":{
2899
- "type":"string",
2900
- "max":255,
2901
- "min":1
2902
- },
2903
- "Nameserver":{
2904
- "type":"string",
2905
- "max":255,
2906
- "min":0
2907
- },
2908
- "Namespace":{
2909
- "type":"string",
2910
- "max":255,
2911
- "min":1
2912
- },
2913
- "NoSuchChange":{
2914
- "type":"structure",
2915
- "members":{
2916
- "message":{"shape":"ErrorMessage"}
2917
- },
2918
- "error":{"httpStatusCode":404},
2919
- "exception":true
2920
- },
2921
- "NoSuchCloudWatchLogsLogGroup":{
2922
- "type":"structure",
2923
- "members":{
2924
- "message":{"shape":"ErrorMessage"}
2925
- },
2926
- "error":{"httpStatusCode":404},
2927
- "exception":true
2928
- },
2929
- "NoSuchDelegationSet":{
2930
- "type":"structure",
2931
- "members":{
2932
- "message":{"shape":"ErrorMessage"}
2933
- },
2934
- "exception":true
2935
- },
2936
- "NoSuchGeoLocation":{
2937
- "type":"structure",
2938
- "members":{
2939
- "message":{"shape":"ErrorMessage"}
2940
- },
2941
- "error":{"httpStatusCode":404},
2942
- "exception":true
2943
- },
2944
- "NoSuchHealthCheck":{
2945
- "type":"structure",
2946
- "members":{
2947
- "message":{"shape":"ErrorMessage"}
2948
- },
2949
- "error":{"httpStatusCode":404},
2950
- "exception":true
2951
- },
2952
- "NoSuchHostedZone":{
2953
- "type":"structure",
2954
- "members":{
2955
- "message":{"shape":"ErrorMessage"}
2956
- },
2957
- "error":{"httpStatusCode":404},
2958
- "exception":true
2959
- },
2960
- "NoSuchQueryLoggingConfig":{
2961
- "type":"structure",
2962
- "members":{
2963
- "message":{"shape":"ErrorMessage"}
2964
- },
2965
- "error":{"httpStatusCode":404},
2966
- "exception":true
2967
- },
2968
- "NoSuchTrafficPolicy":{
2969
- "type":"structure",
2970
- "members":{
2971
- "message":{"shape":"ErrorMessage"}
2972
- },
2973
- "error":{"httpStatusCode":404},
2974
- "exception":true
2975
- },
2976
- "NoSuchTrafficPolicyInstance":{
2977
- "type":"structure",
2978
- "members":{
2979
- "message":{"shape":"ErrorMessage"}
2980
- },
2981
- "error":{"httpStatusCode":404},
2982
- "exception":true
2983
- },
2984
- "Nonce":{
2985
- "type":"string",
2986
- "max":128,
2987
- "min":1
2988
- },
2989
- "NotAuthorizedException":{
2990
- "type":"structure",
2991
- "members":{
2992
- "message":{"shape":"ErrorMessage"}
2993
- },
2994
- "error":{"httpStatusCode":401},
2995
- "exception":true
2996
- },
2997
- "PageMarker":{
2998
- "type":"string",
2999
- "max":64
3000
- },
3001
- "PageMaxItems":{"type":"string"},
3002
- "PageTruncated":{"type":"boolean"},
3003
- "PaginationToken":{
3004
- "type":"string",
3005
- "max":256
3006
- },
3007
- "Period":{
3008
- "type":"integer",
3009
- "min":60
3010
- },
3011
- "Port":{
3012
- "type":"integer",
3013
- "max":65535,
3014
- "min":1
3015
- },
3016
- "PriorRequestNotComplete":{
3017
- "type":"structure",
3018
- "members":{
3019
- "message":{"shape":"ErrorMessage"}
3020
- },
3021
- "error":{"httpStatusCode":400},
3022
- "exception":true
3023
- },
3024
- "PublicZoneVPCAssociation":{
3025
- "type":"structure",
3026
- "members":{
3027
- "message":{"shape":"ErrorMessage"}
3028
- },
3029
- "error":{"httpStatusCode":400},
3030
- "exception":true
3031
- },
3032
- "QueryLoggingConfig":{
3033
- "type":"structure",
3034
- "required":[
3035
- "Id",
3036
- "HostedZoneId",
3037
- "CloudWatchLogsLogGroupArn"
3038
- ],
3039
- "members":{
3040
- "Id":{"shape":"QueryLoggingConfigId"},
3041
- "HostedZoneId":{"shape":"ResourceId"},
3042
- "CloudWatchLogsLogGroupArn":{"shape":"CloudWatchLogsLogGroupArn"}
3043
- }
3044
- },
3045
- "QueryLoggingConfigAlreadyExists":{
3046
- "type":"structure",
3047
- "members":{
3048
- "message":{"shape":"ErrorMessage"}
3049
- },
3050
- "error":{"httpStatusCode":409},
3051
- "exception":true
3052
- },
3053
- "QueryLoggingConfigId":{
3054
- "type":"string",
3055
- "max":36,
3056
- "min":1
3057
- },
3058
- "QueryLoggingConfigs":{
3059
- "type":"list",
3060
- "member":{
3061
- "shape":"QueryLoggingConfig",
3062
- "locationName":"QueryLoggingConfig"
3063
- }
3064
- },
3065
- "RData":{
3066
- "type":"string",
3067
- "max":4000
3068
- },
3069
- "RRType":{
3070
- "type":"string",
3071
- "enum":[
3072
- "SOA",
3073
- "A",
3074
- "TXT",
3075
- "NS",
3076
- "CNAME",
3077
- "MX",
3078
- "NAPTR",
3079
- "PTR",
3080
- "SRV",
3081
- "SPF",
3082
- "AAAA",
3083
- "CAA"
3084
- ]
3085
- },
3086
- "RecordData":{
3087
- "type":"list",
3088
- "member":{
3089
- "shape":"RecordDataEntry",
3090
- "locationName":"RecordDataEntry"
3091
- }
3092
- },
3093
- "RecordDataEntry":{
3094
- "type":"string",
3095
- "max":512,
3096
- "min":0
3097
- },
3098
- "RequestInterval":{
3099
- "type":"integer",
3100
- "max":30,
3101
- "min":10
3102
- },
3103
- "ResettableElementName":{
3104
- "type":"string",
3105
- "enum":[
3106
- "FullyQualifiedDomainName",
3107
- "Regions",
3108
- "ResourcePath",
3109
- "ChildHealthChecks"
3110
- ],
3111
- "max":64,
3112
- "min":1
3113
- },
3114
- "ResettableElementNameList":{
3115
- "type":"list",
3116
- "member":{
3117
- "shape":"ResettableElementName",
3118
- "locationName":"ResettableElementName"
3119
- },
3120
- "max":64
3121
- },
3122
- "ResourceDescription":{
3123
- "type":"string",
3124
- "max":256
3125
- },
3126
- "ResourceId":{
3127
- "type":"string",
3128
- "max":32
3129
- },
3130
- "ResourcePath":{
3131
- "type":"string",
3132
- "max":255
3133
- },
3134
- "ResourceRecord":{
3135
- "type":"structure",
3136
- "required":["Value"],
3137
- "members":{
3138
- "Value":{"shape":"RData"}
3139
- }
3140
- },
3141
- "ResourceRecordSet":{
3142
- "type":"structure",
3143
- "required":[
3144
- "Name",
3145
- "Type"
3146
- ],
3147
- "members":{
3148
- "Name":{"shape":"DNSName"},
3149
- "Type":{"shape":"RRType"},
3150
- "SetIdentifier":{"shape":"ResourceRecordSetIdentifier"},
3151
- "Weight":{"shape":"ResourceRecordSetWeight"},
3152
- "Region":{"shape":"ResourceRecordSetRegion"},
3153
- "GeoLocation":{"shape":"GeoLocation"},
3154
- "Failover":{"shape":"ResourceRecordSetFailover"},
3155
- "MultiValueAnswer":{"shape":"ResourceRecordSetMultiValueAnswer"},
3156
- "TTL":{"shape":"TTL"},
3157
- "ResourceRecords":{"shape":"ResourceRecords"},
3158
- "AliasTarget":{"shape":"AliasTarget"},
3159
- "HealthCheckId":{"shape":"HealthCheckId"},
3160
- "TrafficPolicyInstanceId":{"shape":"TrafficPolicyInstanceId"}
3161
- }
3162
- },
3163
- "ResourceRecordSetFailover":{
3164
- "type":"string",
3165
- "enum":[
3166
- "PRIMARY",
3167
- "SECONDARY"
3168
- ]
3169
- },
3170
- "ResourceRecordSetIdentifier":{
3171
- "type":"string",
3172
- "max":128,
3173
- "min":1
3174
- },
3175
- "ResourceRecordSetMultiValueAnswer":{"type":"boolean"},
3176
- "ResourceRecordSetRegion":{
3177
- "type":"string",
3178
- "enum":[
3179
- "us-east-1",
3180
- "us-east-2",
3181
- "us-west-1",
3182
- "us-west-2",
3183
- "ca-central-1",
3184
- "eu-west-1",
3185
- "eu-west-2",
3186
- "eu-west-3",
3187
- "eu-central-1",
3188
- "ap-southeast-1",
3189
- "ap-southeast-2",
3190
- "ap-northeast-1",
3191
- "ap-northeast-2",
3192
- "ap-northeast-3",
3193
- "eu-north-1",
3194
- "sa-east-1",
3195
- "cn-north-1",
3196
- "cn-northwest-1",
3197
- "ap-south-1"
3198
- ],
3199
- "max":64,
3200
- "min":1
3201
- },
3202
- "ResourceRecordSetWeight":{
3203
- "type":"long",
3204
- "max":255,
3205
- "min":0
3206
- },
3207
- "ResourceRecordSets":{
3208
- "type":"list",
3209
- "member":{
3210
- "shape":"ResourceRecordSet",
3211
- "locationName":"ResourceRecordSet"
3212
- }
3213
- },
3214
- "ResourceRecords":{
3215
- "type":"list",
3216
- "member":{
3217
- "shape":"ResourceRecord",
3218
- "locationName":"ResourceRecord"
3219
- },
3220
- "min":1
3221
- },
3222
- "ResourceTagSet":{
3223
- "type":"structure",
3224
- "members":{
3225
- "ResourceType":{"shape":"TagResourceType"},
3226
- "ResourceId":{"shape":"TagResourceId"},
3227
- "Tags":{"shape":"TagList"}
3228
- }
3229
- },
3230
- "ResourceTagSetList":{
3231
- "type":"list",
3232
- "member":{
3233
- "shape":"ResourceTagSet",
3234
- "locationName":"ResourceTagSet"
3235
- }
3236
- },
3237
- "ResourceURI":{
3238
- "type":"string",
3239
- "max":1024
3240
- },
3241
- "ReusableDelegationSetLimit":{
3242
- "type":"structure",
3243
- "required":[
3244
- "Type",
3245
- "Value"
3246
- ],
3247
- "members":{
3248
- "Type":{"shape":"ReusableDelegationSetLimitType"},
3249
- "Value":{"shape":"LimitValue"}
3250
- }
3251
- },
3252
- "ReusableDelegationSetLimitType":{
3253
- "type":"string",
3254
- "enum":["MAX_ZONES_BY_REUSABLE_DELEGATION_SET"]
3255
- },
3256
- "SearchString":{
3257
- "type":"string",
3258
- "max":255
3259
- },
3260
- "ServicePrincipal":{
3261
- "type":"string",
3262
- "max":128
3263
- },
3264
- "Statistic":{
3265
- "type":"string",
3266
- "enum":[
3267
- "Average",
3268
- "Sum",
3269
- "SampleCount",
3270
- "Maximum",
3271
- "Minimum"
3272
- ]
3273
- },
3274
- "Status":{"type":"string"},
3275
- "StatusReport":{
3276
- "type":"structure",
3277
- "members":{
3278
- "Status":{"shape":"Status"},
3279
- "CheckedTime":{"shape":"TimeStamp"}
3280
- }
3281
- },
3282
- "SubnetMask":{
3283
- "type":"string",
3284
- "max":3,
3285
- "min":0
3286
- },
3287
- "TTL":{
3288
- "type":"long",
3289
- "max":2147483647,
3290
- "min":0
3291
- },
3292
- "Tag":{
3293
- "type":"structure",
3294
- "members":{
3295
- "Key":{"shape":"TagKey"},
3296
- "Value":{"shape":"TagValue"}
3297
- }
3298
- },
3299
- "TagKey":{
3300
- "type":"string",
3301
- "max":128
3302
- },
3303
- "TagKeyList":{
3304
- "type":"list",
3305
- "member":{
3306
- "shape":"TagKey",
3307
- "locationName":"Key"
3308
- },
3309
- "max":10,
3310
- "min":1
3311
- },
3312
- "TagList":{
3313
- "type":"list",
3314
- "member":{
3315
- "shape":"Tag",
3316
- "locationName":"Tag"
3317
- },
3318
- "max":10,
3319
- "min":1
3320
- },
3321
- "TagResourceId":{
3322
- "type":"string",
3323
- "max":64
3324
- },
3325
- "TagResourceIdList":{
3326
- "type":"list",
3327
- "member":{
3328
- "shape":"TagResourceId",
3329
- "locationName":"ResourceId"
3330
- },
3331
- "max":10,
3332
- "min":1
3333
- },
3334
- "TagResourceType":{
3335
- "type":"string",
3336
- "enum":[
3337
- "healthcheck",
3338
- "hostedzone"
3339
- ]
3340
- },
3341
- "TagValue":{
3342
- "type":"string",
3343
- "max":256
3344
- },
3345
- "TestDNSAnswerRequest":{
3346
- "type":"structure",
3347
- "required":[
3348
- "HostedZoneId",
3349
- "RecordName",
3350
- "RecordType"
3351
- ],
3352
- "members":{
3353
- "HostedZoneId":{
3354
- "shape":"ResourceId",
3355
- "location":"querystring",
3356
- "locationName":"hostedzoneid"
3357
- },
3358
- "RecordName":{
3359
- "shape":"DNSName",
3360
- "location":"querystring",
3361
- "locationName":"recordname"
3362
- },
3363
- "RecordType":{
3364
- "shape":"RRType",
3365
- "location":"querystring",
3366
- "locationName":"recordtype"
3367
- },
3368
- "ResolverIP":{
3369
- "shape":"IPAddress",
3370
- "location":"querystring",
3371
- "locationName":"resolverip"
3372
- },
3373
- "EDNS0ClientSubnetIP":{
3374
- "shape":"IPAddress",
3375
- "location":"querystring",
3376
- "locationName":"edns0clientsubnetip"
3377
- },
3378
- "EDNS0ClientSubnetMask":{
3379
- "shape":"SubnetMask",
3380
- "location":"querystring",
3381
- "locationName":"edns0clientsubnetmask"
3382
- }
3383
- }
3384
- },
3385
- "TestDNSAnswerResponse":{
3386
- "type":"structure",
3387
- "required":[
3388
- "Nameserver",
3389
- "RecordName",
3390
- "RecordType",
3391
- "RecordData",
3392
- "ResponseCode",
3393
- "Protocol"
3394
- ],
3395
- "members":{
3396
- "Nameserver":{"shape":"Nameserver"},
3397
- "RecordName":{"shape":"DNSName"},
3398
- "RecordType":{"shape":"RRType"},
3399
- "RecordData":{"shape":"RecordData"},
3400
- "ResponseCode":{"shape":"DNSRCode"},
3401
- "Protocol":{"shape":"TransportProtocol"}
3402
- }
3403
- },
3404
- "Threshold":{"type":"double"},
3405
- "ThrottlingException":{
3406
- "type":"structure",
3407
- "members":{
3408
- "message":{"shape":"ErrorMessage"}
3409
- },
3410
- "error":{"httpStatusCode":400},
3411
- "exception":true
3412
- },
3413
- "TimeStamp":{"type":"timestamp"},
3414
- "TooManyHealthChecks":{
3415
- "type":"structure",
3416
- "members":{
3417
- "message":{"shape":"ErrorMessage"}
3418
- },
3419
- "exception":true
3420
- },
3421
- "TooManyHostedZones":{
3422
- "type":"structure",
3423
- "members":{
3424
- "message":{"shape":"ErrorMessage"}
3425
- },
3426
- "error":{"httpStatusCode":400},
3427
- "exception":true
3428
- },
3429
- "TooManyTrafficPolicies":{
3430
- "type":"structure",
3431
- "members":{
3432
- "message":{"shape":"ErrorMessage"}
3433
- },
3434
- "error":{"httpStatusCode":400},
3435
- "exception":true
3436
- },
3437
- "TooManyTrafficPolicyInstances":{
3438
- "type":"structure",
3439
- "members":{
3440
- "message":{"shape":"ErrorMessage"}
3441
- },
3442
- "error":{"httpStatusCode":400},
3443
- "exception":true
3444
- },
3445
- "TooManyTrafficPolicyVersionsForCurrentPolicy":{
3446
- "type":"structure",
3447
- "members":{
3448
- "message":{"shape":"ErrorMessage"}
3449
- },
3450
- "error":{"httpStatusCode":400},
3451
- "exception":true
3452
- },
3453
- "TooManyVPCAssociationAuthorizations":{
3454
- "type":"structure",
3455
- "members":{
3456
- "message":{"shape":"ErrorMessage"}
3457
- },
3458
- "error":{"httpStatusCode":400},
3459
- "exception":true
3460
- },
3461
- "TrafficPolicies":{
3462
- "type":"list",
3463
- "member":{
3464
- "shape":"TrafficPolicy",
3465
- "locationName":"TrafficPolicy"
3466
- }
3467
- },
3468
- "TrafficPolicy":{
3469
- "type":"structure",
3470
- "required":[
3471
- "Id",
3472
- "Version",
3473
- "Name",
3474
- "Type",
3475
- "Document"
3476
- ],
3477
- "members":{
3478
- "Id":{"shape":"TrafficPolicyId"},
3479
- "Version":{"shape":"TrafficPolicyVersion"},
3480
- "Name":{"shape":"TrafficPolicyName"},
3481
- "Type":{"shape":"RRType"},
3482
- "Document":{"shape":"TrafficPolicyDocument"},
3483
- "Comment":{"shape":"TrafficPolicyComment"}
3484
- }
3485
- },
3486
- "TrafficPolicyAlreadyExists":{
3487
- "type":"structure",
3488
- "members":{
3489
- "message":{"shape":"ErrorMessage"}
3490
- },
3491
- "error":{"httpStatusCode":409},
3492
- "exception":true
3493
- },
3494
- "TrafficPolicyComment":{
3495
- "type":"string",
3496
- "max":1024
3497
- },
3498
- "TrafficPolicyDocument":{
3499
- "type":"string",
3500
- "max":102400
3501
- },
3502
- "TrafficPolicyId":{
3503
- "type":"string",
3504
- "max":36,
3505
- "min":1
3506
- },
3507
- "TrafficPolicyInUse":{
3508
- "type":"structure",
3509
- "members":{
3510
- "message":{"shape":"ErrorMessage"}
3511
- },
3512
- "error":{"httpStatusCode":400},
3513
- "exception":true
3514
- },
3515
- "TrafficPolicyInstance":{
3516
- "type":"structure",
3517
- "required":[
3518
- "Id",
3519
- "HostedZoneId",
3520
- "Name",
3521
- "TTL",
3522
- "State",
3523
- "Message",
3524
- "TrafficPolicyId",
3525
- "TrafficPolicyVersion",
3526
- "TrafficPolicyType"
3527
- ],
3528
- "members":{
3529
- "Id":{"shape":"TrafficPolicyInstanceId"},
3530
- "HostedZoneId":{"shape":"ResourceId"},
3531
- "Name":{"shape":"DNSName"},
3532
- "TTL":{"shape":"TTL"},
3533
- "State":{"shape":"TrafficPolicyInstanceState"},
3534
- "Message":{"shape":"Message"},
3535
- "TrafficPolicyId":{"shape":"TrafficPolicyId"},
3536
- "TrafficPolicyVersion":{"shape":"TrafficPolicyVersion"},
3537
- "TrafficPolicyType":{"shape":"RRType"}
3538
- }
3539
- },
3540
- "TrafficPolicyInstanceAlreadyExists":{
3541
- "type":"structure",
3542
- "members":{
3543
- "message":{"shape":"ErrorMessage"}
3544
- },
3545
- "error":{"httpStatusCode":409},
3546
- "exception":true
3547
- },
3548
- "TrafficPolicyInstanceCount":{"type":"integer"},
3549
- "TrafficPolicyInstanceId":{
3550
- "type":"string",
3551
- "max":36,
3552
- "min":1
3553
- },
3554
- "TrafficPolicyInstanceState":{"type":"string"},
3555
- "TrafficPolicyInstances":{
3556
- "type":"list",
3557
- "member":{
3558
- "shape":"TrafficPolicyInstance",
3559
- "locationName":"TrafficPolicyInstance"
3560
- }
3561
- },
3562
- "TrafficPolicyName":{
3563
- "type":"string",
3564
- "max":512
3565
- },
3566
- "TrafficPolicySummaries":{
3567
- "type":"list",
3568
- "member":{
3569
- "shape":"TrafficPolicySummary",
3570
- "locationName":"TrafficPolicySummary"
3571
- }
3572
- },
3573
- "TrafficPolicySummary":{
3574
- "type":"structure",
3575
- "required":[
3576
- "Id",
3577
- "Name",
3578
- "Type",
3579
- "LatestVersion",
3580
- "TrafficPolicyCount"
3581
- ],
3582
- "members":{
3583
- "Id":{"shape":"TrafficPolicyId"},
3584
- "Name":{"shape":"TrafficPolicyName"},
3585
- "Type":{"shape":"RRType"},
3586
- "LatestVersion":{"shape":"TrafficPolicyVersion"},
3587
- "TrafficPolicyCount":{"shape":"TrafficPolicyVersion"}
3588
- }
3589
- },
3590
- "TrafficPolicyVersion":{
3591
- "type":"integer",
3592
- "max":1000,
3593
- "min":1
3594
- },
3595
- "TrafficPolicyVersionMarker":{
3596
- "type":"string",
3597
- "max":4
3598
- },
3599
- "TransportProtocol":{"type":"string"},
3600
- "UpdateHealthCheckRequest":{
3601
- "type":"structure",
3602
- "required":["HealthCheckId"],
3603
- "members":{
3604
- "HealthCheckId":{
3605
- "shape":"HealthCheckId",
3606
- "location":"uri",
3607
- "locationName":"HealthCheckId"
3608
- },
3609
- "HealthCheckVersion":{"shape":"HealthCheckVersion"},
3610
- "IPAddress":{"shape":"IPAddress"},
3611
- "Port":{"shape":"Port"},
3612
- "ResourcePath":{"shape":"ResourcePath"},
3613
- "FullyQualifiedDomainName":{"shape":"FullyQualifiedDomainName"},
3614
- "SearchString":{"shape":"SearchString"},
3615
- "FailureThreshold":{"shape":"FailureThreshold"},
3616
- "Inverted":{"shape":"Inverted"},
3617
- "Disabled":{"shape":"Disabled"},
3618
- "HealthThreshold":{"shape":"HealthThreshold"},
3619
- "ChildHealthChecks":{"shape":"ChildHealthCheckList"},
3620
- "EnableSNI":{"shape":"EnableSNI"},
3621
- "Regions":{"shape":"HealthCheckRegionList"},
3622
- "AlarmIdentifier":{"shape":"AlarmIdentifier"},
3623
- "InsufficientDataHealthStatus":{"shape":"InsufficientDataHealthStatus"},
3624
- "ResetElements":{"shape":"ResettableElementNameList"}
3625
- }
3626
- },
3627
- "UpdateHealthCheckResponse":{
3628
- "type":"structure",
3629
- "required":["HealthCheck"],
3630
- "members":{
3631
- "HealthCheck":{"shape":"HealthCheck"}
3632
- }
3633
- },
3634
- "UpdateHostedZoneCommentRequest":{
3635
- "type":"structure",
3636
- "required":["Id"],
3637
- "members":{
3638
- "Id":{
3639
- "shape":"ResourceId",
3640
- "location":"uri",
3641
- "locationName":"Id"
3642
- },
3643
- "Comment":{"shape":"ResourceDescription"}
3644
- }
3645
- },
3646
- "UpdateHostedZoneCommentResponse":{
3647
- "type":"structure",
3648
- "required":["HostedZone"],
3649
- "members":{
3650
- "HostedZone":{"shape":"HostedZone"}
3651
- }
3652
- },
3653
- "UpdateTrafficPolicyCommentRequest":{
3654
- "type":"structure",
3655
- "required":[
3656
- "Id",
3657
- "Version",
3658
- "Comment"
3659
- ],
3660
- "members":{
3661
- "Id":{
3662
- "shape":"TrafficPolicyId",
3663
- "location":"uri",
3664
- "locationName":"Id"
3665
- },
3666
- "Version":{
3667
- "shape":"TrafficPolicyVersion",
3668
- "location":"uri",
3669
- "locationName":"Version"
3670
- },
3671
- "Comment":{"shape":"TrafficPolicyComment"}
3672
- }
3673
- },
3674
- "UpdateTrafficPolicyCommentResponse":{
3675
- "type":"structure",
3676
- "required":["TrafficPolicy"],
3677
- "members":{
3678
- "TrafficPolicy":{"shape":"TrafficPolicy"}
3679
- }
3680
- },
3681
- "UpdateTrafficPolicyInstanceRequest":{
3682
- "type":"structure",
3683
- "required":[
3684
- "Id",
3685
- "TTL",
3686
- "TrafficPolicyId",
3687
- "TrafficPolicyVersion"
3688
- ],
3689
- "members":{
3690
- "Id":{
3691
- "shape":"TrafficPolicyInstanceId",
3692
- "location":"uri",
3693
- "locationName":"Id"
3694
- },
3695
- "TTL":{"shape":"TTL"},
3696
- "TrafficPolicyId":{"shape":"TrafficPolicyId"},
3697
- "TrafficPolicyVersion":{"shape":"TrafficPolicyVersion"}
3698
- }
3699
- },
3700
- "UpdateTrafficPolicyInstanceResponse":{
3701
- "type":"structure",
3702
- "required":["TrafficPolicyInstance"],
3703
- "members":{
3704
- "TrafficPolicyInstance":{"shape":"TrafficPolicyInstance"}
3705
- }
3706
- },
3707
- "UsageCount":{
3708
- "type":"long",
3709
- "min":0
3710
- },
3711
- "VPC":{
3712
- "type":"structure",
3713
- "members":{
3714
- "VPCRegion":{"shape":"VPCRegion"},
3715
- "VPCId":{"shape":"VPCId"}
3716
- }
3717
- },
3718
- "VPCAssociationAuthorizationNotFound":{
3719
- "type":"structure",
3720
- "members":{
3721
- "message":{"shape":"ErrorMessage"}
3722
- },
3723
- "error":{"httpStatusCode":404},
3724
- "exception":true
3725
- },
3726
- "VPCAssociationNotFound":{
3727
- "type":"structure",
3728
- "members":{
3729
- "message":{"shape":"ErrorMessage"}
3730
- },
3731
- "error":{"httpStatusCode":404},
3732
- "exception":true
3733
- },
3734
- "VPCId":{
3735
- "type":"string",
3736
- "max":1024
3737
- },
3738
- "VPCRegion":{
3739
- "type":"string",
3740
- "enum":[
3741
- "us-east-1",
3742
- "us-east-2",
3743
- "us-west-1",
3744
- "us-west-2",
3745
- "eu-west-1",
3746
- "eu-west-2",
3747
- "eu-west-3",
3748
- "eu-central-1",
3749
- "ap-southeast-1",
3750
- "ap-southeast-2",
3751
- "ap-south-1",
3752
- "ap-northeast-1",
3753
- "ap-northeast-2",
3754
- "ap-northeast-3",
3755
- "eu-north-1",
3756
- "sa-east-1",
3757
- "ca-central-1",
3758
- "cn-north-1"
3759
- ],
3760
- "max":64,
3761
- "min":1
3762
- },
3763
- "VPCs":{
3764
- "type":"list",
3765
- "member":{
3766
- "shape":"VPC",
3767
- "locationName":"VPC"
3768
- },
3769
- "min":1
3770
- }
3771
- }
3772
- }