aws-sdk-core 2.11.502 → 3.94.0

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