aws-sdk-core 2.11.632 → 3.0.0.rc1

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