aws-sdk-core 2.11.401 → 3.77.0

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