aws-sdk-core 2.11.437 → 3.89.0

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