aws-sdk-core 2.11.212 → 3.170.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1183) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1589 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/lib/aws-defaults/default_configuration.rb +153 -0
  6. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  7. data/lib/aws-defaults.rb +3 -0
  8. data/lib/aws-sdk-core/arn.rb +105 -0
  9. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  10. data/lib/aws-sdk-core/assume_role_credentials.rb +23 -7
  11. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +108 -0
  12. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  13. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  14. data/lib/aws-sdk-core/binary/encode_handler.rb +45 -0
  15. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  16. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  17. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  18. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  19. data/lib/aws-sdk-core/binary.rb +8 -0
  20. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  22. data/lib/aws-sdk-core/client_stubs.rb +31 -21
  23. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  24. data/lib/aws-sdk-core/credential_provider_chain.rb +115 -35
  25. data/lib/aws-sdk-core/credentials.rb +2 -0
  26. data/lib/aws-sdk-core/deprecations.rb +17 -11
  27. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  28. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  29. data/lib/aws-sdk-core/ecs_credentials.rb +26 -11
  30. data/lib/aws-sdk-core/endpoint_cache.rb +16 -11
  31. data/lib/aws-sdk-core/endpoints/condition.rb +41 -0
  32. data/lib/aws-sdk-core/endpoints/endpoint.rb +17 -0
  33. data/lib/aws-sdk-core/endpoints/endpoint_rule.rb +75 -0
  34. data/lib/aws-sdk-core/endpoints/error_rule.rb +42 -0
  35. data/lib/aws-sdk-core/endpoints/function.rb +80 -0
  36. data/lib/aws-sdk-core/endpoints/matchers.rb +127 -0
  37. data/lib/aws-sdk-core/endpoints/reference.rb +31 -0
  38. data/lib/aws-sdk-core/endpoints/rule.rb +25 -0
  39. data/lib/aws-sdk-core/endpoints/rule_set.rb +52 -0
  40. data/lib/aws-sdk-core/endpoints/rules_provider.rb +37 -0
  41. data/lib/aws-sdk-core/endpoints/templater.rb +58 -0
  42. data/lib/aws-sdk-core/endpoints/tree_rule.rb +45 -0
  43. data/lib/aws-sdk-core/endpoints/url.rb +60 -0
  44. data/lib/aws-sdk-core/endpoints.rb +74 -0
  45. data/lib/aws-sdk-core/errors.rb +229 -31
  46. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  47. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  48. data/lib/aws-sdk-core/instance_profile_credentials.rb +231 -42
  49. data/lib/aws-sdk-core/json/builder.rb +6 -2
  50. data/lib/aws-sdk-core/json/error_handler.rb +31 -3
  51. data/lib/aws-sdk-core/json/handler.rb +24 -3
  52. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  53. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  54. data/lib/aws-sdk-core/json/parser.rb +11 -1
  55. data/lib/aws-sdk-core/json.rb +15 -33
  56. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  57. data/lib/aws-sdk-core/log/handler.rb +2 -0
  58. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  59. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  60. data/lib/aws-sdk-core/pageable_response.rb +119 -47
  61. data/lib/aws-sdk-core/pager.rb +35 -25
  62. data/lib/aws-sdk-core/param_converter.rb +5 -3
  63. data/lib/aws-sdk-core/param_validator.rb +109 -26
  64. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  65. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  66. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  67. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  68. data/lib/aws-sdk-core/plugins/bearer_authorization.rb +67 -0
  69. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  70. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  71. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  72. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +105 -0
  73. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  74. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +58 -53
  75. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +17 -14
  76. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  77. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  78. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  79. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  80. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  81. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  82. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +36 -6
  83. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  84. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  85. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  86. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  87. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  88. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  89. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  90. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  91. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  92. data/lib/aws-sdk-core/plugins/recursion_detection.rb +38 -0
  93. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +99 -28
  94. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  95. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  96. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  97. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +147 -0
  98. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  99. data/lib/aws-sdk-core/plugins/retry_errors.rb +346 -97
  100. data/lib/aws-sdk-core/plugins/sign.rb +200 -0
  101. data/lib/aws-sdk-core/plugins/signature_v2.rb +54 -0
  102. data/lib/aws-sdk-core/plugins/signature_v4.rb +151 -0
  103. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  104. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  105. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  106. data/lib/aws-sdk-core/process_credentials.rb +79 -0
  107. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  108. data/lib/aws-sdk-core/query/handler.rb +22 -16
  109. data/lib/aws-sdk-core/query/param.rb +2 -0
  110. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  111. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  112. data/lib/aws-sdk-core/query.rb +7 -0
  113. data/lib/aws-sdk-core/refreshing_credentials.rb +45 -12
  114. data/lib/aws-sdk-core/refreshing_token.rb +71 -0
  115. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  116. data/lib/aws-sdk-core/rest/handler.rb +4 -1
  117. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  118. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  119. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  120. data/lib/aws-sdk-core/rest/request/headers.rb +26 -6
  121. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  122. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  123. data/lib/aws-sdk-core/rest/response/headers.rb +8 -3
  124. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  125. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  126. data/lib/aws-sdk-core/rest.rb +12 -0
  127. data/lib/aws-sdk-core/shared_config.rb +272 -72
  128. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  129. data/lib/aws-sdk-core/sso_credentials.rb +172 -0
  130. data/lib/aws-sdk-core/sso_token_provider.rb +135 -0
  131. data/lib/aws-sdk-core/static_token_provider.rb +14 -0
  132. data/lib/aws-sdk-core/structure.rb +39 -17
  133. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  134. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  135. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  136. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  137. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  138. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  139. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  140. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  141. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  142. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  143. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  144. data/lib/aws-sdk-core/token.rb +31 -0
  145. data/lib/aws-sdk-core/token_provider.rb +15 -0
  146. data/lib/aws-sdk-core/token_provider_chain.rb +51 -0
  147. data/lib/aws-sdk-core/type_builder.rb +2 -0
  148. data/lib/aws-sdk-core/util.rb +72 -0
  149. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  150. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  151. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  152. data/lib/aws-sdk-core/waiters.rb +5 -0
  153. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  154. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  155. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  156. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  157. data/lib/aws-sdk-core/xml/error_handler.rb +37 -6
  158. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  159. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  160. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +4 -0
  161. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +3 -1
  162. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  163. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  164. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  165. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  166. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  167. data/lib/aws-sdk-core/xml.rb +11 -0
  168. data/lib/aws-sdk-core.rb +115 -532
  169. data/lib/aws-sdk-sso/client.rb +610 -0
  170. data/lib/aws-sdk-sso/client_api.rb +190 -0
  171. data/lib/aws-sdk-sso/customizations.rb +1 -0
  172. data/lib/aws-sdk-sso/endpoint_parameters.rb +66 -0
  173. data/lib/aws-sdk-sso/endpoint_provider.rb +51 -0
  174. data/lib/aws-sdk-sso/endpoints.rb +71 -0
  175. data/lib/aws-sdk-sso/errors.rb +102 -0
  176. data/lib/aws-sdk-sso/plugins/endpoints.rb +76 -0
  177. data/lib/aws-sdk-sso/resource.rb +26 -0
  178. data/lib/aws-sdk-sso/types.rb +317 -0
  179. data/lib/aws-sdk-sso.rb +59 -0
  180. data/lib/aws-sdk-ssooidc/client.rb +606 -0
  181. data/lib/aws-sdk-ssooidc/client_api.rb +216 -0
  182. data/lib/aws-sdk-ssooidc/customizations.rb +1 -0
  183. data/lib/aws-sdk-ssooidc/endpoint_parameters.rb +66 -0
  184. data/lib/aws-sdk-ssooidc/endpoint_provider.rb +51 -0
  185. data/lib/aws-sdk-ssooidc/endpoints.rb +57 -0
  186. data/lib/aws-sdk-ssooidc/errors.rb +290 -0
  187. data/lib/aws-sdk-ssooidc/plugins/endpoints.rb +74 -0
  188. data/lib/aws-sdk-ssooidc/resource.rb +26 -0
  189. data/lib/aws-sdk-ssooidc/types.rb +502 -0
  190. data/lib/aws-sdk-ssooidc.rb +59 -0
  191. data/lib/aws-sdk-sts/client.rb +2343 -0
  192. data/lib/aws-sdk-sts/client_api.rb +344 -0
  193. data/lib/aws-sdk-sts/customizations.rb +4 -0
  194. data/lib/aws-sdk-sts/endpoint_parameters.rb +78 -0
  195. data/lib/aws-sdk-sts/endpoint_provider.rb +109 -0
  196. data/lib/aws-sdk-sts/endpoints.rb +135 -0
  197. data/lib/aws-sdk-sts/errors.rb +166 -0
  198. data/lib/aws-sdk-sts/plugins/endpoints.rb +84 -0
  199. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  200. data/lib/aws-sdk-sts/presigner.rb +73 -0
  201. data/lib/aws-sdk-sts/resource.rb +26 -0
  202. data/lib/aws-sdk-sts/types.rb +1566 -0
  203. data/lib/aws-sdk-sts.rb +59 -0
  204. data/lib/seahorse/client/async_base.rb +51 -0
  205. data/lib/seahorse/client/async_response.rb +64 -0
  206. data/lib/seahorse/client/base.rb +8 -9
  207. data/lib/seahorse/client/block_io.rb +6 -2
  208. data/lib/seahorse/client/configuration.rb +12 -4
  209. data/lib/seahorse/client/events.rb +3 -1
  210. data/lib/seahorse/client/h2/connection.rb +247 -0
  211. data/lib/seahorse/client/h2/handler.rb +152 -0
  212. data/lib/seahorse/client/handler.rb +2 -0
  213. data/lib/seahorse/client/handler_builder.rb +2 -0
  214. data/lib/seahorse/client/handler_list.rb +2 -0
  215. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  216. data/lib/seahorse/client/http/async_response.rb +44 -0
  217. data/lib/seahorse/client/http/headers.rb +2 -0
  218. data/lib/seahorse/client/http/request.rb +5 -3
  219. data/lib/seahorse/client/http/response.rb +18 -11
  220. data/lib/seahorse/client/logging/formatter.rb +8 -2
  221. data/lib/seahorse/client/logging/handler.rb +4 -0
  222. data/lib/seahorse/client/managed_file.rb +2 -0
  223. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  224. data/lib/seahorse/client/net_http/handler.rb +29 -7
  225. data/lib/seahorse/client/net_http/patches.rb +18 -79
  226. data/lib/seahorse/client/networking_error.rb +30 -0
  227. data/lib/seahorse/client/plugin.rb +69 -6
  228. data/lib/seahorse/client/plugin_list.rb +2 -0
  229. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  230. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  231. data/lib/seahorse/client/plugins/h2.rb +69 -0
  232. data/lib/seahorse/client/plugins/logging.rb +19 -19
  233. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  234. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  235. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  236. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  237. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  238. data/lib/seahorse/client/request.rb +2 -0
  239. data/lib/seahorse/client/request_context.rb +7 -0
  240. data/lib/seahorse/client/response.rb +5 -5
  241. data/lib/seahorse/model/api.rb +39 -0
  242. data/lib/seahorse/model/authorizer.rb +23 -0
  243. data/lib/seahorse/model/operation.rb +19 -0
  244. data/lib/seahorse/model/shapes.rb +71 -2
  245. data/lib/seahorse/util.rb +13 -23
  246. data/lib/seahorse/version.rb +2 -0
  247. data/lib/seahorse.rb +63 -60
  248. metadata +177 -951
  249. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  250. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  251. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  252. data/apis/acm/2015-12-08/api-2.json +0 -808
  253. data/apis/acm/2015-12-08/examples-1.json +0 -5
  254. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  255. data/apis/acm/2015-12-08/smoke.json +0 -18
  256. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  257. data/apis/acm-pca/2017-08-22/api-2.json +0 -941
  258. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  259. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -10
  260. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  261. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -3104
  262. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  263. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -79
  264. data/apis/amplify/2017-07-25/api-2.json +0 -1453
  265. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  266. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  267. data/apis/apigateway/2015-07-09/api-2.json +0 -5351
  268. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  269. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  270. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  271. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -96
  272. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  273. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5531
  274. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  275. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -766
  276. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  277. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  278. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  279. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  280. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  281. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  282. data/apis/appstream/2016-12-01/api-2.json +0 -2171
  283. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  284. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  285. data/apis/appstream/2016-12-01/smoke.json +0 -11
  286. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  287. data/apis/appsync/2017-07-25/api-2.json +0 -1812
  288. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  289. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  290. data/apis/athena/2017-05-18/api-2.json +0 -626
  291. data/apis/athena/2017-05-18/examples-1.json +0 -5
  292. data/apis/athena/2017-05-18/paginators-1.json +0 -19
  293. data/apis/athena/2017-05-18/smoke.json +0 -11
  294. data/apis/autoscaling/2011-01-01/api-2.json +0 -2450
  295. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  296. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  297. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  298. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  299. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  300. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  301. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  302. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  303. data/apis/backup/2018-11-15/api-2.json +0 -2150
  304. data/apis/backup/2018-11-15/examples-1.json +0 -5
  305. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  306. data/apis/batch/2016-08-10/api-2.json +0 -1072
  307. data/apis/batch/2016-08-10/examples-1.json +0 -589
  308. data/apis/batch/2016-08-10/paginators-1.json +0 -4
  309. data/apis/batch/2016-08-10/smoke.json +0 -11
  310. data/apis/budgets/2016-10-20/api-2.json +0 -801
  311. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  312. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  313. data/apis/ce/2017-10-25/api-2.json +0 -840
  314. data/apis/ce/2017-10-25/examples-1.json +0 -5
  315. data/apis/ce/2017-10-25/paginators-1.json +0 -4
  316. data/apis/chime/2018-05-01/api-2.json +0 -939
  317. data/apis/chime/2018-05-01/examples-1.json +0 -5
  318. data/apis/chime/2018-05-01/paginators-1.json +0 -14
  319. data/apis/cloud9/2017-09-23/api-2.json +0 -528
  320. data/apis/cloud9/2017-09-23/examples-1.json +0 -308
  321. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  322. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  323. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  324. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  325. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  326. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  327. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  328. data/apis/cloudformation/2010-05-15/api-2.json +0 -2686
  329. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  330. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  331. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  332. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -182
  333. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  334. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  335. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  336. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  337. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  338. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  339. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  340. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  341. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  342. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  343. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  344. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  345. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  346. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  347. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  348. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  349. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  350. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  351. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  352. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  353. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  354. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  355. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  356. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  357. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  358. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  359. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  360. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  361. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  362. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  363. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  364. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  365. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  366. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  367. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  368. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  369. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  370. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  371. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  372. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  373. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  374. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  375. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  376. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  377. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  378. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  379. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  380. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  381. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  382. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  383. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  384. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  385. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  386. data/apis/cloudtrail/2013-11-01/api-2.json +0 -978
  387. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  388. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  389. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  390. data/apis/codebuild/2016-10-06/api-2.json +0 -1211
  391. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  392. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  393. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  394. data/apis/codecommit/2015-04-13/api-2.json +0 -2842
  395. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  396. data/apis/codecommit/2015-04-13/paginators-1.json +0 -39
  397. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  398. data/apis/codedeploy/2014-10-06/api-2.json +0 -3062
  399. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  400. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  401. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  402. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  403. data/apis/codepipeline/2015-07-09/api-2.json +0 -2085
  404. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  405. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -4
  406. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  407. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  408. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  409. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  410. data/apis/codestar/2017-04-19/smoke.json +0 -11
  411. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  412. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  413. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  414. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5194
  415. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  416. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -4
  417. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  418. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  419. data/apis/comprehend/2017-11-27/api-2.json +0 -2106
  420. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  421. data/apis/comprehend/2017-11-27/paginators-1.json +0 -29
  422. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -248
  423. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  424. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  425. data/apis/config/2014-11-12/api-2.json +0 -2477
  426. data/apis/config/2014-11-12/examples-1.json +0 -5
  427. data/apis/config/2014-11-12/paginators-1.json +0 -10
  428. data/apis/config/2014-11-12/smoke.json +0 -19
  429. data/apis/connect/2017-08-08/api-2.json +0 -1379
  430. data/apis/connect/2017-08-08/examples-1.json +0 -5
  431. data/apis/connect/2017-08-08/paginators-1.json +0 -14
  432. data/apis/cur/2017-01-06/api-2.json +0 -226
  433. data/apis/cur/2017-01-06/examples-1.json +0 -5
  434. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  435. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  436. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  437. data/apis/datasync/2018-11-09/api-2.json +0 -1060
  438. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  439. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  440. data/apis/dax/2017-04-19/api-2.json +0 -1140
  441. data/apis/dax/2017-04-19/examples-1.json +0 -5
  442. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  443. data/apis/devicefarm/2015-06-23/api-2.json +0 -3053
  444. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  445. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  446. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  447. data/apis/directconnect/2012-10-25/api-2.json +0 -1689
  448. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  449. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  450. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  451. data/apis/discovery/2015-11-01/api-2.json +0 -1331
  452. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  453. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  454. data/apis/discovery/2015-11-01/smoke.json +0 -11
  455. data/apis/dlm/2018-01-12/api-2.json +0 -418
  456. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  457. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  458. data/apis/dms/2016-01-01/api-2.json +0 -2040
  459. data/apis/dms/2016-01-01/examples-1.json +0 -1053
  460. data/apis/dms/2016-01-01/paginators-1.json +0 -74
  461. data/apis/dms/2016-01-01/smoke.json +0 -18
  462. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  463. data/apis/docdb/2014-10-31/api-2.json +0 -2413
  464. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  465. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  466. data/apis/docdb/2014-10-31/smoke.json +0 -18
  467. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  468. data/apis/ds/2015-04-16/api-2.json +0 -2631
  469. data/apis/ds/2015-04-16/examples-1.json +0 -5
  470. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  471. data/apis/ds/2015-04-16/smoke.json +0 -20
  472. data/apis/dynamodb/2011-12-05/api-2.json +0 -803
  473. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  474. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  475. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  476. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  477. data/apis/dynamodb/2012-08-10/api-2.json +0 -2801
  478. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  479. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  480. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  481. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  482. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  483. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  484. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  485. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  486. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  487. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  488. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  489. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  490. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  491. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  492. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  493. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  494. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  495. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  496. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  497. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  498. data/apis/ec2/2016-11-15/api-2.json +0 -23190
  499. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  500. data/apis/ec2/2016-11-15/paginators-1.json +0 -153
  501. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  502. data/apis/ec2/2016-11-15/smoke.json +0 -20
  503. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  504. data/apis/ecr/2015-09-21/api-2.json +0 -1328
  505. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  506. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  507. data/apis/ecr/2015-09-21/smoke.json +0 -18
  508. data/apis/ecs/2014-11-13/api-2.json +0 -2414
  509. data/apis/ecs/2014-11-13/examples-1.json +0 -952
  510. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  511. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  512. data/apis/eks/2017-11-01/api-2.json +0 -509
  513. data/apis/eks/2017-11-01/examples-1.json +0 -114
  514. data/apis/eks/2017-11-01/paginators-1.json +0 -4
  515. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  516. data/apis/elasticache/2015-02-02/api-2.json +0 -2793
  517. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  518. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  519. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  520. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  521. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2488
  522. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  523. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  524. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  525. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -805
  526. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  527. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  528. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  529. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  530. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  531. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  532. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  533. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  534. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2241
  535. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  536. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  537. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  538. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  539. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2086
  540. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  541. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -37
  542. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  543. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  544. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  545. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  546. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  547. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  548. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  549. data/apis/email/2010-12-01/api-2.json +0 -3134
  550. data/apis/email/2010-12-01/examples-1.json +0 -1021
  551. data/apis/email/2010-12-01/paginators-1.json +0 -18
  552. data/apis/email/2010-12-01/smoke.json +0 -18
  553. data/apis/email/2010-12-01/waiters-2.json +0 -18
  554. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  555. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  556. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  557. data/apis/es/2015-01-01/api-2.json +0 -1520
  558. data/apis/es/2015-01-01/examples-1.json +0 -5
  559. data/apis/es/2015-01-01/paginators-1.json +0 -29
  560. data/apis/es/2015-01-01/smoke.json +0 -18
  561. data/apis/events/2015-10-07/api-2.json +0 -850
  562. data/apis/events/2015-10-07/examples-1.json +0 -5
  563. data/apis/events/2015-10-07/paginators-1.json +0 -4
  564. data/apis/events/2015-10-07/smoke.json +0 -18
  565. data/apis/firehose/2015-08-04/api-2.json +0 -1376
  566. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  567. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  568. data/apis/firehose/2015-08-04/smoke.json +0 -18
  569. data/apis/fms/2018-01-01/api-2.json +0 -636
  570. data/apis/fms/2018-01-01/examples-1.json +0 -5
  571. data/apis/fms/2018-01-01/paginators-1.json +0 -4
  572. data/apis/fsx/2018-03-01/api-2.json +0 -953
  573. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  574. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  575. data/apis/gamelift/2015-10-01/api-2.json +0 -3243
  576. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  577. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  578. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  579. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  580. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  581. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  582. data/apis/glacier/2012-06-01/smoke.json +0 -18
  583. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  584. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -798
  585. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  586. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  587. data/apis/glue/2017-03-31/api-2.json +0 -4410
  588. data/apis/glue/2017-03-31/examples-1.json +0 -5
  589. data/apis/glue/2017-03-31/paginators-1.json +0 -69
  590. data/apis/glue/2017-03-31/smoke.json +0 -11
  591. data/apis/greengrass/2017-06-07/api-2.json +0 -4936
  592. data/apis/guardduty/2017-11-28/api-2.json +0 -3039
  593. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  594. data/apis/health/2016-08-04/api-2.json +0 -553
  595. data/apis/health/2016-08-04/examples-1.json +0 -5
  596. data/apis/health/2016-08-04/paginators-1.json +0 -31
  597. data/apis/health/2016-08-04/smoke.json +0 -11
  598. data/apis/iam/2010-05-08/api-2.json +0 -5629
  599. data/apis/iam/2010-05-08/examples-1.json +0 -1489
  600. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  601. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  602. data/apis/iam/2010-05-08/smoke.json +0 -18
  603. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  604. data/apis/importexport/2010-06-01/api-2.json +0 -667
  605. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  606. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  607. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  608. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  609. data/apis/inspector/2016-02-16/smoke.json +0 -18
  610. data/apis/iot/2015-05-28/api-2.json +0 -8866
  611. data/apis/iot/2015-05-28/examples-1.json +0 -5
  612. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  613. data/apis/iot/2015-05-28/smoke.json +0 -18
  614. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  615. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  616. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  617. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  618. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -769
  619. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -748
  620. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  621. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -4
  622. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2054
  623. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  624. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  625. data/apis/kafka/2018-11-14/api-2.json +0 -789
  626. data/apis/kafka/2018-11-14/paginators-1.json +0 -3
  627. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  628. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  629. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  630. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  631. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  632. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -318
  633. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  634. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -4
  635. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  636. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  637. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  638. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1378
  639. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  640. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  641. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -1984
  642. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  643. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  644. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -549
  645. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  646. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -4
  647. data/apis/kms/2014-11-01/api-2.json +0 -1833
  648. data/apis/kms/2014-11-01/examples-1.json +0 -906
  649. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  650. data/apis/kms/2014-11-01/smoke.json +0 -19
  651. data/apis/lambda/2014-11-11/api-2.json +0 -668
  652. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  653. data/apis/lambda/2015-03-31/api-2.json +0 -2317
  654. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  655. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  656. data/apis/lambda/2015-03-31/smoke.json +0 -18
  657. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  658. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  659. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  660. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  661. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  662. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  663. data/apis/lightsail/2016-11-28/api-2.json +0 -4732
  664. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  665. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  666. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  667. data/apis/logs/2014-03-28/api-2.json +0 -1689
  668. data/apis/logs/2014-03-28/examples-1.json +0 -5
  669. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  670. data/apis/logs/2014-03-28/smoke.json +0 -19
  671. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  672. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  673. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  674. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  675. data/apis/macie/2017-12-19/api-2.json +0 -365
  676. data/apis/macie/2017-12-19/examples-1.json +0 -5
  677. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  678. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -171
  679. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  680. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  681. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1586
  682. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -10
  683. data/apis/mediaconvert/2017-08-29/api-2.json +0 -7691
  684. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  685. data/apis/medialive/2017-10-14/api-2.json +0 -7865
  686. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -1780
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -16
  689. data/apis/mediastore/2017-09-01/api-2.json +0 -568
  690. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore/2017-09-01/paginators-1.json +0 -4
  692. data/apis/mediastore-data/2017-09-01/api-2.json +0 -392
  693. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -4
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -311
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -347
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/mobile/2017-07-01/api-2.json +0 -551
  701. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  702. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  703. data/apis/monitoring/2010-08-01/api-2.json +0 -1199
  704. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  705. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  706. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  707. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  708. data/apis/mq/2017-11-27/api-2.json +0 -2241
  709. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  710. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  711. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  712. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  713. data/apis/neptune/2014-10-31/api-2.json +0 -3506
  714. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  715. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  716. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  717. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  718. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  719. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  720. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  721. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  722. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  723. data/apis/opsworkscm/2016-11-01/api-2.json +0 -766
  724. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  725. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  726. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  727. data/apis/organizations/2016-11-28/api-2.json +0 -2137
  728. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  729. data/apis/organizations/2016-11-28/paginators-1.json +0 -69
  730. data/apis/pi/2018-02-27/api-2.json +0 -253
  731. data/apis/pi/2018-02-27/examples-1.json +0 -5
  732. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  733. data/apis/pinpoint/2016-12-01/api-2.json +0 -6965
  734. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  735. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -1710
  736. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  737. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -29
  738. data/apis/polly/2016-06-10/api-2.json +0 -795
  739. data/apis/polly/2016-06-10/examples-1.json +0 -171
  740. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  741. data/apis/polly/2016-06-10/smoke.json +0 -11
  742. data/apis/pricing/2017-10-15/api-2.json +0 -227
  743. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  744. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  745. data/apis/quicksight/2018-04-01/api-2.json +0 -1158
  746. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  747. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  748. data/apis/ram/2018-01-04/api-2.json +0 -964
  749. data/apis/ram/2018-01-04/examples-1.json +0 -5
  750. data/apis/ram/2018-01-04/paginators-1.json +0 -34
  751. data/apis/rds/2013-01-10/api-2.json +0 -2903
  752. data/apis/rds/2013-01-10/examples-1.json +0 -5
  753. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  754. data/apis/rds/2013-01-10/smoke.json +0 -18
  755. data/apis/rds/2013-02-12/api-2.json +0 -3059
  756. data/apis/rds/2013-02-12/examples-1.json +0 -5
  757. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  758. data/apis/rds/2013-02-12/smoke.json +0 -18
  759. data/apis/rds/2013-09-09/api-2.json +0 -3160
  760. data/apis/rds/2013-09-09/examples-1.json +0 -5
  761. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  762. data/apis/rds/2013-09-09/smoke.json +0 -18
  763. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  764. data/apis/rds/2014-09-01/api-2.json +0 -3273
  765. data/apis/rds/2014-09-01/examples-1.json +0 -5
  766. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  767. data/apis/rds/2014-09-01/smoke.json +0 -18
  768. data/apis/rds/2014-10-31/api-2.json +0 -6455
  769. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  770. data/apis/rds/2014-10-31/paginators-1.json +0 -128
  771. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  772. data/apis/rds/2014-10-31/smoke.json +0 -18
  773. data/apis/rds/2014-10-31/waiters-2.json +0 -175
  774. data/apis/rds/2015-11-12/api-2.json +0 -5509
  775. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  776. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  777. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  778. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  779. data/apis/rds-data/2018-08-01/api-2.json +0 -329
  780. data/apis/rds-data/2018-08-01/examples-1.json +0 -4
  781. data/apis/rds-data/2018-08-01/paginators-1.json +0 -3
  782. data/apis/redshift/2012-12-01/api-2.json +0 -4885
  783. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  784. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  785. data/apis/redshift/2012-12-01/smoke.json +0 -18
  786. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  787. data/apis/rekognition/2016-06-27/api-2.json +0 -2140
  788. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  789. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  790. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  791. data/apis/resource-groups/2017-11-27/api-2.json +0 -731
  792. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  793. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  794. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -328
  795. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  796. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  797. data/apis/robomaker/2018-06-29/api-2.json +0 -1775
  798. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  799. data/apis/robomaker/2018-06-29/paginators-1.json +0 -4
  800. data/apis/route53/2013-04-01/api-2.json +0 -3772
  801. data/apis/route53/2013-04-01/examples-1.json +0 -762
  802. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  803. data/apis/route53/2013-04-01/smoke.json +0 -18
  804. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  805. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  806. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  807. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  808. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  809. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  810. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  811. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  812. data/apis/runtime.lex/2016-11-28/api-2.json +0 -419
  813. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  814. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  815. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  816. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  817. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  818. data/apis/s3/2006-03-01/api-2.json +0 -6519
  819. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  820. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  821. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  822. data/apis/s3/2006-03-01/smoke.json +0 -11
  823. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  824. data/apis/s3control/2018-08-20/api-2.json +0 -126
  825. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  826. data/apis/s3control/2018-08-20/paginators-1.json +0 -4
  827. data/apis/sagemaker/2017-07-24/api-2.json +0 -5070
  828. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  829. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  830. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  831. data/apis/sdb/2009-04-15/api-2.json +0 -955
  832. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  833. data/apis/secretsmanager/2017-10-17/api-2.json +0 -974
  834. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  835. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  836. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  837. data/apis/securityhub/2018-10-26/api-2.json +0 -1660
  838. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  839. data/apis/securityhub/2018-10-26/paginators-1.json +0 -19
  840. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1750
  841. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  842. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3675
  843. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  844. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -79
  845. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  846. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  847. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  848. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  849. data/apis/shield/2016-06-02/api-2.json +0 -890
  850. data/apis/shield/2016-06-02/examples-1.json +0 -5
  851. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  852. data/apis/shield/2016-06-02/smoke.json +0 -11
  853. data/apis/signer/2017-08-25/api-2.json +0 -670
  854. data/apis/signer/2017-08-25/examples-1.json +0 -5
  855. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  856. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  857. data/apis/sms/2016-10-24/api-2.json +0 -1366
  858. data/apis/sms/2016-10-24/examples-1.json +0 -5
  859. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  860. data/apis/sms/2016-10-24/smoke.json +0 -18
  861. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  862. data/apis/snowball/2016-06-30/api-2.json +0 -929
  863. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  864. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  865. data/apis/snowball/2016-06-30/smoke.json +0 -11
  866. data/apis/sns/2010-03-31/api-2.json +0 -1259
  867. data/apis/sns/2010-03-31/examples-1.json +0 -5
  868. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  869. data/apis/sns/2010-03-31/resources-1.json +0 -327
  870. data/apis/sns/2010-03-31/smoke.json +0 -19
  871. data/apis/sqs/2012-11-05/api-2.json +0 -1078
  872. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  873. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  874. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  875. data/apis/sqs/2012-11-05/smoke.json +0 -18
  876. data/apis/ssm/2014-11-06/api-2.json +0 -8149
  877. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  878. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  879. data/apis/ssm/2014-11-06/smoke.json +0 -18
  880. data/apis/states/2016-11-23/api-2.json +0 -1363
  881. data/apis/states/2016-11-23/examples-1.json +0 -5
  882. data/apis/states/2016-11-23/paginators-1.json +0 -28
  883. data/apis/states/2016-11-23/smoke.json +0 -11
  884. data/apis/storagegateway/2013-06-30/api-2.json +0 -3047
  885. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  886. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  887. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  888. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  889. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  890. data/apis/sts/2011-06-15/api-2.json +0 -523
  891. data/apis/sts/2011-06-15/examples-1.json +0 -206
  892. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  893. data/apis/support/2013-04-15/api-2.json +0 -772
  894. data/apis/support/2013-04-15/examples-1.json +0 -5
  895. data/apis/support/2013-04-15/paginators-1.json +0 -25
  896. data/apis/swf/2012-01-25/api-2.json +0 -2613
  897. data/apis/swf/2012-01-25/examples-1.json +0 -5
  898. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  899. data/apis/transcribe/2017-10-26/api-2.json +0 -499
  900. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  901. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  902. data/apis/transfer/2018-11-05/api-2.json +0 -818
  903. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  904. data/apis/transfer/2018-11-05/paginators-1.json +0 -4
  905. data/apis/translate/2017-07-01/api-2.json +0 -408
  906. data/apis/translate/2017-07-01/examples-1.json +0 -5
  907. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  908. data/apis/waf/2015-08-24/api-2.json +0 -3674
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/waf-regional/2016-11-28/api-2.json +0 -3809
  913. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  914. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  915. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  916. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  917. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  918. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  919. data/apis/worklink/2018-09-25/api-2.json +0 -873
  920. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  921. data/apis/worklink/2018-09-25/paginators-1.json +0 -19
  922. data/apis/workmail/2017-10-01/api-2.json +0 -1482
  923. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  924. data/apis/workmail/2017-10-01/paginators-1.json +0 -39
  925. data/apis/workspaces/2015-04-08/api-2.json +0 -1648
  926. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  927. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  928. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  929. data/apis/xray/2016-04-12/api-2.json +0 -1277
  930. data/apis/xray/2016-04-12/examples-1.json +0 -5
  931. data/apis/xray/2016-04-12/paginators-1.json +0 -24
  932. data/bin/aws.rb +0 -180
  933. data/endpoints.json +0 -3689
  934. data/lib/aws-sdk-core/acm.rb +0 -7
  935. data/lib/aws-sdk-core/acmpca.rb +0 -7
  936. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  937. data/lib/aws-sdk-core/amplify.rb +0 -6
  938. data/lib/aws-sdk-core/api/builder.rb +0 -129
  939. data/lib/aws-sdk-core/api/customizations.rb +0 -299
  940. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  941. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  942. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  943. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  944. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  945. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  946. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  947. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  948. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  949. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  950. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  951. data/lib/aws-sdk-core/apigateway.rb +0 -6
  952. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  953. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  954. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  955. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  973. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  974. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  975. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  991. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  992. data/lib/aws-sdk-core/comprehend.rb +0 -6
  993. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  994. data/lib/aws-sdk-core/configservice.rb +0 -6
  995. data/lib/aws-sdk-core/connect.rb +0 -6
  996. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  997. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  998. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  999. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1000. data/lib/aws-sdk-core/datasync.rb +0 -6
  1001. data/lib/aws-sdk-core/dax.rb +0 -6
  1002. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1003. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1004. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1005. data/lib/aws-sdk-core/dlm.rb +0 -6
  1006. data/lib/aws-sdk-core/docdb.rb +0 -7
  1007. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1008. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1009. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1010. data/lib/aws-sdk-core/ec2.rb +0 -8
  1011. data/lib/aws-sdk-core/ecr.rb +0 -6
  1012. data/lib/aws-sdk-core/ecs.rb +0 -7
  1013. data/lib/aws-sdk-core/efs.rb +0 -6
  1014. data/lib/aws-sdk-core/eks.rb +0 -7
  1015. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1016. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1017. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1018. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1020. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1021. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1022. data/lib/aws-sdk-core/emr.rb +0 -7
  1023. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  1024. data/lib/aws-sdk-core/firehose.rb +0 -6
  1025. data/lib/aws-sdk-core/fms.rb +0 -6
  1026. data/lib/aws-sdk-core/fsx.rb +0 -6
  1027. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1028. data/lib/aws-sdk-core/glacier.rb +0 -8
  1029. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1030. data/lib/aws-sdk-core/glue.rb +0 -6
  1031. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1032. data/lib/aws-sdk-core/guardduty.rb +0 -5
  1033. data/lib/aws-sdk-core/health.rb +0 -6
  1034. data/lib/aws-sdk-core/iam.rb +0 -8
  1035. data/lib/aws-sdk-core/importexport.rb +0 -5
  1036. data/lib/aws-sdk-core/inspector.rb +0 -6
  1037. data/lib/aws-sdk-core/iot.rb +0 -6
  1038. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1039. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1040. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1042. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1043. data/lib/aws-sdk-core/kafka.rb +0 -5
  1044. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1045. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1046. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1047. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1048. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1049. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1050. data/lib/aws-sdk-core/kms.rb +0 -6
  1051. data/lib/aws-sdk-core/lambda.rb +0 -6
  1052. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1053. data/lib/aws-sdk-core/lex.rb +0 -6
  1054. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1055. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1056. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1057. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1058. data/lib/aws-sdk-core/macie.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1061. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1062. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1063. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1064. data/lib/aws-sdk-core/medialive.rb +0 -5
  1065. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1066. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1067. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1068. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1069. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1070. data/lib/aws-sdk-core/mobile.rb +0 -6
  1071. data/lib/aws-sdk-core/mq.rb +0 -5
  1072. data/lib/aws-sdk-core/mturk.rb +0 -6
  1073. data/lib/aws-sdk-core/neptune.rb +0 -7
  1074. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1075. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1076. data/lib/aws-sdk-core/organizations.rb +0 -6
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/partitions.rb +0 -174
  1082. data/lib/aws-sdk-core/pi.rb +0 -6
  1083. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1084. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1086. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1087. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1088. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1089. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1090. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1091. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1092. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1093. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1094. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1095. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1096. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1097. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1098. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1099. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1100. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1101. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1102. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1103. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1104. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1105. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1106. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1107. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1108. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1109. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1110. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1111. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1112. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1113. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1114. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1115. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1116. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1117. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1118. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  1119. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1120. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1121. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1122. data/lib/aws-sdk-core/polly.rb +0 -14
  1123. data/lib/aws-sdk-core/pricing.rb +0 -6
  1124. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1125. data/lib/aws-sdk-core/ram.rb +0 -6
  1126. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1127. data/lib/aws-sdk-core/rds.rb +0 -16
  1128. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1129. data/lib/aws-sdk-core/redshift.rb +0 -7
  1130. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1131. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1132. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1133. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1134. data/lib/aws-sdk-core/route53.rb +0 -7
  1135. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1136. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1137. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1138. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1139. data/lib/aws-sdk-core/s3.rb +0 -26
  1140. data/lib/aws-sdk-core/s3control.rb +0 -6
  1141. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1142. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1143. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1144. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1145. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1146. data/lib/aws-sdk-core/service.rb +0 -4
  1147. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1148. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1149. data/lib/aws-sdk-core/ses.rb +0 -7
  1150. data/lib/aws-sdk-core/shield.rb +0 -6
  1151. data/lib/aws-sdk-core/signer.rb +0 -7
  1152. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1153. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1154. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1155. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1156. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1157. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1158. data/lib/aws-sdk-core/sms.rb +0 -6
  1159. data/lib/aws-sdk-core/snowball.rb +0 -6
  1160. data/lib/aws-sdk-core/sns.rb +0 -7
  1161. data/lib/aws-sdk-core/sqs.rb +0 -7
  1162. data/lib/aws-sdk-core/ssm.rb +0 -6
  1163. data/lib/aws-sdk-core/states.rb +0 -6
  1164. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1165. data/lib/aws-sdk-core/sts.rb +0 -6
  1166. data/lib/aws-sdk-core/support.rb +0 -6
  1167. data/lib/aws-sdk-core/swf.rb +0 -6
  1168. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1169. data/lib/aws-sdk-core/transfer.rb +0 -6
  1170. data/lib/aws-sdk-core/translate.rb +0 -6
  1171. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1172. data/lib/aws-sdk-core/version.rb +0 -3
  1173. data/lib/aws-sdk-core/waf.rb +0 -6
  1174. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1175. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1176. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1177. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1178. data/lib/aws-sdk-core/worklink.rb +0 -6
  1179. data/lib/aws-sdk-core/workmail.rb +0 -6
  1180. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1181. data/lib/aws-sdk-core/xray.rb +0 -6
  1182. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1183. data/service-models.json +0 -689
