aws-sdk-core 2.11.405 → 3.76.0

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