@@ -1,2801 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2012-08-10",
5
- "endpointPrefix":"dynamodb",
6
- "jsonVersion":"1.0",
7
- "protocol":"json",
8
- "serviceAbbreviation":"DynamoDB",
9
- "serviceFullName":"Amazon DynamoDB",
10
- "serviceId":"DynamoDB",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"DynamoDB_20120810",
13
- "uid":"dynamodb-2012-08-10"
14
- },
15
- "operations":{
16
- "BatchGetItem":{
17
- "name":"BatchGetItem",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"BatchGetItemInput"},
23
- "output":{"shape":"BatchGetItemOutput"},
24
- "errors":[
25
- {"shape":"ProvisionedThroughputExceededException"},
26
- {"shape":"ResourceNotFoundException"},
27
- {"shape":"RequestLimitExceeded"},
28
- {"shape":"InternalServerError"}
29
- ],
30
- "endpointdiscovery":{
31
- }
32
- },
33
- "BatchWriteItem":{
34
- "name":"BatchWriteItem",
35
- "http":{
36
- "method":"POST",
37
- "requestUri":"/"
38
- },
39
- "input":{"shape":"BatchWriteItemInput"},
40
- "output":{"shape":"BatchWriteItemOutput"},
41
- "errors":[
42
- {"shape":"ProvisionedThroughputExceededException"},
43
- {"shape":"ResourceNotFoundException"},
44
- {"shape":"ItemCollectionSizeLimitExceededException"},
45
- {"shape":"RequestLimitExceeded"},
46
- {"shape":"InternalServerError"}
47
- ],
48
- "endpointdiscovery":{
49
- }
50
- },
51
- "CreateBackup":{
52
- "name":"CreateBackup",
53
- "http":{
54
- "method":"POST",
55
- "requestUri":"/"
56
- },
57
- "input":{"shape":"CreateBackupInput"},
58
- "output":{"shape":"CreateBackupOutput"},
59
- "errors":[
60
- {"shape":"TableNotFoundException"},
61
- {"shape":"TableInUseException"},
62
- {"shape":"ContinuousBackupsUnavailableException"},
63
- {"shape":"BackupInUseException"},
64
- {"shape":"LimitExceededException"},
65
- {"shape":"InternalServerError"}
66
- ],
67
- "endpointdiscovery":{
68
- }
69
- },
70
- "CreateGlobalTable":{
71
- "name":"CreateGlobalTable",
72
- "http":{
73
- "method":"POST",
74
- "requestUri":"/"
75
- },
76
- "input":{"shape":"CreateGlobalTableInput"},
77
- "output":{"shape":"CreateGlobalTableOutput"},
78
- "errors":[
79
- {"shape":"LimitExceededException"},
80
- {"shape":"InternalServerError"},
81
- {"shape":"GlobalTableAlreadyExistsException"},
82
- {"shape":"TableNotFoundException"}
83
- ],
84
- "endpointdiscovery":{
85
- }
86
- },
87
- "CreateTable":{
88
- "name":"CreateTable",
89
- "http":{
90
- "method":"POST",
91
- "requestUri":"/"
92
- },
93
- "input":{"shape":"CreateTableInput"},
94
- "output":{"shape":"CreateTableOutput"},
95
- "errors":[
96
- {"shape":"ResourceInUseException"},
97
- {"shape":"LimitExceededException"},
98
- {"shape":"InternalServerError"}
99
- ],
100
- "endpointdiscovery":{
101
- }
102
- },
103
- "DeleteBackup":{
104
- "name":"DeleteBackup",
105
- "http":{
106
- "method":"POST",
107
- "requestUri":"/"
108
- },
109
- "input":{"shape":"DeleteBackupInput"},
110
- "output":{"shape":"DeleteBackupOutput"},
111
- "errors":[
112
- {"shape":"BackupNotFoundException"},
113
- {"shape":"BackupInUseException"},
114
- {"shape":"LimitExceededException"},
115
- {"shape":"InternalServerError"}
116
- ],
117
- "endpointdiscovery":{
118
- }
119
- },
120
- "DeleteItem":{
121
- "name":"DeleteItem",
122
- "http":{
123
- "method":"POST",
124
- "requestUri":"/"
125
- },
126
- "input":{"shape":"DeleteItemInput"},
127
- "output":{"shape":"DeleteItemOutput"},
128
- "errors":[
129
- {"shape":"ConditionalCheckFailedException"},
130
- {"shape":"ProvisionedThroughputExceededException"},
131
- {"shape":"ResourceNotFoundException"},
132
- {"shape":"ItemCollectionSizeLimitExceededException"},
133
- {"shape":"TransactionConflictException"},
134
- {"shape":"RequestLimitExceeded"},
135
- {"shape":"InternalServerError"}
136
- ],
137
- "endpointdiscovery":{
138
- }
139
- },
140
- "DeleteTable":{
141
- "name":"DeleteTable",
142
- "http":{
143
- "method":"POST",
144
- "requestUri":"/"
145
- },
146
- "input":{"shape":"DeleteTableInput"},
147
- "output":{"shape":"DeleteTableOutput"},
148
- "errors":[
149
- {"shape":"ResourceInUseException"},
150
- {"shape":"ResourceNotFoundException"},
151
- {"shape":"LimitExceededException"},
152
- {"shape":"InternalServerError"}
153
- ],
154
- "endpointdiscovery":{
155
- }
156
- },
157
- "DescribeBackup":{
158
- "name":"DescribeBackup",
159
- "http":{
160
- "method":"POST",
161
- "requestUri":"/"
162
- },
163
- "input":{"shape":"DescribeBackupInput"},
164
- "output":{"shape":"DescribeBackupOutput"},
165
- "errors":[
166
- {"shape":"BackupNotFoundException"},
167
- {"shape":"InternalServerError"}
168
- ],
169
- "endpointdiscovery":{
170
- }
171
- },
172
- "DescribeContinuousBackups":{
173
- "name":"DescribeContinuousBackups",
174
- "http":{
175
- "method":"POST",
176
- "requestUri":"/"
177
- },
178
- "input":{"shape":"DescribeContinuousBackupsInput"},
179
- "output":{"shape":"DescribeContinuousBackupsOutput"},
180
- "errors":[
181
- {"shape":"TableNotFoundException"},
182
- {"shape":"InternalServerError"}
183
- ],
184
- "endpointdiscovery":{
185
- }
186
- },
187
- "DescribeEndpoints":{
188
- "name":"DescribeEndpoints",
189
- "http":{
190
- "method":"POST",
191
- "requestUri":"/"
192
- },
193
- "input":{"shape":"DescribeEndpointsRequest"},
194
- "output":{"shape":"DescribeEndpointsResponse"},
195
- "endpointoperation":true
196
- },
197
- "DescribeGlobalTable":{
198
- "name":"DescribeGlobalTable",
199
- "http":{
200
- "method":"POST",
201
- "requestUri":"/"
202
- },
203
- "input":{"shape":"DescribeGlobalTableInput"},
204
- "output":{"shape":"DescribeGlobalTableOutput"},
205
- "errors":[
206
- {"shape":"InternalServerError"},
207
- {"shape":"GlobalTableNotFoundException"}
208
- ],
209
- "endpointdiscovery":{
210
- }
211
- },
212
- "DescribeGlobalTableSettings":{
213
- "name":"DescribeGlobalTableSettings",
214
- "http":{
215
- "method":"POST",
216
- "requestUri":"/"
217
- },
218
- "input":{"shape":"DescribeGlobalTableSettingsInput"},
219
- "output":{"shape":"DescribeGlobalTableSettingsOutput"},
220
- "errors":[
221
- {"shape":"GlobalTableNotFoundException"},
222
- {"shape":"InternalServerError"}
223
- ],
224
- "endpointdiscovery":{
225
- }
226
- },
227
- "DescribeLimits":{
228
- "name":"DescribeLimits",
229
- "http":{
230
- "method":"POST",
231
- "requestUri":"/"
232
- },
233
- "input":{"shape":"DescribeLimitsInput"},
234
- "output":{"shape":"DescribeLimitsOutput"},
235
- "errors":[
236
- {"shape":"InternalServerError"}
237
- ],
238
- "endpointdiscovery":{
239
- }
240
- },
241
- "DescribeTable":{
242
- "name":"DescribeTable",
243
- "http":{
244
- "method":"POST",
245
- "requestUri":"/"
246
- },
247
- "input":{"shape":"DescribeTableInput"},
248
- "output":{"shape":"DescribeTableOutput"},
249
- "errors":[
250
- {"shape":"ResourceNotFoundException"},
251
- {"shape":"InternalServerError"}
252
- ],
253
- "endpointdiscovery":{
254
- }
255
- },
256
- "DescribeTimeToLive":{
257
- "name":"DescribeTimeToLive",
258
- "http":{
259
- "method":"POST",
260
- "requestUri":"/"
261
- },
262
- "input":{"shape":"DescribeTimeToLiveInput"},
263
- "output":{"shape":"DescribeTimeToLiveOutput"},
264
- "errors":[
265
- {"shape":"ResourceNotFoundException"},
266
- {"shape":"InternalServerError"}
267
- ],
268
- "endpointdiscovery":{
269
- }
270
- },
271
- "GetItem":{
272
- "name":"GetItem",
273
- "http":{
274
- "method":"POST",
275
- "requestUri":"/"
276
- },
277
- "input":{"shape":"GetItemInput"},
278
- "output":{"shape":"GetItemOutput"},
279
- "errors":[
280
- {"shape":"ProvisionedThroughputExceededException"},
281
- {"shape":"ResourceNotFoundException"},
282
- {"shape":"RequestLimitExceeded"},
283
- {"shape":"InternalServerError"}
284
- ],
285
- "endpointdiscovery":{
286
- }
287
- },
288
- "ListBackups":{
289
- "name":"ListBackups",
290
- "http":{
291
- "method":"POST",
292
- "requestUri":"/"
293
- },
294
- "input":{"shape":"ListBackupsInput"},
295
- "output":{"shape":"ListBackupsOutput"},
296
- "errors":[
297
- {"shape":"InternalServerError"}
298
- ],
299
- "endpointdiscovery":{
300
- }
301
- },
302
- "ListGlobalTables":{
303
- "name":"ListGlobalTables",
304
- "http":{
305
- "method":"POST",
306
- "requestUri":"/"
307
- },
308
- "input":{"shape":"ListGlobalTablesInput"},
309
- "output":{"shape":"ListGlobalTablesOutput"},
310
- "errors":[
311
- {"shape":"InternalServerError"}
312
- ],
313
- "endpointdiscovery":{
314
- }
315
- },
316
- "ListTables":{
317
- "name":"ListTables",
318
- "http":{
319
- "method":"POST",
320
- "requestUri":"/"
321
- },
322
- "input":{"shape":"ListTablesInput"},
323
- "output":{"shape":"ListTablesOutput"},
324
- "errors":[
325
- {"shape":"InternalServerError"}
326
- ],
327
- "endpointdiscovery":{
328
- }
329
- },
330
- "ListTagsOfResource":{
331
- "name":"ListTagsOfResource",
332
- "http":{
333
- "method":"POST",
334
- "requestUri":"/"
335
- },
336
- "input":{"shape":"ListTagsOfResourceInput"},
337
- "output":{"shape":"ListTagsOfResourceOutput"},
338
- "errors":[
339
- {"shape":"ResourceNotFoundException"},
340
- {"shape":"InternalServerError"}
341
- ],
342
- "endpointdiscovery":{
343
- }
344
- },
345
- "PutItem":{
346
- "name":"PutItem",
347
- "http":{
348
- "method":"POST",
349
- "requestUri":"/"
350
- },
351
- "input":{"shape":"PutItemInput"},
352
- "output":{"shape":"PutItemOutput"},
353
- "errors":[
354
- {"shape":"ConditionalCheckFailedException"},
355
- {"shape":"ProvisionedThroughputExceededException"},
356
- {"shape":"ResourceNotFoundException"},
357
- {"shape":"ItemCollectionSizeLimitExceededException"},
358
- {"shape":"TransactionConflictException"},
359
- {"shape":"RequestLimitExceeded"},
360
- {"shape":"InternalServerError"}
361
- ],
362
- "endpointdiscovery":{
363
- }
364
- },
365
- "Query":{
366
- "name":"Query",
367
- "http":{
368
- "method":"POST",
369
- "requestUri":"/"
370
- },
371
- "input":{"shape":"QueryInput"},
372
- "output":{"shape":"QueryOutput"},
373
- "errors":[
374
- {"shape":"ProvisionedThroughputExceededException"},
375
- {"shape":"ResourceNotFoundException"},
376
- {"shape":"RequestLimitExceeded"},
377
- {"shape":"InternalServerError"}
378
- ],
379
- "endpointdiscovery":{
380
- }
381
- },
382
- "RestoreTableFromBackup":{
383
- "name":"RestoreTableFromBackup",
384
- "http":{
385
- "method":"POST",
386
- "requestUri":"/"
387
- },
388
- "input":{"shape":"RestoreTableFromBackupInput"},
389
- "output":{"shape":"RestoreTableFromBackupOutput"},
390
- "errors":[
391
- {"shape":"TableAlreadyExistsException"},
392
- {"shape":"TableInUseException"},
393
- {"shape":"BackupNotFoundException"},
394
- {"shape":"BackupInUseException"},
395
- {"shape":"LimitExceededException"},
396
- {"shape":"InternalServerError"}
397
- ],
398
- "endpointdiscovery":{
399
- }
400
- },
401
- "RestoreTableToPointInTime":{
402
- "name":"RestoreTableToPointInTime",
403
- "http":{
404
- "method":"POST",
405
- "requestUri":"/"
406
- },
407
- "input":{"shape":"RestoreTableToPointInTimeInput"},
408
- "output":{"shape":"RestoreTableToPointInTimeOutput"},
409
- "errors":[
410
- {"shape":"TableAlreadyExistsException"},
411
- {"shape":"TableNotFoundException"},
412
- {"shape":"TableInUseException"},
413
- {"shape":"LimitExceededException"},
414
- {"shape":"InvalidRestoreTimeException"},
415
- {"shape":"PointInTimeRecoveryUnavailableException"},
416
- {"shape":"InternalServerError"}
417
- ],
418
- "endpointdiscovery":{
419
- }
420
- },
421
- "Scan":{
422
- "name":"Scan",
423
- "http":{
424
- "method":"POST",
425
- "requestUri":"/"
426
- },
427
- "input":{"shape":"ScanInput"},
428
- "output":{"shape":"ScanOutput"},
429
- "errors":[
430
- {"shape":"ProvisionedThroughputExceededException"},
431
- {"shape":"ResourceNotFoundException"},
432
- {"shape":"RequestLimitExceeded"},
433
- {"shape":"InternalServerError"}
434
- ],
435
- "endpointdiscovery":{
436
- }
437
- },
438
- "TagResource":{
439
- "name":"TagResource",
440
- "http":{
441
- "method":"POST",
442
- "requestUri":"/"
443
- },
444
- "input":{"shape":"TagResourceInput"},
445
- "errors":[
446
- {"shape":"LimitExceededException"},
447
- {"shape":"ResourceNotFoundException"},
448
- {"shape":"InternalServerError"},
449
- {"shape":"ResourceInUseException"}
450
- ],
451
- "endpointdiscovery":{
452
- }
453
- },
454
- "TransactGetItems":{
455
- "name":"TransactGetItems",
456
- "http":{
457
- "method":"POST",
458
- "requestUri":"/"
459
- },
460
- "input":{"shape":"TransactGetItemsInput"},
461
- "output":{"shape":"TransactGetItemsOutput"},
462
- "errors":[
463
- {"shape":"ResourceNotFoundException"},
464
- {"shape":"TransactionCanceledException"},
465
- {"shape":"ProvisionedThroughputExceededException"},
466
- {"shape":"InternalServerError"}
467
- ],
468
- "endpointdiscovery":{
469
- }
470
- },
471
- "TransactWriteItems":{
472
- "name":"TransactWriteItems",
473
- "http":{
474
- "method":"POST",
475
- "requestUri":"/"
476
- },
477
- "input":{"shape":"TransactWriteItemsInput"},
478
- "output":{"shape":"TransactWriteItemsOutput"},
479
- "errors":[
480
- {"shape":"ResourceNotFoundException"},
481
- {"shape":"TransactionCanceledException"},
482
- {"shape":"TransactionInProgressException"},
483
- {"shape":"IdempotentParameterMismatchException"},
484
- {"shape":"ProvisionedThroughputExceededException"},
485
- {"shape":"InternalServerError"}
486
- ],
487
- "endpointdiscovery":{
488
- }
489
- },
490
- "UntagResource":{
491
- "name":"UntagResource",
492
- "http":{
493
- "method":"POST",
494
- "requestUri":"/"
495
- },
496
- "input":{"shape":"UntagResourceInput"},
497
- "errors":[
498
- {"shape":"LimitExceededException"},
499
- {"shape":"ResourceNotFoundException"},
500
- {"shape":"InternalServerError"},
501
- {"shape":"ResourceInUseException"}
502
- ],
503
- "endpointdiscovery":{
504
- }
505
- },
506
- "UpdateContinuousBackups":{
507
- "name":"UpdateContinuousBackups",
508
- "http":{
509
- "method":"POST",
510
- "requestUri":"/"
511
- },
512
- "input":{"shape":"UpdateContinuousBackupsInput"},
513
- "output":{"shape":"UpdateContinuousBackupsOutput"},
514
- "errors":[
515
- {"shape":"TableNotFoundException"},
516
- {"shape":"ContinuousBackupsUnavailableException"},
517
- {"shape":"InternalServerError"}
518
- ],
519
- "endpointdiscovery":{
520
- }
521
- },
522
- "UpdateGlobalTable":{
523
- "name":"UpdateGlobalTable",
524
- "http":{
525
- "method":"POST",
526
- "requestUri":"/"
527
- },
528
- "input":{"shape":"UpdateGlobalTableInput"},
529
- "output":{"shape":"UpdateGlobalTableOutput"},
530
- "errors":[
531
- {"shape":"InternalServerError"},
532
- {"shape":"GlobalTableNotFoundException"},
533
- {"shape":"ReplicaAlreadyExistsException"},
534
- {"shape":"ReplicaNotFoundException"},
535
- {"shape":"TableNotFoundException"}
536
- ],
537
- "endpointdiscovery":{
538
- }
539
- },
540
- "UpdateGlobalTableSettings":{
541
- "name":"UpdateGlobalTableSettings",
542
- "http":{
543
- "method":"POST",
544
- "requestUri":"/"
545
- },
546
- "input":{"shape":"UpdateGlobalTableSettingsInput"},
547
- "output":{"shape":"UpdateGlobalTableSettingsOutput"},
548
- "errors":[
549
- {"shape":"GlobalTableNotFoundException"},
550
- {"shape":"ReplicaNotFoundException"},
551
- {"shape":"IndexNotFoundException"},
552
- {"shape":"LimitExceededException"},
553
- {"shape":"ResourceInUseException"},
554
- {"shape":"InternalServerError"}
555
- ],
556
- "endpointdiscovery":{
557
- }
558
- },
559
- "UpdateItem":{
560
- "name":"UpdateItem",
561
- "http":{
562
- "method":"POST",
563
- "requestUri":"/"
564
- },
565
- "input":{"shape":"UpdateItemInput"},
566
- "output":{"shape":"UpdateItemOutput"},
567
- "errors":[
568
- {"shape":"ConditionalCheckFailedException"},
569
- {"shape":"ProvisionedThroughputExceededException"},
570
- {"shape":"ResourceNotFoundException"},
571
- {"shape":"ItemCollectionSizeLimitExceededException"},
572
- {"shape":"TransactionConflictException"},
573
- {"shape":"RequestLimitExceeded"},
574
- {"shape":"InternalServerError"}
575
- ],
576
- "endpointdiscovery":{
577
- }
578
- },
579
- "UpdateTable":{
580
- "name":"UpdateTable",
581
- "http":{
582
- "method":"POST",
583
- "requestUri":"/"
584
- },
585
- "input":{"shape":"UpdateTableInput"},
586
- "output":{"shape":"UpdateTableOutput"},
587
- "errors":[
588
- {"shape":"ResourceInUseException"},
589
- {"shape":"ResourceNotFoundException"},
590
- {"shape":"LimitExceededException"},
591
- {"shape":"InternalServerError"}
592
- ],
593
- "endpointdiscovery":{
594
- }
595
- },
596
- "UpdateTimeToLive":{
597
- "name":"UpdateTimeToLive",
598
- "http":{
599
- "method":"POST",
600
- "requestUri":"/"
601
- },
602
- "input":{"shape":"UpdateTimeToLiveInput"},
603
- "output":{"shape":"UpdateTimeToLiveOutput"},
604
- "errors":[
605
- {"shape":"ResourceInUseException"},
606
- {"shape":"ResourceNotFoundException"},
607
- {"shape":"LimitExceededException"},
608
- {"shape":"InternalServerError"}
609
- ],
610
- "endpointdiscovery":{
611
- }
612
- }
613
- },
614
- "shapes":{
615
- "AttributeAction":{
616
- "type":"string",
617
- "enum":[
618
- "ADD",
619
- "PUT",
620
- "DELETE"
621
- ]
622
- },
623
- "AttributeDefinition":{
624
- "type":"structure",
625
- "required":[
626
- "AttributeName",
627
- "AttributeType"
628
- ],
629
- "members":{
630
- "AttributeName":{"shape":"KeySchemaAttributeName"},
631
- "AttributeType":{"shape":"ScalarAttributeType"}
632
- }
633
- },
634
- "AttributeDefinitions":{
635
- "type":"list",
636
- "member":{"shape":"AttributeDefinition"}
637
- },
638
- "AttributeMap":{
639
- "type":"map",
640
- "key":{"shape":"AttributeName"},
641
- "value":{"shape":"AttributeValue"}
642
- },
643
- "AttributeName":{
644
- "type":"string",
645
- "max":65535
646
- },
647
- "AttributeNameList":{
648
- "type":"list",
649
- "member":{"shape":"AttributeName"},
650
- "min":1
651
- },
652
- "AttributeUpdates":{
653
- "type":"map",
654
- "key":{"shape":"AttributeName"},
655
- "value":{"shape":"AttributeValueUpdate"}
656
- },
657
- "AttributeValue":{
658
- "type":"structure",
659
- "members":{
660
- "S":{"shape":"StringAttributeValue"},
661
- "N":{"shape":"NumberAttributeValue"},
662
- "B":{"shape":"BinaryAttributeValue"},
663
- "SS":{"shape":"StringSetAttributeValue"},
664
- "NS":{"shape":"NumberSetAttributeValue"},
665
- "BS":{"shape":"BinarySetAttributeValue"},
666
- "M":{"shape":"MapAttributeValue"},
667
- "L":{"shape":"ListAttributeValue"},
668
- "NULL":{"shape":"NullAttributeValue"},
669
- "BOOL":{"shape":"BooleanAttributeValue"}
670
- }
671
- },
672
- "AttributeValueList":{
673
- "type":"list",
674
- "member":{"shape":"AttributeValue"}
675
- },
676
- "AttributeValueUpdate":{
677
- "type":"structure",
678
- "members":{
679
- "Value":{"shape":"AttributeValue"},
680
- "Action":{"shape":"AttributeAction"}
681
- }
682
- },
683
- "AutoScalingPolicyDescription":{
684
- "type":"structure",
685
- "members":{
686
- "PolicyName":{"shape":"AutoScalingPolicyName"},
687
- "TargetTrackingScalingPolicyConfiguration":{"shape":"AutoScalingTargetTrackingScalingPolicyConfigurationDescription"}
688
- }
689
- },
690
- "AutoScalingPolicyDescriptionList":{
691
- "type":"list",
692
- "member":{"shape":"AutoScalingPolicyDescription"}
693
- },
694
- "AutoScalingPolicyName":{
695
- "type":"string",
696
- "max":256,
697
- "min":1,
698
- "pattern":"\\p{Print}+"
699
- },
700
- "AutoScalingPolicyUpdate":{
701
- "type":"structure",
702
- "required":["TargetTrackingScalingPolicyConfiguration"],
703
- "members":{
704
- "PolicyName":{"shape":"AutoScalingPolicyName"},
705
- "TargetTrackingScalingPolicyConfiguration":{"shape":"AutoScalingTargetTrackingScalingPolicyConfigurationUpdate"}
706
- }
707
- },
708
- "AutoScalingRoleArn":{
709
- "type":"string",
710
- "max":1600,
711
- "min":1,
712
- "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\r\\n\\t]*"
713
- },
714
- "AutoScalingSettingsDescription":{
715
- "type":"structure",
716
- "members":{
717
- "MinimumUnits":{"shape":"PositiveLongObject"},
718
- "MaximumUnits":{"shape":"PositiveLongObject"},
719
- "AutoScalingDisabled":{"shape":"BooleanObject"},
720
- "AutoScalingRoleArn":{"shape":"String"},
721
- "ScalingPolicies":{"shape":"AutoScalingPolicyDescriptionList"}
722
- }
723
- },
724
- "AutoScalingSettingsUpdate":{
725
- "type":"structure",
726
- "members":{
727
- "MinimumUnits":{"shape":"PositiveLongObject"},
728
- "MaximumUnits":{"shape":"PositiveLongObject"},
729
- "AutoScalingDisabled":{"shape":"BooleanObject"},
730
- "AutoScalingRoleArn":{"shape":"AutoScalingRoleArn"},
731
- "ScalingPolicyUpdate":{"shape":"AutoScalingPolicyUpdate"}
732
- }
733
- },
734
- "AutoScalingTargetTrackingScalingPolicyConfigurationDescription":{
735
- "type":"structure",
736
- "required":["TargetValue"],
737
- "members":{
738
- "DisableScaleIn":{"shape":"BooleanObject"},
739
- "ScaleInCooldown":{"shape":"IntegerObject"},
740
- "ScaleOutCooldown":{"shape":"IntegerObject"},
741
- "TargetValue":{"shape":"Double"}
742
- }
743
- },
744
- "AutoScalingTargetTrackingScalingPolicyConfigurationUpdate":{
745
- "type":"structure",
746
- "required":["TargetValue"],
747
- "members":{
748
- "DisableScaleIn":{"shape":"BooleanObject"},
749
- "ScaleInCooldown":{"shape":"IntegerObject"},
750
- "ScaleOutCooldown":{"shape":"IntegerObject"},
751
- "TargetValue":{"shape":"Double"}
752
- }
753
- },
754
- "Backfilling":{"type":"boolean"},
755
- "BackupArn":{
756
- "type":"string",
757
- "max":1024,
758
- "min":37
759
- },
760
- "BackupCreationDateTime":{"type":"timestamp"},
761
- "BackupDescription":{
762
- "type":"structure",
763
- "members":{
764
- "BackupDetails":{"shape":"BackupDetails"},
765
- "SourceTableDetails":{"shape":"SourceTableDetails"},
766
- "SourceTableFeatureDetails":{"shape":"SourceTableFeatureDetails"}
767
- }
768
- },
769
- "BackupDetails":{
770
- "type":"structure",
771
- "required":[
772
- "BackupArn",
773
- "BackupName",
774
- "BackupStatus",
775
- "BackupType",
776
- "BackupCreationDateTime"
777
- ],
778
- "members":{
779
- "BackupArn":{"shape":"BackupArn"},
780
- "BackupName":{"shape":"BackupName"},
781
- "BackupSizeBytes":{"shape":"BackupSizeBytes"},
782
- "BackupStatus":{"shape":"BackupStatus"},
783
- "BackupType":{"shape":"BackupType"},
784
- "BackupCreationDateTime":{"shape":"BackupCreationDateTime"},
785
- "BackupExpiryDateTime":{"shape":"Date"}
786
- }
787
- },
788
- "BackupInUseException":{
789
- "type":"structure",
790
- "members":{
791
- "message":{"shape":"ErrorMessage"}
792
- },
793
- "exception":true
794
- },
795
- "BackupName":{
796
- "type":"string",
797
- "max":255,
798
- "min":3,
799
- "pattern":"[a-zA-Z0-9_.-]+"
800
- },
801
- "BackupNotFoundException":{
802
- "type":"structure",
803
- "members":{
804
- "message":{"shape":"ErrorMessage"}
805
- },
806
- "exception":true
807
- },
808
- "BackupSizeBytes":{
809
- "type":"long",
810
- "min":0
811
- },
812
- "BackupStatus":{
813
- "type":"string",
814
- "enum":[
815
- "CREATING",
816
- "DELETED",
817
- "AVAILABLE"
818
- ]
819
- },
820
- "BackupSummaries":{
821
- "type":"list",
822
- "member":{"shape":"BackupSummary"}
823
- },
824
- "BackupSummary":{
825
- "type":"structure",
826
- "members":{
827
- "TableName":{"shape":"TableName"},
828
- "TableId":{"shape":"TableId"},
829
- "TableArn":{"shape":"TableArn"},
830
- "BackupArn":{"shape":"BackupArn"},
831
- "BackupName":{"shape":"BackupName"},
832
- "BackupCreationDateTime":{"shape":"BackupCreationDateTime"},
833
- "BackupExpiryDateTime":{"shape":"Date"},
834
- "BackupStatus":{"shape":"BackupStatus"},
835
- "BackupType":{"shape":"BackupType"},
836
- "BackupSizeBytes":{"shape":"BackupSizeBytes"}
837
- }
838
- },
839
- "BackupType":{
840
- "type":"string",
841
- "enum":[
842
- "USER",
843
- "SYSTEM",
844
- "AWS_BACKUP"
845
- ]
846
- },
847
- "BackupTypeFilter":{
848
- "type":"string",
849
- "enum":[
850
- "USER",
851
- "SYSTEM",
852
- "AWS_BACKUP",
853
- "ALL"
854
- ]
855
- },
856
- "BackupsInputLimit":{
857
- "type":"integer",
858
- "max":100,
859
- "min":1
860
- },
861
- "BatchGetItemInput":{
862
- "type":"structure",
863
- "required":["RequestItems"],
864
- "members":{
865
- "RequestItems":{"shape":"BatchGetRequestMap"},
866
- "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"}
867
- }
868
- },
869
- "BatchGetItemOutput":{
870
- "type":"structure",
871
- "members":{
872
- "Responses":{"shape":"BatchGetResponseMap"},
873
- "UnprocessedKeys":{"shape":"BatchGetRequestMap"},
874
- "ConsumedCapacity":{"shape":"ConsumedCapacityMultiple"}
875
- }
876
- },
877
- "BatchGetRequestMap":{
878
- "type":"map",
879
- "key":{"shape":"TableName"},
880
- "value":{"shape":"KeysAndAttributes"},
881
- "max":100,
882
- "min":1
883
- },
884
- "BatchGetResponseMap":{
885
- "type":"map",
886
- "key":{"shape":"TableName"},
887
- "value":{"shape":"ItemList"}
888
- },
889
- "BatchWriteItemInput":{
890
- "type":"structure",
891
- "required":["RequestItems"],
892
- "members":{
893
- "RequestItems":{"shape":"BatchWriteItemRequestMap"},
894
- "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"},
895
- "ReturnItemCollectionMetrics":{"shape":"ReturnItemCollectionMetrics"}
896
- }
897
- },
898
- "BatchWriteItemOutput":{
899
- "type":"structure",
900
- "members":{
901
- "UnprocessedItems":{"shape":"BatchWriteItemRequestMap"},
902
- "ItemCollectionMetrics":{"shape":"ItemCollectionMetricsPerTable"},
903
- "ConsumedCapacity":{"shape":"ConsumedCapacityMultiple"}
904
- }
905
- },
906
- "BatchWriteItemRequestMap":{
907
- "type":"map",
908
- "key":{"shape":"TableName"},
909
- "value":{"shape":"WriteRequests"},
910
- "max":25,
911
- "min":1
912
- },
913
- "BillingMode":{
914
- "type":"string",
915
- "enum":[
916
- "PROVISIONED",
917
- "PAY_PER_REQUEST"
918
- ]
919
- },
920
- "BillingModeSummary":{
921
- "type":"structure",
922
- "members":{
923
- "BillingMode":{"shape":"BillingMode"},
924
- "LastUpdateToPayPerRequestDateTime":{"shape":"Date"}
925
- }
926
- },
927
- "BinaryAttributeValue":{"type":"blob"},
928
- "BinarySetAttributeValue":{
929
- "type":"list",
930
- "member":{"shape":"BinaryAttributeValue"}
931
- },
932
- "BooleanAttributeValue":{"type":"boolean"},
933
- "BooleanObject":{"type":"boolean"},
934
- "CancellationReason":{
935
- "type":"structure",
936
- "members":{
937
- "Item":{"shape":"AttributeMap"},
938
- "Code":{"shape":"Code"},
939
- "Message":{"shape":"ErrorMessage"}
940
- }
941
- },
942
- "CancellationReasonList":{
943
- "type":"list",
944
- "member":{"shape":"CancellationReason"},
945
- "max":10,
946
- "min":1
947
- },
948
- "Capacity":{
949
- "type":"structure",
950
- "members":{
951
- "ReadCapacityUnits":{"shape":"ConsumedCapacityUnits"},
952
- "WriteCapacityUnits":{"shape":"ConsumedCapacityUnits"},
953
- "CapacityUnits":{"shape":"ConsumedCapacityUnits"}
954
- }
955
- },
956
- "ClientRequestToken":{
957
- "type":"string",
958
- "max":36,
959
- "min":1
960
- },
961
- "Code":{"type":"string"},
962
- "ComparisonOperator":{
963
- "type":"string",
964
- "enum":[
965
- "EQ",
966
- "NE",
967
- "IN",
968
- "LE",
969
- "LT",
970
- "GE",
971
- "GT",
972
- "BETWEEN",
973
- "NOT_NULL",
974
- "NULL",
975
- "CONTAINS",
976
- "NOT_CONTAINS",
977
- "BEGINS_WITH"
978
- ]
979
- },
980
- "Condition":{
981
- "type":"structure",
982
- "required":["ComparisonOperator"],
983
- "members":{
984
- "AttributeValueList":{"shape":"AttributeValueList"},
985
- "ComparisonOperator":{"shape":"ComparisonOperator"}
986
- }
987
- },
988
- "ConditionCheck":{
989
- "type":"structure",
990
- "required":[
991
- "Key",
992
- "TableName",
993
- "ConditionExpression"
994
- ],
995
- "members":{
996
- "Key":{"shape":"Key"},
997
- "TableName":{"shape":"TableName"},
998
- "ConditionExpression":{"shape":"ConditionExpression"},
999
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"},
1000
- "ExpressionAttributeValues":{"shape":"ExpressionAttributeValueMap"},
1001
- "ReturnValuesOnConditionCheckFailure":{"shape":"ReturnValuesOnConditionCheckFailure"}
1002
- }
1003
- },
1004
- "ConditionExpression":{"type":"string"},
1005
- "ConditionalCheckFailedException":{
1006
- "type":"structure",
1007
- "members":{
1008
- "message":{"shape":"ErrorMessage"}
1009
- },
1010
- "exception":true
1011
- },
1012
- "ConditionalOperator":{
1013
- "type":"string",
1014
- "enum":[
1015
- "AND",
1016
- "OR"
1017
- ]
1018
- },
1019
- "ConsistentRead":{"type":"boolean"},
1020
- "ConsumedCapacity":{
1021
- "type":"structure",
1022
- "members":{
1023
- "TableName":{"shape":"TableName"},
1024
- "CapacityUnits":{"shape":"ConsumedCapacityUnits"},
1025
- "ReadCapacityUnits":{"shape":"ConsumedCapacityUnits"},
1026
- "WriteCapacityUnits":{"shape":"ConsumedCapacityUnits"},
1027
- "Table":{"shape":"Capacity"},
1028
- "LocalSecondaryIndexes":{"shape":"SecondaryIndexesCapacityMap"},
1029
- "GlobalSecondaryIndexes":{"shape":"SecondaryIndexesCapacityMap"}
1030
- }
1031
- },
1032
- "ConsumedCapacityMultiple":{
1033
- "type":"list",
1034
- "member":{"shape":"ConsumedCapacity"}
1035
- },
1036
- "ConsumedCapacityUnits":{"type":"double"},
1037
- "ContinuousBackupsDescription":{
1038
- "type":"structure",
1039
- "required":["ContinuousBackupsStatus"],
1040
- "members":{
1041
- "ContinuousBackupsStatus":{"shape":"ContinuousBackupsStatus"},
1042
- "PointInTimeRecoveryDescription":{"shape":"PointInTimeRecoveryDescription"}
1043
- }
1044
- },
1045
- "ContinuousBackupsStatus":{
1046
- "type":"string",
1047
- "enum":[
1048
- "ENABLED",
1049
- "DISABLED"
1050
- ]
1051
- },
1052
- "ContinuousBackupsUnavailableException":{
1053
- "type":"structure",
1054
- "members":{
1055
- "message":{"shape":"ErrorMessage"}
1056
- },
1057
- "exception":true
1058
- },
1059
- "CreateBackupInput":{
1060
- "type":"structure",
1061
- "required":[
1062
- "TableName",
1063
- "BackupName"
1064
- ],
1065
- "members":{
1066
- "TableName":{"shape":"TableName"},
1067
- "BackupName":{"shape":"BackupName"}
1068
- }
1069
- },
1070
- "CreateBackupOutput":{
1071
- "type":"structure",
1072
- "members":{
1073
- "BackupDetails":{"shape":"BackupDetails"}
1074
- }
1075
- },
1076
- "CreateGlobalSecondaryIndexAction":{
1077
- "type":"structure",
1078
- "required":[
1079
- "IndexName",
1080
- "KeySchema",
1081
- "Projection"
1082
- ],
1083
- "members":{
1084
- "IndexName":{"shape":"IndexName"},
1085
- "KeySchema":{"shape":"KeySchema"},
1086
- "Projection":{"shape":"Projection"},
1087
- "ProvisionedThroughput":{"shape":"ProvisionedThroughput"}
1088
- }
1089
- },
1090
- "CreateGlobalTableInput":{
1091
- "type":"structure",
1092
- "required":[
1093
- "GlobalTableName",
1094
- "ReplicationGroup"
1095
- ],
1096
- "members":{
1097
- "GlobalTableName":{"shape":"TableName"},
1098
- "ReplicationGroup":{"shape":"ReplicaList"}
1099
- }
1100
- },
1101
- "CreateGlobalTableOutput":{
1102
- "type":"structure",
1103
- "members":{
1104
- "GlobalTableDescription":{"shape":"GlobalTableDescription"}
1105
- }
1106
- },
1107
- "CreateReplicaAction":{
1108
- "type":"structure",
1109
- "required":["RegionName"],
1110
- "members":{
1111
- "RegionName":{"shape":"RegionName"}
1112
- }
1113
- },
1114
- "CreateTableInput":{
1115
- "type":"structure",
1116
- "required":[
1117
- "AttributeDefinitions",
1118
- "TableName",
1119
- "KeySchema"
1120
- ],
1121
- "members":{
1122
- "AttributeDefinitions":{"shape":"AttributeDefinitions"},
1123
- "TableName":{"shape":"TableName"},
1124
- "KeySchema":{"shape":"KeySchema"},
1125
- "LocalSecondaryIndexes":{"shape":"LocalSecondaryIndexList"},
1126
- "GlobalSecondaryIndexes":{"shape":"GlobalSecondaryIndexList"},
1127
- "BillingMode":{"shape":"BillingMode"},
1128
- "ProvisionedThroughput":{"shape":"ProvisionedThroughput"},
1129
- "StreamSpecification":{"shape":"StreamSpecification"},
1130
- "SSESpecification":{"shape":"SSESpecification"}
1131
- }
1132
- },
1133
- "CreateTableOutput":{
1134
- "type":"structure",
1135
- "members":{
1136
- "TableDescription":{"shape":"TableDescription"}
1137
- }
1138
- },
1139
- "Date":{"type":"timestamp"},
1140
- "Delete":{
1141
- "type":"structure",
1142
- "required":[
1143
- "Key",
1144
- "TableName"
1145
- ],
1146
- "members":{
1147
- "Key":{"shape":"Key"},
1148
- "TableName":{"shape":"TableName"},
1149
- "ConditionExpression":{"shape":"ConditionExpression"},
1150
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"},
1151
- "ExpressionAttributeValues":{"shape":"ExpressionAttributeValueMap"},
1152
- "ReturnValuesOnConditionCheckFailure":{"shape":"ReturnValuesOnConditionCheckFailure"}
1153
- }
1154
- },
1155
- "DeleteBackupInput":{
1156
- "type":"structure",
1157
- "required":["BackupArn"],
1158
- "members":{
1159
- "BackupArn":{"shape":"BackupArn"}
1160
- }
1161
- },
1162
- "DeleteBackupOutput":{
1163
- "type":"structure",
1164
- "members":{
1165
- "BackupDescription":{"shape":"BackupDescription"}
1166
- }
1167
- },
1168
- "DeleteGlobalSecondaryIndexAction":{
1169
- "type":"structure",
1170
- "required":["IndexName"],
1171
- "members":{
1172
- "IndexName":{"shape":"IndexName"}
1173
- }
1174
- },
1175
- "DeleteItemInput":{
1176
- "type":"structure",
1177
- "required":[
1178
- "TableName",
1179
- "Key"
1180
- ],
1181
- "members":{
1182
- "TableName":{"shape":"TableName"},
1183
- "Key":{"shape":"Key"},
1184
- "Expected":{"shape":"ExpectedAttributeMap"},
1185
- "ConditionalOperator":{"shape":"ConditionalOperator"},
1186
- "ReturnValues":{"shape":"ReturnValue"},
1187
- "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"},
1188
- "ReturnItemCollectionMetrics":{"shape":"ReturnItemCollectionMetrics"},
1189
- "ConditionExpression":{"shape":"ConditionExpression"},
1190
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"},
1191
- "ExpressionAttributeValues":{"shape":"ExpressionAttributeValueMap"}
1192
- }
1193
- },
1194
- "DeleteItemOutput":{
1195
- "type":"structure",
1196
- "members":{
1197
- "Attributes":{"shape":"AttributeMap"},
1198
- "ConsumedCapacity":{"shape":"ConsumedCapacity"},
1199
- "ItemCollectionMetrics":{"shape":"ItemCollectionMetrics"}
1200
- }
1201
- },
1202
- "DeleteReplicaAction":{
1203
- "type":"structure",
1204
- "required":["RegionName"],
1205
- "members":{
1206
- "RegionName":{"shape":"RegionName"}
1207
- }
1208
- },
1209
- "DeleteRequest":{
1210
- "type":"structure",
1211
- "required":["Key"],
1212
- "members":{
1213
- "Key":{"shape":"Key"}
1214
- }
1215
- },
1216
- "DeleteTableInput":{
1217
- "type":"structure",
1218
- "required":["TableName"],
1219
- "members":{
1220
- "TableName":{"shape":"TableName"}
1221
- }
1222
- },
1223
- "DeleteTableOutput":{
1224
- "type":"structure",
1225
- "members":{
1226
- "TableDescription":{"shape":"TableDescription"}
1227
- }
1228
- },
1229
- "DescribeBackupInput":{
1230
- "type":"structure",
1231
- "required":["BackupArn"],
1232
- "members":{
1233
- "BackupArn":{"shape":"BackupArn"}
1234
- }
1235
- },
1236
- "DescribeBackupOutput":{
1237
- "type":"structure",
1238
- "members":{
1239
- "BackupDescription":{"shape":"BackupDescription"}
1240
- }
1241
- },
1242
- "DescribeContinuousBackupsInput":{
1243
- "type":"structure",
1244
- "required":["TableName"],
1245
- "members":{
1246
- "TableName":{"shape":"TableName"}
1247
- }
1248
- },
1249
- "DescribeContinuousBackupsOutput":{
1250
- "type":"structure",
1251
- "members":{
1252
- "ContinuousBackupsDescription":{"shape":"ContinuousBackupsDescription"}
1253
- }
1254
- },
1255
- "DescribeEndpointsRequest":{
1256
- "type":"structure",
1257
- "members":{
1258
- }
1259
- },
1260
- "DescribeEndpointsResponse":{
1261
- "type":"structure",
1262
- "required":["Endpoints"],
1263
- "members":{
1264
- "Endpoints":{"shape":"Endpoints"}
1265
- }
1266
- },
1267
- "DescribeGlobalTableInput":{
1268
- "type":"structure",
1269
- "required":["GlobalTableName"],
1270
- "members":{
1271
- "GlobalTableName":{"shape":"TableName"}
1272
- }
1273
- },
1274
- "DescribeGlobalTableOutput":{
1275
- "type":"structure",
1276
- "members":{
1277
- "GlobalTableDescription":{"shape":"GlobalTableDescription"}
1278
- }
1279
- },
1280
- "DescribeGlobalTableSettingsInput":{
1281
- "type":"structure",
1282
- "required":["GlobalTableName"],
1283
- "members":{
1284
- "GlobalTableName":{"shape":"TableName"}
1285
- }
1286
- },
1287
- "DescribeGlobalTableSettingsOutput":{
1288
- "type":"structure",
1289
- "members":{
1290
- "GlobalTableName":{"shape":"TableName"},
1291
- "ReplicaSettings":{"shape":"ReplicaSettingsDescriptionList"}
1292
- }
1293
- },
1294
- "DescribeLimitsInput":{
1295
- "type":"structure",
1296
- "members":{
1297
- }
1298
- },
1299
- "DescribeLimitsOutput":{
1300
- "type":"structure",
1301
- "members":{
1302
- "AccountMaxReadCapacityUnits":{"shape":"PositiveLongObject"},
1303
- "AccountMaxWriteCapacityUnits":{"shape":"PositiveLongObject"},
1304
- "TableMaxReadCapacityUnits":{"shape":"PositiveLongObject"},
1305
- "TableMaxWriteCapacityUnits":{"shape":"PositiveLongObject"}
1306
- }
1307
- },
1308
- "DescribeTableInput":{
1309
- "type":"structure",
1310
- "required":["TableName"],
1311
- "members":{
1312
- "TableName":{"shape":"TableName"}
1313
- }
1314
- },
1315
- "DescribeTableOutput":{
1316
- "type":"structure",
1317
- "members":{
1318
- "Table":{"shape":"TableDescription"}
1319
- }
1320
- },
1321
- "DescribeTimeToLiveInput":{
1322
- "type":"structure",
1323
- "required":["TableName"],
1324
- "members":{
1325
- "TableName":{"shape":"TableName"}
1326
- }
1327
- },
1328
- "DescribeTimeToLiveOutput":{
1329
- "type":"structure",
1330
- "members":{
1331
- "TimeToLiveDescription":{"shape":"TimeToLiveDescription"}
1332
- }
1333
- },
1334
- "Double":{"type":"double"},
1335
- "Endpoint":{
1336
- "type":"structure",
1337
- "required":[
1338
- "Address",
1339
- "CachePeriodInMinutes"
1340
- ],
1341
- "members":{
1342
- "Address":{"shape":"String"},
1343
- "CachePeriodInMinutes":{"shape":"Long"}
1344
- }
1345
- },
1346
- "Endpoints":{
1347
- "type":"list",
1348
- "member":{"shape":"Endpoint"}
1349
- },
1350
- "ErrorMessage":{"type":"string"},
1351
- "ExpectedAttributeMap":{
1352
- "type":"map",
1353
- "key":{"shape":"AttributeName"},
1354
- "value":{"shape":"ExpectedAttributeValue"}
1355
- },
1356
- "ExpectedAttributeValue":{
1357
- "type":"structure",
1358
- "members":{
1359
- "Value":{"shape":"AttributeValue"},
1360
- "Exists":{"shape":"BooleanObject"},
1361
- "ComparisonOperator":{"shape":"ComparisonOperator"},
1362
- "AttributeValueList":{"shape":"AttributeValueList"}
1363
- }
1364
- },
1365
- "ExpressionAttributeNameMap":{
1366
- "type":"map",
1367
- "key":{"shape":"ExpressionAttributeNameVariable"},
1368
- "value":{"shape":"AttributeName"}
1369
- },
1370
- "ExpressionAttributeNameVariable":{"type":"string"},
1371
- "ExpressionAttributeValueMap":{
1372
- "type":"map",
1373
- "key":{"shape":"ExpressionAttributeValueVariable"},
1374
- "value":{"shape":"AttributeValue"}
1375
- },
1376
- "ExpressionAttributeValueVariable":{"type":"string"},
1377
- "FilterConditionMap":{
1378
- "type":"map",
1379
- "key":{"shape":"AttributeName"},
1380
- "value":{"shape":"Condition"}
1381
- },
1382
- "Get":{
1383
- "type":"structure",
1384
- "required":[
1385
- "Key",
1386
- "TableName"
1387
- ],
1388
- "members":{
1389
- "Key":{"shape":"Key"},
1390
- "TableName":{"shape":"TableName"},
1391
- "ProjectionExpression":{"shape":"ProjectionExpression"},
1392
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"}
1393
- }
1394
- },
1395
- "GetItemInput":{
1396
- "type":"structure",
1397
- "required":[
1398
- "TableName",
1399
- "Key"
1400
- ],
1401
- "members":{
1402
- "TableName":{"shape":"TableName"},
1403
- "Key":{"shape":"Key"},
1404
- "AttributesToGet":{"shape":"AttributeNameList"},
1405
- "ConsistentRead":{"shape":"ConsistentRead"},
1406
- "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"},
1407
- "ProjectionExpression":{"shape":"ProjectionExpression"},
1408
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"}
1409
- }
1410
- },
1411
- "GetItemOutput":{
1412
- "type":"structure",
1413
- "members":{
1414
- "Item":{"shape":"AttributeMap"},
1415
- "ConsumedCapacity":{"shape":"ConsumedCapacity"}
1416
- }
1417
- },
1418
- "GlobalSecondaryIndex":{
1419
- "type":"structure",
1420
- "required":[
1421
- "IndexName",
1422
- "KeySchema",
1423
- "Projection"
1424
- ],
1425
- "members":{
1426
- "IndexName":{"shape":"IndexName"},
1427
- "KeySchema":{"shape":"KeySchema"},
1428
- "Projection":{"shape":"Projection"},
1429
- "ProvisionedThroughput":{"shape":"ProvisionedThroughput"}
1430
- }
1431
- },
1432
- "GlobalSecondaryIndexDescription":{
1433
- "type":"structure",
1434
- "members":{
1435
- "IndexName":{"shape":"IndexName"},
1436
- "KeySchema":{"shape":"KeySchema"},
1437
- "Projection":{"shape":"Projection"},
1438
- "IndexStatus":{"shape":"IndexStatus"},
1439
- "Backfilling":{"shape":"Backfilling"},
1440
- "ProvisionedThroughput":{"shape":"ProvisionedThroughputDescription"},
1441
- "IndexSizeBytes":{"shape":"Long"},
1442
- "ItemCount":{"shape":"Long"},
1443
- "IndexArn":{"shape":"String"}
1444
- }
1445
- },
1446
- "GlobalSecondaryIndexDescriptionList":{
1447
- "type":"list",
1448
- "member":{"shape":"GlobalSecondaryIndexDescription"}
1449
- },
1450
- "GlobalSecondaryIndexInfo":{
1451
- "type":"structure",
1452
- "members":{
1453
- "IndexName":{"shape":"IndexName"},
1454
- "KeySchema":{"shape":"KeySchema"},
1455
- "Projection":{"shape":"Projection"},
1456
- "ProvisionedThroughput":{"shape":"ProvisionedThroughput"}
1457
- }
1458
- },
1459
- "GlobalSecondaryIndexList":{
1460
- "type":"list",
1461
- "member":{"shape":"GlobalSecondaryIndex"}
1462
- },
1463
- "GlobalSecondaryIndexUpdate":{
1464
- "type":"structure",
1465
- "members":{
1466
- "Update":{"shape":"UpdateGlobalSecondaryIndexAction"},
1467
- "Create":{"shape":"CreateGlobalSecondaryIndexAction"},
1468
- "Delete":{"shape":"DeleteGlobalSecondaryIndexAction"}
1469
- }
1470
- },
1471
- "GlobalSecondaryIndexUpdateList":{
1472
- "type":"list",
1473
- "member":{"shape":"GlobalSecondaryIndexUpdate"}
1474
- },
1475
- "GlobalSecondaryIndexes":{
1476
- "type":"list",
1477
- "member":{"shape":"GlobalSecondaryIndexInfo"}
1478
- },
1479
- "GlobalTable":{
1480
- "type":"structure",
1481
- "members":{
1482
- "GlobalTableName":{"shape":"TableName"},
1483
- "ReplicationGroup":{"shape":"ReplicaList"}
1484
- }
1485
- },
1486
- "GlobalTableAlreadyExistsException":{
1487
- "type":"structure",
1488
- "members":{
1489
- "message":{"shape":"ErrorMessage"}
1490
- },
1491
- "exception":true
1492
- },
1493
- "GlobalTableArnString":{"type":"string"},
1494
- "GlobalTableDescription":{
1495
- "type":"structure",
1496
- "members":{
1497
- "ReplicationGroup":{"shape":"ReplicaDescriptionList"},
1498
- "GlobalTableArn":{"shape":"GlobalTableArnString"},
1499
- "CreationDateTime":{"shape":"Date"},
1500
- "GlobalTableStatus":{"shape":"GlobalTableStatus"},
1501
- "GlobalTableName":{"shape":"TableName"}
1502
- }
1503
- },
1504
- "GlobalTableGlobalSecondaryIndexSettingsUpdate":{
1505
- "type":"structure",
1506
- "required":["IndexName"],
1507
- "members":{
1508
- "IndexName":{"shape":"IndexName"},
1509
- "ProvisionedWriteCapacityUnits":{"shape":"PositiveLongObject"},
1510
- "ProvisionedWriteCapacityAutoScalingSettingsUpdate":{"shape":"AutoScalingSettingsUpdate"}
1511
- }
1512
- },
1513
- "GlobalTableGlobalSecondaryIndexSettingsUpdateList":{
1514
- "type":"list",
1515
- "member":{"shape":"GlobalTableGlobalSecondaryIndexSettingsUpdate"},
1516
- "max":20,
1517
- "min":1
1518
- },
1519
- "GlobalTableList":{
1520
- "type":"list",
1521
- "member":{"shape":"GlobalTable"}
1522
- },
1523
- "GlobalTableNotFoundException":{
1524
- "type":"structure",
1525
- "members":{
1526
- "message":{"shape":"ErrorMessage"}
1527
- },
1528
- "exception":true
1529
- },
1530
- "GlobalTableStatus":{
1531
- "type":"string",
1532
- "enum":[
1533
- "CREATING",
1534
- "ACTIVE",
1535
- "DELETING",
1536
- "UPDATING"
1537
- ]
1538
- },
1539
- "IdempotentParameterMismatchException":{
1540
- "type":"structure",
1541
- "members":{
1542
- "Message":{"shape":"ErrorMessage"}
1543
- },
1544
- "exception":true
1545
- },
1546
- "IndexName":{
1547
- "type":"string",
1548
- "max":255,
1549
- "min":3,
1550
- "pattern":"[a-zA-Z0-9_.-]+"
1551
- },
1552
- "IndexNotFoundException":{
1553
- "type":"structure",
1554
- "members":{
1555
- "message":{"shape":"ErrorMessage"}
1556
- },
1557
- "exception":true
1558
- },
1559
- "IndexStatus":{
1560
- "type":"string",
1561
- "enum":[
1562
- "CREATING",
1563
- "UPDATING",
1564
- "DELETING",
1565
- "ACTIVE"
1566
- ]
1567
- },
1568
- "Integer":{"type":"integer"},
1569
- "IntegerObject":{"type":"integer"},
1570
- "InternalServerError":{
1571
- "type":"structure",
1572
- "members":{
1573
- "message":{"shape":"ErrorMessage"}
1574
- },
1575
- "exception":true,
1576
- "fault":true
1577
- },
1578
- "InvalidRestoreTimeException":{
1579
- "type":"structure",
1580
- "members":{
1581
- "message":{"shape":"ErrorMessage"}
1582
- },
1583
- "exception":true
1584
- },
1585
- "ItemCollectionKeyAttributeMap":{
1586
- "type":"map",
1587
- "key":{"shape":"AttributeName"},
1588
- "value":{"shape":"AttributeValue"}
1589
- },
1590
- "ItemCollectionMetrics":{
1591
- "type":"structure",
1592
- "members":{
1593
- "ItemCollectionKey":{"shape":"ItemCollectionKeyAttributeMap"},
1594
- "SizeEstimateRangeGB":{"shape":"ItemCollectionSizeEstimateRange"}
1595
- }
1596
- },
1597
- "ItemCollectionMetricsMultiple":{
1598
- "type":"list",
1599
- "member":{"shape":"ItemCollectionMetrics"}
1600
- },
1601
- "ItemCollectionMetricsPerTable":{
1602
- "type":"map",
1603
- "key":{"shape":"TableName"},
1604
- "value":{"shape":"ItemCollectionMetricsMultiple"}
1605
- },
1606
- "ItemCollectionSizeEstimateBound":{"type":"double"},
1607
- "ItemCollectionSizeEstimateRange":{
1608
- "type":"list",
1609
- "member":{"shape":"ItemCollectionSizeEstimateBound"}
1610
- },
1611
- "ItemCollectionSizeLimitExceededException":{
1612
- "type":"structure",
1613
- "members":{
1614
- "message":{"shape":"ErrorMessage"}
1615
- },
1616
- "exception":true
1617
- },
1618
- "ItemCount":{
1619
- "type":"long",
1620
- "min":0
1621
- },
1622
- "ItemList":{
1623
- "type":"list",
1624
- "member":{"shape":"AttributeMap"}
1625
- },
1626
- "ItemResponse":{
1627
- "type":"structure",
1628
- "members":{
1629
- "Item":{"shape":"AttributeMap"}
1630
- }
1631
- },
1632
- "ItemResponseList":{
1633
- "type":"list",
1634
- "member":{"shape":"ItemResponse"},
1635
- "max":10,
1636
- "min":1
1637
- },
1638
- "KMSMasterKeyArn":{"type":"string"},
1639
- "KMSMasterKeyId":{"type":"string"},
1640
- "Key":{
1641
- "type":"map",
1642
- "key":{"shape":"AttributeName"},
1643
- "value":{"shape":"AttributeValue"}
1644
- },
1645
- "KeyConditions":{
1646
- "type":"map",
1647
- "key":{"shape":"AttributeName"},
1648
- "value":{"shape":"Condition"}
1649
- },
1650
- "KeyExpression":{"type":"string"},
1651
- "KeyList":{
1652
- "type":"list",
1653
- "member":{"shape":"Key"},
1654
- "max":100,
1655
- "min":1
1656
- },
1657
- "KeySchema":{
1658
- "type":"list",
1659
- "member":{"shape":"KeySchemaElement"},
1660
- "max":2,
1661
- "min":1
1662
- },
1663
- "KeySchemaAttributeName":{
1664
- "type":"string",
1665
- "max":255,
1666
- "min":1
1667
- },
1668
- "KeySchemaElement":{
1669
- "type":"structure",
1670
- "required":[
1671
- "AttributeName",
1672
- "KeyType"
1673
- ],
1674
- "members":{
1675
- "AttributeName":{"shape":"KeySchemaAttributeName"},
1676
- "KeyType":{"shape":"KeyType"}
1677
- }
1678
- },
1679
- "KeyType":{
1680
- "type":"string",
1681
- "enum":[
1682
- "HASH",
1683
- "RANGE"
1684
- ]
1685
- },
1686
- "KeysAndAttributes":{
1687
- "type":"structure",
1688
- "required":["Keys"],
1689
- "members":{
1690
- "Keys":{"shape":"KeyList"},
1691
- "AttributesToGet":{"shape":"AttributeNameList"},
1692
- "ConsistentRead":{"shape":"ConsistentRead"},
1693
- "ProjectionExpression":{"shape":"ProjectionExpression"},
1694
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"}
1695
- }
1696
- },
1697
- "LimitExceededException":{
1698
- "type":"structure",
1699
- "members":{
1700
- "message":{"shape":"ErrorMessage"}
1701
- },
1702
- "exception":true
1703
- },
1704
- "ListAttributeValue":{
1705
- "type":"list",
1706
- "member":{"shape":"AttributeValue"}
1707
- },
1708
- "ListBackupsInput":{
1709
- "type":"structure",
1710
- "members":{
1711
- "TableName":{"shape":"TableName"},
1712
- "Limit":{"shape":"BackupsInputLimit"},
1713
- "TimeRangeLowerBound":{"shape":"TimeRangeLowerBound"},
1714
- "TimeRangeUpperBound":{"shape":"TimeRangeUpperBound"},
1715
- "ExclusiveStartBackupArn":{"shape":"BackupArn"},
1716
- "BackupType":{"shape":"BackupTypeFilter"}
1717
- }
1718
- },
1719
- "ListBackupsOutput":{
1720
- "type":"structure",
1721
- "members":{
1722
- "BackupSummaries":{"shape":"BackupSummaries"},
1723
- "LastEvaluatedBackupArn":{"shape":"BackupArn"}
1724
- }
1725
- },
1726
- "ListGlobalTablesInput":{
1727
- "type":"structure",
1728
- "members":{
1729
- "ExclusiveStartGlobalTableName":{"shape":"TableName"},
1730
- "Limit":{"shape":"PositiveIntegerObject"},
1731
- "RegionName":{"shape":"RegionName"}
1732
- }
1733
- },
1734
- "ListGlobalTablesOutput":{
1735
- "type":"structure",
1736
- "members":{
1737
- "GlobalTables":{"shape":"GlobalTableList"},
1738
- "LastEvaluatedGlobalTableName":{"shape":"TableName"}
1739
- }
1740
- },
1741
- "ListTablesInput":{
1742
- "type":"structure",
1743
- "members":{
1744
- "ExclusiveStartTableName":{"shape":"TableName"},
1745
- "Limit":{"shape":"ListTablesInputLimit"}
1746
- }
1747
- },
1748
- "ListTablesInputLimit":{
1749
- "type":"integer",
1750
- "max":100,
1751
- "min":1
1752
- },
1753
- "ListTablesOutput":{
1754
- "type":"structure",
1755
- "members":{
1756
- "TableNames":{"shape":"TableNameList"},
1757
- "LastEvaluatedTableName":{"shape":"TableName"}
1758
- }
1759
- },
1760
- "ListTagsOfResourceInput":{
1761
- "type":"structure",
1762
- "required":["ResourceArn"],
1763
- "members":{
1764
- "ResourceArn":{"shape":"ResourceArnString"},
1765
- "NextToken":{"shape":"NextTokenString"}
1766
- }
1767
- },
1768
- "ListTagsOfResourceOutput":{
1769
- "type":"structure",
1770
- "members":{
1771
- "Tags":{"shape":"TagList"},
1772
- "NextToken":{"shape":"NextTokenString"}
1773
- }
1774
- },
1775
- "LocalSecondaryIndex":{
1776
- "type":"structure",
1777
- "required":[
1778
- "IndexName",
1779
- "KeySchema",
1780
- "Projection"
1781
- ],
1782
- "members":{
1783
- "IndexName":{"shape":"IndexName"},
1784
- "KeySchema":{"shape":"KeySchema"},
1785
- "Projection":{"shape":"Projection"}
1786
- }
1787
- },
1788
- "LocalSecondaryIndexDescription":{
1789
- "type":"structure",
1790
- "members":{
1791
- "IndexName":{"shape":"IndexName"},
1792
- "KeySchema":{"shape":"KeySchema"},
1793
- "Projection":{"shape":"Projection"},
1794
- "IndexSizeBytes":{"shape":"Long"},
1795
- "ItemCount":{"shape":"Long"},
1796
- "IndexArn":{"shape":"String"}
1797
- }
1798
- },
1799
- "LocalSecondaryIndexDescriptionList":{
1800
- "type":"list",
1801
- "member":{"shape":"LocalSecondaryIndexDescription"}
1802
- },
1803
- "LocalSecondaryIndexInfo":{
1804
- "type":"structure",
1805
- "members":{
1806
- "IndexName":{"shape":"IndexName"},
1807
- "KeySchema":{"shape":"KeySchema"},
1808
- "Projection":{"shape":"Projection"}
1809
- }
1810
- },
1811
- "LocalSecondaryIndexList":{
1812
- "type":"list",
1813
- "member":{"shape":"LocalSecondaryIndex"}
1814
- },
1815
- "LocalSecondaryIndexes":{
1816
- "type":"list",
1817
- "member":{"shape":"LocalSecondaryIndexInfo"}
1818
- },
1819
- "Long":{"type":"long"},
1820
- "MapAttributeValue":{
1821
- "type":"map",
1822
- "key":{"shape":"AttributeName"},
1823
- "value":{"shape":"AttributeValue"}
1824
- },
1825
- "NextTokenString":{"type":"string"},
1826
- "NonKeyAttributeName":{
1827
- "type":"string",
1828
- "max":255,
1829
- "min":1
1830
- },
1831
- "NonKeyAttributeNameList":{
1832
- "type":"list",
1833
- "member":{"shape":"NonKeyAttributeName"},
1834
- "max":20,
1835
- "min":1
1836
- },
1837
- "NonNegativeLongObject":{
1838
- "type":"long",
1839
- "min":0
1840
- },
1841
- "NullAttributeValue":{"type":"boolean"},
1842
- "NumberAttributeValue":{"type":"string"},
1843
- "NumberSetAttributeValue":{
1844
- "type":"list",
1845
- "member":{"shape":"NumberAttributeValue"}
1846
- },
1847
- "PointInTimeRecoveryDescription":{
1848
- "type":"structure",
1849
- "members":{
1850
- "PointInTimeRecoveryStatus":{"shape":"PointInTimeRecoveryStatus"},
1851
- "EarliestRestorableDateTime":{"shape":"Date"},
1852
- "LatestRestorableDateTime":{"shape":"Date"}
1853
- }
1854
- },
1855
- "PointInTimeRecoverySpecification":{
1856
- "type":"structure",
1857
- "required":["PointInTimeRecoveryEnabled"],
1858
- "members":{
1859
- "PointInTimeRecoveryEnabled":{"shape":"BooleanObject"}
1860
- }
1861
- },
1862
- "PointInTimeRecoveryStatus":{
1863
- "type":"string",
1864
- "enum":[
1865
- "ENABLED",
1866
- "DISABLED"
1867
- ]
1868
- },
1869
- "PointInTimeRecoveryUnavailableException":{
1870
- "type":"structure",
1871
- "members":{
1872
- "message":{"shape":"ErrorMessage"}
1873
- },
1874
- "exception":true
1875
- },
1876
- "PositiveIntegerObject":{
1877
- "type":"integer",
1878
- "min":1
1879
- },
1880
- "PositiveLongObject":{
1881
- "type":"long",
1882
- "min":1
1883
- },
1884
- "Projection":{
1885
- "type":"structure",
1886
- "members":{
1887
- "ProjectionType":{"shape":"ProjectionType"},
1888
- "NonKeyAttributes":{"shape":"NonKeyAttributeNameList"}
1889
- }
1890
- },
1891
- "ProjectionExpression":{"type":"string"},
1892
- "ProjectionType":{
1893
- "type":"string",
1894
- "enum":[
1895
- "ALL",
1896
- "KEYS_ONLY",
1897
- "INCLUDE"
1898
- ]
1899
- },
1900
- "ProvisionedThroughput":{
1901
- "type":"structure",
1902
- "required":[
1903
- "ReadCapacityUnits",
1904
- "WriteCapacityUnits"
1905
- ],
1906
- "members":{
1907
- "ReadCapacityUnits":{"shape":"PositiveLongObject"},
1908
- "WriteCapacityUnits":{"shape":"PositiveLongObject"}
1909
- }
1910
- },
1911
- "ProvisionedThroughputDescription":{
1912
- "type":"structure",
1913
- "members":{
1914
- "LastIncreaseDateTime":{"shape":"Date"},
1915
- "LastDecreaseDateTime":{"shape":"Date"},
1916
- "NumberOfDecreasesToday":{"shape":"PositiveLongObject"},
1917
- "ReadCapacityUnits":{"shape":"NonNegativeLongObject"},
1918
- "WriteCapacityUnits":{"shape":"NonNegativeLongObject"}
1919
- }
1920
- },
1921
- "ProvisionedThroughputExceededException":{
1922
- "type":"structure",
1923
- "members":{
1924
- "message":{"shape":"ErrorMessage"}
1925
- },
1926
- "exception":true
1927
- },
1928
- "Put":{
1929
- "type":"structure",
1930
- "required":[
1931
- "Item",
1932
- "TableName"
1933
- ],
1934
- "members":{
1935
- "Item":{"shape":"PutItemInputAttributeMap"},
1936
- "TableName":{"shape":"TableName"},
1937
- "ConditionExpression":{"shape":"ConditionExpression"},
1938
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"},
1939
- "ExpressionAttributeValues":{"shape":"ExpressionAttributeValueMap"},
1940
- "ReturnValuesOnConditionCheckFailure":{"shape":"ReturnValuesOnConditionCheckFailure"}
1941
- }
1942
- },
1943
- "PutItemInput":{
1944
- "type":"structure",
1945
- "required":[
1946
- "TableName",
1947
- "Item"
1948
- ],
1949
- "members":{
1950
- "TableName":{"shape":"TableName"},
1951
- "Item":{"shape":"PutItemInputAttributeMap"},
1952
- "Expected":{"shape":"ExpectedAttributeMap"},
1953
- "ReturnValues":{"shape":"ReturnValue"},
1954
- "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"},
1955
- "ReturnItemCollectionMetrics":{"shape":"ReturnItemCollectionMetrics"},
1956
- "ConditionalOperator":{"shape":"ConditionalOperator"},
1957
- "ConditionExpression":{"shape":"ConditionExpression"},
1958
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"},
1959
- "ExpressionAttributeValues":{"shape":"ExpressionAttributeValueMap"}
1960
- }
1961
- },
1962
- "PutItemInputAttributeMap":{
1963
- "type":"map",
1964
- "key":{"shape":"AttributeName"},
1965
- "value":{"shape":"AttributeValue"}
1966
- },
1967
- "PutItemOutput":{
1968
- "type":"structure",
1969
- "members":{
1970
- "Attributes":{"shape":"AttributeMap"},
1971
- "ConsumedCapacity":{"shape":"ConsumedCapacity"},
1972
- "ItemCollectionMetrics":{"shape":"ItemCollectionMetrics"}
1973
- }
1974
- },
1975
- "PutRequest":{
1976
- "type":"structure",
1977
- "required":["Item"],
1978
- "members":{
1979
- "Item":{"shape":"PutItemInputAttributeMap"}
1980
- }
1981
- },
1982
- "QueryInput":{
1983
- "type":"structure",
1984
- "required":["TableName"],
1985
- "members":{
1986
- "TableName":{"shape":"TableName"},
1987
- "IndexName":{"shape":"IndexName"},
1988
- "Select":{"shape":"Select"},
1989
- "AttributesToGet":{"shape":"AttributeNameList"},
1990
- "Limit":{"shape":"PositiveIntegerObject"},
1991
- "ConsistentRead":{"shape":"ConsistentRead"},
1992
- "KeyConditions":{"shape":"KeyConditions"},
1993
- "QueryFilter":{"shape":"FilterConditionMap"},
1994
- "ConditionalOperator":{"shape":"ConditionalOperator"},
1995
- "ScanIndexForward":{"shape":"BooleanObject"},
1996
- "ExclusiveStartKey":{"shape":"Key"},
1997
- "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"},
1998
- "ProjectionExpression":{"shape":"ProjectionExpression"},
1999
- "FilterExpression":{"shape":"ConditionExpression"},
2000
- "KeyConditionExpression":{"shape":"KeyExpression"},
2001
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"},
2002
- "ExpressionAttributeValues":{"shape":"ExpressionAttributeValueMap"}
2003
- }
2004
- },
2005
- "QueryOutput":{
2006
- "type":"structure",
2007
- "members":{
2008
- "Items":{"shape":"ItemList"},
2009
- "Count":{"shape":"Integer"},
2010
- "ScannedCount":{"shape":"Integer"},
2011
- "LastEvaluatedKey":{"shape":"Key"},
2012
- "ConsumedCapacity":{"shape":"ConsumedCapacity"}
2013
- }
2014
- },
2015
- "RegionName":{"type":"string"},
2016
- "Replica":{
2017
- "type":"structure",
2018
- "members":{
2019
- "RegionName":{"shape":"RegionName"}
2020
- }
2021
- },
2022
- "ReplicaAlreadyExistsException":{
2023
- "type":"structure",
2024
- "members":{
2025
- "message":{"shape":"ErrorMessage"}
2026
- },
2027
- "exception":true
2028
- },
2029
- "ReplicaDescription":{
2030
- "type":"structure",
2031
- "members":{
2032
- "RegionName":{"shape":"RegionName"}
2033
- }
2034
- },
2035
- "ReplicaDescriptionList":{
2036
- "type":"list",
2037
- "member":{"shape":"ReplicaDescription"}
2038
- },
2039
- "ReplicaGlobalSecondaryIndexSettingsDescription":{
2040
- "type":"structure",
2041
- "required":["IndexName"],
2042
- "members":{
2043
- "IndexName":{"shape":"IndexName"},
2044
- "IndexStatus":{"shape":"IndexStatus"},
2045
- "ProvisionedReadCapacityUnits":{"shape":"PositiveLongObject"},
2046
- "ProvisionedReadCapacityAutoScalingSettings":{"shape":"AutoScalingSettingsDescription"},
2047
- "ProvisionedWriteCapacityUnits":{"shape":"PositiveLongObject"},
2048
- "ProvisionedWriteCapacityAutoScalingSettings":{"shape":"AutoScalingSettingsDescription"}
2049
- }
2050
- },
2051
- "ReplicaGlobalSecondaryIndexSettingsDescriptionList":{
2052
- "type":"list",
2053
- "member":{"shape":"ReplicaGlobalSecondaryIndexSettingsDescription"}
2054
- },
2055
- "ReplicaGlobalSecondaryIndexSettingsUpdate":{
2056
- "type":"structure",
2057
- "required":["IndexName"],
2058
- "members":{
2059
- "IndexName":{"shape":"IndexName"},
2060
- "ProvisionedReadCapacityUnits":{"shape":"PositiveLongObject"},
2061
- "ProvisionedReadCapacityAutoScalingSettingsUpdate":{"shape":"AutoScalingSettingsUpdate"}
2062
- }
2063
- },
2064
- "ReplicaGlobalSecondaryIndexSettingsUpdateList":{
2065
- "type":"list",
2066
- "member":{"shape":"ReplicaGlobalSecondaryIndexSettingsUpdate"},
2067
- "max":20,
2068
- "min":1
2069
- },
2070
- "ReplicaList":{
2071
- "type":"list",
2072
- "member":{"shape":"Replica"}
2073
- },
2074
- "ReplicaNotFoundException":{
2075
- "type":"structure",
2076
- "members":{
2077
- "message":{"shape":"ErrorMessage"}
2078
- },
2079
- "exception":true
2080
- },
2081
- "ReplicaSettingsDescription":{
2082
- "type":"structure",
2083
- "required":["RegionName"],
2084
- "members":{
2085
- "RegionName":{"shape":"RegionName"},
2086
- "ReplicaStatus":{"shape":"ReplicaStatus"},
2087
- "ReplicaBillingModeSummary":{"shape":"BillingModeSummary"},
2088
- "ReplicaProvisionedReadCapacityUnits":{"shape":"NonNegativeLongObject"},
2089
- "ReplicaProvisionedReadCapacityAutoScalingSettings":{"shape":"AutoScalingSettingsDescription"},
2090
- "ReplicaProvisionedWriteCapacityUnits":{"shape":"NonNegativeLongObject"},
2091
- "ReplicaProvisionedWriteCapacityAutoScalingSettings":{"shape":"AutoScalingSettingsDescription"},
2092
- "ReplicaGlobalSecondaryIndexSettings":{"shape":"ReplicaGlobalSecondaryIndexSettingsDescriptionList"}
2093
- }
2094
- },
2095
- "ReplicaSettingsDescriptionList":{
2096
- "type":"list",
2097
- "member":{"shape":"ReplicaSettingsDescription"}
2098
- },
2099
- "ReplicaSettingsUpdate":{
2100
- "type":"structure",
2101
- "required":["RegionName"],
2102
- "members":{
2103
- "RegionName":{"shape":"RegionName"},
2104
- "ReplicaProvisionedReadCapacityUnits":{"shape":"PositiveLongObject"},
2105
- "ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate":{"shape":"AutoScalingSettingsUpdate"},
2106
- "ReplicaGlobalSecondaryIndexSettingsUpdate":{"shape":"ReplicaGlobalSecondaryIndexSettingsUpdateList"}
2107
- }
2108
- },
2109
- "ReplicaSettingsUpdateList":{
2110
- "type":"list",
2111
- "member":{"shape":"ReplicaSettingsUpdate"},
2112
- "max":50,
2113
- "min":1
2114
- },
2115
- "ReplicaStatus":{
2116
- "type":"string",
2117
- "enum":[
2118
- "CREATING",
2119
- "UPDATING",
2120
- "DELETING",
2121
- "ACTIVE"
2122
- ]
2123
- },
2124
- "ReplicaUpdate":{
2125
- "type":"structure",
2126
- "members":{
2127
- "Create":{"shape":"CreateReplicaAction"},
2128
- "Delete":{"shape":"DeleteReplicaAction"}
2129
- }
2130
- },
2131
- "ReplicaUpdateList":{
2132
- "type":"list",
2133
- "member":{"shape":"ReplicaUpdate"}
2134
- },
2135
- "RequestLimitExceeded":{
2136
- "type":"structure",
2137
- "members":{
2138
- "message":{"shape":"ErrorMessage"}
2139
- },
2140
- "exception":true
2141
- },
2142
- "ResourceArnString":{
2143
- "type":"string",
2144
- "max":1283,
2145
- "min":1
2146
- },
2147
- "ResourceInUseException":{
2148
- "type":"structure",
2149
- "members":{
2150
- "message":{"shape":"ErrorMessage"}
2151
- },
2152
- "exception":true
2153
- },
2154
- "ResourceNotFoundException":{
2155
- "type":"structure",
2156
- "members":{
2157
- "message":{"shape":"ErrorMessage"}
2158
- },
2159
- "exception":true
2160
- },
2161
- "RestoreInProgress":{"type":"boolean"},
2162
- "RestoreSummary":{
2163
- "type":"structure",
2164
- "required":[
2165
- "RestoreDateTime",
2166
- "RestoreInProgress"
2167
- ],
2168
- "members":{
2169
- "SourceBackupArn":{"shape":"BackupArn"},
2170
- "SourceTableArn":{"shape":"TableArn"},
2171
- "RestoreDateTime":{"shape":"Date"},
2172
- "RestoreInProgress":{"shape":"RestoreInProgress"}
2173
- }
2174
- },
2175
- "RestoreTableFromBackupInput":{
2176
- "type":"structure",
2177
- "required":[
2178
- "TargetTableName",
2179
- "BackupArn"
2180
- ],
2181
- "members":{
2182
- "TargetTableName":{"shape":"TableName"},
2183
- "BackupArn":{"shape":"BackupArn"}
2184
- }
2185
- },
2186
- "RestoreTableFromBackupOutput":{
2187
- "type":"structure",
2188
- "members":{
2189
- "TableDescription":{"shape":"TableDescription"}
2190
- }
2191
- },
2192
- "RestoreTableToPointInTimeInput":{
2193
- "type":"structure",
2194
- "required":[
2195
- "SourceTableName",
2196
- "TargetTableName"
2197
- ],
2198
- "members":{
2199
- "SourceTableName":{"shape":"TableName"},
2200
- "TargetTableName":{"shape":"TableName"},
2201
- "UseLatestRestorableTime":{"shape":"BooleanObject"},
2202
- "RestoreDateTime":{"shape":"Date"}
2203
- }
2204
- },
2205
- "RestoreTableToPointInTimeOutput":{
2206
- "type":"structure",
2207
- "members":{
2208
- "TableDescription":{"shape":"TableDescription"}
2209
- }
2210
- },
2211
- "ReturnConsumedCapacity":{
2212
- "type":"string",
2213
- "enum":[
2214
- "INDEXES",
2215
- "TOTAL",
2216
- "NONE"
2217
- ]
2218
- },
2219
- "ReturnItemCollectionMetrics":{
2220
- "type":"string",
2221
- "enum":[
2222
- "SIZE",
2223
- "NONE"
2224
- ]
2225
- },
2226
- "ReturnValue":{
2227
- "type":"string",
2228
- "enum":[
2229
- "NONE",
2230
- "ALL_OLD",
2231
- "UPDATED_OLD",
2232
- "ALL_NEW",
2233
- "UPDATED_NEW"
2234
- ]
2235
- },
2236
- "ReturnValuesOnConditionCheckFailure":{
2237
- "type":"string",
2238
- "enum":[
2239
- "ALL_OLD",
2240
- "NONE"
2241
- ]
2242
- },
2243
- "SSEDescription":{
2244
- "type":"structure",
2245
- "members":{
2246
- "Status":{"shape":"SSEStatus"},
2247
- "SSEType":{"shape":"SSEType"},
2248
- "KMSMasterKeyArn":{"shape":"KMSMasterKeyArn"}
2249
- }
2250
- },
2251
- "SSEEnabled":{"type":"boolean"},
2252
- "SSESpecification":{
2253
- "type":"structure",
2254
- "members":{
2255
- "Enabled":{"shape":"SSEEnabled"},
2256
- "SSEType":{"shape":"SSEType"},
2257
- "KMSMasterKeyId":{"shape":"KMSMasterKeyId"}
2258
- }
2259
- },
2260
- "SSEStatus":{
2261
- "type":"string",
2262
- "enum":[
2263
- "ENABLING",
2264
- "ENABLED",
2265
- "DISABLING",
2266
- "DISABLED",
2267
- "UPDATING"
2268
- ]
2269
- },
2270
- "SSEType":{
2271
- "type":"string",
2272
- "enum":[
2273
- "AES256",
2274
- "KMS"
2275
- ]
2276
- },
2277
- "ScalarAttributeType":{
2278
- "type":"string",
2279
- "enum":[
2280
- "S",
2281
- "N",
2282
- "B"
2283
- ]
2284
- },
2285
- "ScanInput":{
2286
- "type":"structure",
2287
- "required":["TableName"],
2288
- "members":{
2289
- "TableName":{"shape":"TableName"},
2290
- "IndexName":{"shape":"IndexName"},
2291
- "AttributesToGet":{"shape":"AttributeNameList"},
2292
- "Limit":{"shape":"PositiveIntegerObject"},
2293
- "Select":{"shape":"Select"},
2294
- "ScanFilter":{"shape":"FilterConditionMap"},
2295
- "ConditionalOperator":{"shape":"ConditionalOperator"},
2296
- "ExclusiveStartKey":{"shape":"Key"},
2297
- "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"},
2298
- "TotalSegments":{"shape":"ScanTotalSegments"},
2299
- "Segment":{"shape":"ScanSegment"},
2300
- "ProjectionExpression":{"shape":"ProjectionExpression"},
2301
- "FilterExpression":{"shape":"ConditionExpression"},
2302
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"},
2303
- "ExpressionAttributeValues":{"shape":"ExpressionAttributeValueMap"},
2304
- "ConsistentRead":{"shape":"ConsistentRead"}
2305
- }
2306
- },
2307
- "ScanOutput":{
2308
- "type":"structure",
2309
- "members":{
2310
- "Items":{"shape":"ItemList"},
2311
- "Count":{"shape":"Integer"},
2312
- "ScannedCount":{"shape":"Integer"},
2313
- "LastEvaluatedKey":{"shape":"Key"},
2314
- "ConsumedCapacity":{"shape":"ConsumedCapacity"}
2315
- }
2316
- },
2317
- "ScanSegment":{
2318
- "type":"integer",
2319
- "max":999999,
2320
- "min":0
2321
- },
2322
- "ScanTotalSegments":{
2323
- "type":"integer",
2324
- "max":1000000,
2325
- "min":1
2326
- },
2327
- "SecondaryIndexesCapacityMap":{
2328
- "type":"map",
2329
- "key":{"shape":"IndexName"},
2330
- "value":{"shape":"Capacity"}
2331
- },
2332
- "Select":{
2333
- "type":"string",
2334
- "enum":[
2335
- "ALL_ATTRIBUTES",
2336
- "ALL_PROJECTED_ATTRIBUTES",
2337
- "SPECIFIC_ATTRIBUTES",
2338
- "COUNT"
2339
- ]
2340
- },
2341
- "SourceTableDetails":{
2342
- "type":"structure",
2343
- "required":[
2344
- "TableName",
2345
- "TableId",
2346
- "KeySchema",
2347
- "TableCreationDateTime",
2348
- "ProvisionedThroughput"
2349
- ],
2350
- "members":{
2351
- "TableName":{"shape":"TableName"},
2352
- "TableId":{"shape":"TableId"},
2353
- "TableArn":{"shape":"TableArn"},
2354
- "TableSizeBytes":{"shape":"Long"},
2355
- "KeySchema":{"shape":"KeySchema"},
2356
- "TableCreationDateTime":{"shape":"TableCreationDateTime"},
2357
- "ProvisionedThroughput":{"shape":"ProvisionedThroughput"},
2358
- "ItemCount":{"shape":"ItemCount"},
2359
- "BillingMode":{"shape":"BillingMode"}
2360
- }
2361
- },
2362
- "SourceTableFeatureDetails":{
2363
- "type":"structure",
2364
- "members":{
2365
- "LocalSecondaryIndexes":{"shape":"LocalSecondaryIndexes"},
2366
- "GlobalSecondaryIndexes":{"shape":"GlobalSecondaryIndexes"},
2367
- "StreamDescription":{"shape":"StreamSpecification"},
2368
- "TimeToLiveDescription":{"shape":"TimeToLiveDescription"},
2369
- "SSEDescription":{"shape":"SSEDescription"}
2370
- }
2371
- },
2372
- "StreamArn":{
2373
- "type":"string",
2374
- "max":1024,
2375
- "min":37
2376
- },
2377
- "StreamEnabled":{"type":"boolean"},
2378
- "StreamSpecification":{
2379
- "type":"structure",
2380
- "members":{
2381
- "StreamEnabled":{"shape":"StreamEnabled"},
2382
- "StreamViewType":{"shape":"StreamViewType"}
2383
- }
2384
- },
2385
- "StreamViewType":{
2386
- "type":"string",
2387
- "enum":[
2388
- "NEW_IMAGE",
2389
- "OLD_IMAGE",
2390
- "NEW_AND_OLD_IMAGES",
2391
- "KEYS_ONLY"
2392
- ]
2393
- },
2394
- "String":{"type":"string"},
2395
- "StringAttributeValue":{"type":"string"},
2396
- "StringSetAttributeValue":{
2397
- "type":"list",
2398
- "member":{"shape":"StringAttributeValue"}
2399
- },
2400
- "TableAlreadyExistsException":{
2401
- "type":"structure",
2402
- "members":{
2403
- "message":{"shape":"ErrorMessage"}
2404
- },
2405
- "exception":true
2406
- },
2407
- "TableArn":{"type":"string"},
2408
- "TableCreationDateTime":{"type":"timestamp"},
2409
- "TableDescription":{
2410
- "type":"structure",
2411
- "members":{
2412
- "AttributeDefinitions":{"shape":"AttributeDefinitions"},
2413
- "TableName":{"shape":"TableName"},
2414
- "KeySchema":{"shape":"KeySchema"},
2415
- "TableStatus":{"shape":"TableStatus"},
2416
- "CreationDateTime":{"shape":"Date"},
2417
- "ProvisionedThroughput":{"shape":"ProvisionedThroughputDescription"},
2418
- "TableSizeBytes":{"shape":"Long"},
2419
- "ItemCount":{"shape":"Long"},
2420
- "TableArn":{"shape":"String"},
2421
- "TableId":{"shape":"TableId"},
2422
- "BillingModeSummary":{"shape":"BillingModeSummary"},
2423
- "LocalSecondaryIndexes":{"shape":"LocalSecondaryIndexDescriptionList"},
2424
- "GlobalSecondaryIndexes":{"shape":"GlobalSecondaryIndexDescriptionList"},
2425
- "StreamSpecification":{"shape":"StreamSpecification"},
2426
- "LatestStreamLabel":{"shape":"String"},
2427
- "LatestStreamArn":{"shape":"StreamArn"},
2428
- "RestoreSummary":{"shape":"RestoreSummary"},
2429
- "SSEDescription":{"shape":"SSEDescription"}
2430
- }
2431
- },
2432
- "TableId":{
2433
- "type":"string",
2434
- "pattern":"[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
2435
- },
2436
- "TableInUseException":{
2437
- "type":"structure",
2438
- "members":{
2439
- "message":{"shape":"ErrorMessage"}
2440
- },
2441
- "exception":true
2442
- },
2443
- "TableName":{
2444
- "type":"string",
2445
- "max":255,
2446
- "min":3,
2447
- "pattern":"[a-zA-Z0-9_.-]+"
2448
- },
2449
- "TableNameList":{
2450
- "type":"list",
2451
- "member":{"shape":"TableName"}
2452
- },
2453
- "TableNotFoundException":{
2454
- "type":"structure",
2455
- "members":{
2456
- "message":{"shape":"ErrorMessage"}
2457
- },
2458
- "exception":true
2459
- },
2460
- "TableStatus":{
2461
- "type":"string",
2462
- "enum":[
2463
- "CREATING",
2464
- "UPDATING",
2465
- "DELETING",
2466
- "ACTIVE"
2467
- ]
2468
- },
2469
- "Tag":{
2470
- "type":"structure",
2471
- "required":[
2472
- "Key",
2473
- "Value"
2474
- ],
2475
- "members":{
2476
- "Key":{"shape":"TagKeyString"},
2477
- "Value":{"shape":"TagValueString"}
2478
- }
2479
- },
2480
- "TagKeyList":{
2481
- "type":"list",
2482
- "member":{"shape":"TagKeyString"}
2483
- },
2484
- "TagKeyString":{
2485
- "type":"string",
2486
- "max":128,
2487
- "min":1
2488
- },
2489
- "TagList":{
2490
- "type":"list",
2491
- "member":{"shape":"Tag"}
2492
- },
2493
- "TagResourceInput":{
2494
- "type":"structure",
2495
- "required":[
2496
- "ResourceArn",
2497
- "Tags"
2498
- ],
2499
- "members":{
2500
- "ResourceArn":{"shape":"ResourceArnString"},
2501
- "Tags":{"shape":"TagList"}
2502
- }
2503
- },
2504
- "TagValueString":{
2505
- "type":"string",
2506
- "max":256,
2507
- "min":0
2508
- },
2509
- "TimeRangeLowerBound":{"type":"timestamp"},
2510
- "TimeRangeUpperBound":{"type":"timestamp"},
2511
- "TimeToLiveAttributeName":{
2512
- "type":"string",
2513
- "max":255,
2514
- "min":1
2515
- },
2516
- "TimeToLiveDescription":{
2517
- "type":"structure",
2518
- "members":{
2519
- "TimeToLiveStatus":{"shape":"TimeToLiveStatus"},
2520
- "AttributeName":{"shape":"TimeToLiveAttributeName"}
2521
- }
2522
- },
2523
- "TimeToLiveEnabled":{"type":"boolean"},
2524
- "TimeToLiveSpecification":{
2525
- "type":"structure",
2526
- "required":[
2527
- "Enabled",
2528
- "AttributeName"
2529
- ],
2530
- "members":{
2531
- "Enabled":{"shape":"TimeToLiveEnabled"},
2532
- "AttributeName":{"shape":"TimeToLiveAttributeName"}
2533
- }
2534
- },
2535
- "TimeToLiveStatus":{
2536
- "type":"string",
2537
- "enum":[
2538
- "ENABLING",
2539
- "DISABLING",
2540
- "ENABLED",
2541
- "DISABLED"
2542
- ]
2543
- },
2544
- "TransactGetItem":{
2545
- "type":"structure",
2546
- "required":["Get"],
2547
- "members":{
2548
- "Get":{"shape":"Get"}
2549
- }
2550
- },
2551
- "TransactGetItemList":{
2552
- "type":"list",
2553
- "member":{"shape":"TransactGetItem"},
2554
- "max":10,
2555
- "min":1
2556
- },
2557
- "TransactGetItemsInput":{
2558
- "type":"structure",
2559
- "required":["TransactItems"],
2560
- "members":{
2561
- "TransactItems":{"shape":"TransactGetItemList"},
2562
- "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"}
2563
- }
2564
- },
2565
- "TransactGetItemsOutput":{
2566
- "type":"structure",
2567
- "members":{
2568
- "ConsumedCapacity":{"shape":"ConsumedCapacityMultiple"},
2569
- "Responses":{"shape":"ItemResponseList"}
2570
- }
2571
- },
2572
- "TransactWriteItem":{
2573
- "type":"structure",
2574
- "members":{
2575
- "ConditionCheck":{"shape":"ConditionCheck"},
2576
- "Put":{"shape":"Put"},
2577
- "Delete":{"shape":"Delete"},
2578
- "Update":{"shape":"Update"}
2579
- }
2580
- },
2581
- "TransactWriteItemList":{
2582
- "type":"list",
2583
- "member":{"shape":"TransactWriteItem"},
2584
- "max":10,
2585
- "min":1
2586
- },
2587
- "TransactWriteItemsInput":{
2588
- "type":"structure",
2589
- "required":["TransactItems"],
2590
- "members":{
2591
- "TransactItems":{"shape":"TransactWriteItemList"},
2592
- "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"},
2593
- "ReturnItemCollectionMetrics":{"shape":"ReturnItemCollectionMetrics"},
2594
- "ClientRequestToken":{
2595
- "shape":"ClientRequestToken",
2596
- "idempotencyToken":true
2597
- }
2598
- }
2599
- },
2600
- "TransactWriteItemsOutput":{
2601
- "type":"structure",
2602
- "members":{
2603
- "ConsumedCapacity":{"shape":"ConsumedCapacityMultiple"},
2604
- "ItemCollectionMetrics":{"shape":"ItemCollectionMetricsPerTable"}
2605
- }
2606
- },
2607
- "TransactionCanceledException":{
2608
- "type":"structure",
2609
- "members":{
2610
- "Message":{"shape":"ErrorMessage"},
2611
- "CancellationReasons":{"shape":"CancellationReasonList"}
2612
- },
2613
- "exception":true
2614
- },
2615
- "TransactionConflictException":{
2616
- "type":"structure",
2617
- "members":{
2618
- "message":{"shape":"ErrorMessage"}
2619
- },
2620
- "exception":true
2621
- },
2622
- "TransactionInProgressException":{
2623
- "type":"structure",
2624
- "members":{
2625
- "Message":{"shape":"ErrorMessage"}
2626
- },
2627
- "exception":true
2628
- },
2629
- "UntagResourceInput":{
2630
- "type":"structure",
2631
- "required":[
2632
- "ResourceArn",
2633
- "TagKeys"
2634
- ],
2635
- "members":{
2636
- "ResourceArn":{"shape":"ResourceArnString"},
2637
- "TagKeys":{"shape":"TagKeyList"}
2638
- }
2639
- },
2640
- "Update":{
2641
- "type":"structure",
2642
- "required":[
2643
- "Key",
2644
- "UpdateExpression",
2645
- "TableName"
2646
- ],
2647
- "members":{
2648
- "Key":{"shape":"Key"},
2649
- "UpdateExpression":{"shape":"UpdateExpression"},
2650
- "TableName":{"shape":"TableName"},
2651
- "ConditionExpression":{"shape":"ConditionExpression"},
2652
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"},
2653
- "ExpressionAttributeValues":{"shape":"ExpressionAttributeValueMap"},
2654
- "ReturnValuesOnConditionCheckFailure":{"shape":"ReturnValuesOnConditionCheckFailure"}
2655
- }
2656
- },
2657
- "UpdateContinuousBackupsInput":{
2658
- "type":"structure",
2659
- "required":[
2660
- "TableName",
2661
- "PointInTimeRecoverySpecification"
2662
- ],
2663
- "members":{
2664
- "TableName":{"shape":"TableName"},
2665
- "PointInTimeRecoverySpecification":{"shape":"PointInTimeRecoverySpecification"}
2666
- }
2667
- },
2668
- "UpdateContinuousBackupsOutput":{
2669
- "type":"structure",
2670
- "members":{
2671
- "ContinuousBackupsDescription":{"shape":"ContinuousBackupsDescription"}
2672
- }
2673
- },
2674
- "UpdateExpression":{"type":"string"},
2675
- "UpdateGlobalSecondaryIndexAction":{
2676
- "type":"structure",
2677
- "required":[
2678
- "IndexName",
2679
- "ProvisionedThroughput"
2680
- ],
2681
- "members":{
2682
- "IndexName":{"shape":"IndexName"},
2683
- "ProvisionedThroughput":{"shape":"ProvisionedThroughput"}
2684
- }
2685
- },
2686
- "UpdateGlobalTableInput":{
2687
- "type":"structure",
2688
- "required":[
2689
- "GlobalTableName",
2690
- "ReplicaUpdates"
2691
- ],
2692
- "members":{
2693
- "GlobalTableName":{"shape":"TableName"},
2694
- "ReplicaUpdates":{"shape":"ReplicaUpdateList"}
2695
- }
2696
- },
2697
- "UpdateGlobalTableOutput":{
2698
- "type":"structure",
2699
- "members":{
2700
- "GlobalTableDescription":{"shape":"GlobalTableDescription"}
2701
- }
2702
- },
2703
- "UpdateGlobalTableSettingsInput":{
2704
- "type":"structure",
2705
- "required":["GlobalTableName"],
2706
- "members":{
2707
- "GlobalTableName":{"shape":"TableName"},
2708
- "GlobalTableBillingMode":{"shape":"BillingMode"},
2709
- "GlobalTableProvisionedWriteCapacityUnits":{"shape":"PositiveLongObject"},
2710
- "GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate":{"shape":"AutoScalingSettingsUpdate"},
2711
- "GlobalTableGlobalSecondaryIndexSettingsUpdate":{"shape":"GlobalTableGlobalSecondaryIndexSettingsUpdateList"},
2712
- "ReplicaSettingsUpdate":{"shape":"ReplicaSettingsUpdateList"}
2713
- }
2714
- },
2715
- "UpdateGlobalTableSettingsOutput":{
2716
- "type":"structure",
2717
- "members":{
2718
- "GlobalTableName":{"shape":"TableName"},
2719
- "ReplicaSettings":{"shape":"ReplicaSettingsDescriptionList"}
2720
- }
2721
- },
2722
- "UpdateItemInput":{
2723
- "type":"structure",
2724
- "required":[
2725
- "TableName",
2726
- "Key"
2727
- ],
2728
- "members":{
2729
- "TableName":{"shape":"TableName"},
2730
- "Key":{"shape":"Key"},
2731
- "AttributeUpdates":{"shape":"AttributeUpdates"},
2732
- "Expected":{"shape":"ExpectedAttributeMap"},
2733
- "ConditionalOperator":{"shape":"ConditionalOperator"},
2734
- "ReturnValues":{"shape":"ReturnValue"},
2735
- "ReturnConsumedCapacity":{"shape":"ReturnConsumedCapacity"},
2736
- "ReturnItemCollectionMetrics":{"shape":"ReturnItemCollectionMetrics"},
2737
- "UpdateExpression":{"shape":"UpdateExpression"},
2738
- "ConditionExpression":{"shape":"ConditionExpression"},
2739
- "ExpressionAttributeNames":{"shape":"ExpressionAttributeNameMap"},
2740
- "ExpressionAttributeValues":{"shape":"ExpressionAttributeValueMap"}
2741
- }
2742
- },
2743
- "UpdateItemOutput":{
2744
- "type":"structure",
2745
- "members":{
2746
- "Attributes":{"shape":"AttributeMap"},
2747
- "ConsumedCapacity":{"shape":"ConsumedCapacity"},
2748
- "ItemCollectionMetrics":{"shape":"ItemCollectionMetrics"}
2749
- }
2750
- },
2751
- "UpdateTableInput":{
2752
- "type":"structure",
2753
- "required":["TableName"],
2754
- "members":{
2755
- "AttributeDefinitions":{"shape":"AttributeDefinitions"},
2756
- "TableName":{"shape":"TableName"},
2757
- "BillingMode":{"shape":"BillingMode"},
2758
- "ProvisionedThroughput":{"shape":"ProvisionedThroughput"},
2759
- "GlobalSecondaryIndexUpdates":{"shape":"GlobalSecondaryIndexUpdateList"},
2760
- "StreamSpecification":{"shape":"StreamSpecification"},
2761
- "SSESpecification":{"shape":"SSESpecification"}
2762
- }
2763
- },
2764
- "UpdateTableOutput":{
2765
- "type":"structure",
2766
- "members":{
2767
- "TableDescription":{"shape":"TableDescription"}
2768
- }
2769
- },
2770
- "UpdateTimeToLiveInput":{
2771
- "type":"structure",
2772
- "required":[
2773
- "TableName",
2774
- "TimeToLiveSpecification"
2775
- ],
2776
- "members":{
2777
- "TableName":{"shape":"TableName"},
2778
- "TimeToLiveSpecification":{"shape":"TimeToLiveSpecification"}
2779
- }
2780
- },
2781
- "UpdateTimeToLiveOutput":{
2782
- "type":"structure",
2783
- "members":{
2784
- "TimeToLiveSpecification":{"shape":"TimeToLiveSpecification"}
2785
- }
2786
- },
2787
- "WriteRequest":{
2788
- "type":"structure",
2789
- "members":{
2790
- "PutRequest":{"shape":"PutRequest"},
2791
- "DeleteRequest":{"shape":"DeleteRequest"}
2792
- }
2793
- },
2794
- "WriteRequests":{
2795
- "type":"list",
2796
- "member":{"shape":"WriteRequest"},
2797
- "max":25,
2798
- "min":1
2799
- }
2800
- }
2801
- }