aws-sdk-core 2.4.0 → 3.53.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +56 -21
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +256 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -1,17 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "pagination": {
4
- "ListDomains": {
5
- "limit_key": "MaxItems",
6
- "input_token": "Marker",
7
- "output_token": "NextPageMarker",
8
- "result_key": "Domains"
9
- },
10
- "ListOperations": {
11
- "limit_key": "MaxItems",
12
- "input_token": "Marker",
13
- "output_token": "NextPageMarker",
14
- "result_key": "Operations"
15
- }
16
- }
17
- }
@@ -1,4517 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2006-03-01",
5
- "checksumFormat":"md5",
6
- "endpointPrefix":"s3",
7
- "globalEndpoint":"s3.amazonaws.com",
8
- "protocol":"rest-xml",
9
- "serviceAbbreviation":"Amazon S3",
10
- "serviceFullName":"Amazon Simple Storage Service",
11
- "signatureVersion":"s3",
12
- "timestampFormat":"rfc822"
13
- },
14
- "operations":{
15
- "AbortMultipartUpload":{
16
- "name":"AbortMultipartUpload",
17
- "http":{
18
- "method":"DELETE",
19
- "requestUri":"/{Bucket}/{Key+}"
20
- },
21
- "input":{"shape":"AbortMultipartUploadRequest"},
22
- "output":{"shape":"AbortMultipartUploadOutput"},
23
- "errors":[
24
- {"shape":"NoSuchUpload"}
25
- ],
26
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadAbort.html"
27
- },
28
- "CompleteMultipartUpload":{
29
- "name":"CompleteMultipartUpload",
30
- "http":{
31
- "method":"POST",
32
- "requestUri":"/{Bucket}/{Key+}"
33
- },
34
- "input":{"shape":"CompleteMultipartUploadRequest"},
35
- "output":{"shape":"CompleteMultipartUploadOutput"},
36
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadComplete.html"
37
- },
38
- "CopyObject":{
39
- "name":"CopyObject",
40
- "http":{
41
- "method":"PUT",
42
- "requestUri":"/{Bucket}/{Key+}"
43
- },
44
- "input":{"shape":"CopyObjectRequest"},
45
- "output":{"shape":"CopyObjectOutput"},
46
- "errors":[
47
- {"shape":"ObjectNotInActiveTierError"}
48
- ],
49
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectCOPY.html",
50
- "alias":"PutObjectCopy"
51
- },
52
- "CreateBucket":{
53
- "name":"CreateBucket",
54
- "http":{
55
- "method":"PUT",
56
- "requestUri":"/{Bucket}"
57
- },
58
- "input":{"shape":"CreateBucketRequest"},
59
- "output":{"shape":"CreateBucketOutput"},
60
- "errors":[
61
- {"shape":"BucketAlreadyExists"},
62
- {"shape":"BucketAlreadyOwnedByYou"}
63
- ],
64
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUT.html",
65
- "alias":"PutBucket"
66
- },
67
- "CreateMultipartUpload":{
68
- "name":"CreateMultipartUpload",
69
- "http":{
70
- "method":"POST",
71
- "requestUri":"/{Bucket}/{Key+}?uploads"
72
- },
73
- "input":{"shape":"CreateMultipartUploadRequest"},
74
- "output":{"shape":"CreateMultipartUploadOutput"},
75
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadInitiate.html",
76
- "alias":"InitiateMultipartUpload"
77
- },
78
- "DeleteBucket":{
79
- "name":"DeleteBucket",
80
- "http":{
81
- "method":"DELETE",
82
- "requestUri":"/{Bucket}"
83
- },
84
- "input":{"shape":"DeleteBucketRequest"},
85
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETE.html"
86
- },
87
- "DeleteBucketCors":{
88
- "name":"DeleteBucketCors",
89
- "http":{
90
- "method":"DELETE",
91
- "requestUri":"/{Bucket}?cors"
92
- },
93
- "input":{"shape":"DeleteBucketCorsRequest"},
94
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEcors.html"
95
- },
96
- "DeleteBucketLifecycle":{
97
- "name":"DeleteBucketLifecycle",
98
- "http":{
99
- "method":"DELETE",
100
- "requestUri":"/{Bucket}?lifecycle"
101
- },
102
- "input":{"shape":"DeleteBucketLifecycleRequest"},
103
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETElifecycle.html"
104
- },
105
- "DeleteBucketPolicy":{
106
- "name":"DeleteBucketPolicy",
107
- "http":{
108
- "method":"DELETE",
109
- "requestUri":"/{Bucket}?policy"
110
- },
111
- "input":{"shape":"DeleteBucketPolicyRequest"},
112
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEpolicy.html"
113
- },
114
- "DeleteBucketReplication":{
115
- "name":"DeleteBucketReplication",
116
- "http":{
117
- "method":"DELETE",
118
- "requestUri":"/{Bucket}?replication"
119
- },
120
- "input":{"shape":"DeleteBucketReplicationRequest"}
121
- },
122
- "DeleteBucketTagging":{
123
- "name":"DeleteBucketTagging",
124
- "http":{
125
- "method":"DELETE",
126
- "requestUri":"/{Bucket}?tagging"
127
- },
128
- "input":{"shape":"DeleteBucketTaggingRequest"},
129
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEtagging.html"
130
- },
131
- "DeleteBucketWebsite":{
132
- "name":"DeleteBucketWebsite",
133
- "http":{
134
- "method":"DELETE",
135
- "requestUri":"/{Bucket}?website"
136
- },
137
- "input":{"shape":"DeleteBucketWebsiteRequest"},
138
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketDELETEwebsite.html"
139
- },
140
- "DeleteObject":{
141
- "name":"DeleteObject",
142
- "http":{
143
- "method":"DELETE",
144
- "requestUri":"/{Bucket}/{Key+}"
145
- },
146
- "input":{"shape":"DeleteObjectRequest"},
147
- "output":{"shape":"DeleteObjectOutput"},
148
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectDELETE.html"
149
- },
150
- "DeleteObjects":{
151
- "name":"DeleteObjects",
152
- "http":{
153
- "method":"POST",
154
- "requestUri":"/{Bucket}?delete"
155
- },
156
- "input":{"shape":"DeleteObjectsRequest"},
157
- "output":{"shape":"DeleteObjectsOutput"},
158
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/multiobjectdeleteapi.html",
159
- "alias":"DeleteMultipleObjects"
160
- },
161
- "GetBucketAccelerateConfiguration":{
162
- "name":"GetBucketAccelerateConfiguration",
163
- "http":{
164
- "method":"GET",
165
- "requestUri":"/{Bucket}?accelerate"
166
- },
167
- "input":{"shape":"GetBucketAccelerateConfigurationRequest"},
168
- "output":{"shape":"GetBucketAccelerateConfigurationOutput"}
169
- },
170
- "GetBucketAcl":{
171
- "name":"GetBucketAcl",
172
- "http":{
173
- "method":"GET",
174
- "requestUri":"/{Bucket}?acl"
175
- },
176
- "input":{"shape":"GetBucketAclRequest"},
177
- "output":{"shape":"GetBucketAclOutput"},
178
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETacl.html"
179
- },
180
- "GetBucketCors":{
181
- "name":"GetBucketCors",
182
- "http":{
183
- "method":"GET",
184
- "requestUri":"/{Bucket}?cors"
185
- },
186
- "input":{"shape":"GetBucketCorsRequest"},
187
- "output":{"shape":"GetBucketCorsOutput"},
188
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETcors.html"
189
- },
190
- "GetBucketLifecycle":{
191
- "name":"GetBucketLifecycle",
192
- "http":{
193
- "method":"GET",
194
- "requestUri":"/{Bucket}?lifecycle"
195
- },
196
- "input":{"shape":"GetBucketLifecycleRequest"},
197
- "output":{"shape":"GetBucketLifecycleOutput"},
198
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlifecycle.html",
199
- "deprecated":true
200
- },
201
- "GetBucketLifecycleConfiguration":{
202
- "name":"GetBucketLifecycleConfiguration",
203
- "http":{
204
- "method":"GET",
205
- "requestUri":"/{Bucket}?lifecycle"
206
- },
207
- "input":{"shape":"GetBucketLifecycleConfigurationRequest"},
208
- "output":{"shape":"GetBucketLifecycleConfigurationOutput"}
209
- },
210
- "GetBucketLocation":{
211
- "name":"GetBucketLocation",
212
- "http":{
213
- "method":"GET",
214
- "requestUri":"/{Bucket}?location"
215
- },
216
- "input":{"shape":"GetBucketLocationRequest"},
217
- "output":{"shape":"GetBucketLocationOutput"},
218
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlocation.html"
219
- },
220
- "GetBucketLogging":{
221
- "name":"GetBucketLogging",
222
- "http":{
223
- "method":"GET",
224
- "requestUri":"/{Bucket}?logging"
225
- },
226
- "input":{"shape":"GetBucketLoggingRequest"},
227
- "output":{"shape":"GetBucketLoggingOutput"},
228
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETlogging.html"
229
- },
230
- "GetBucketNotification":{
231
- "name":"GetBucketNotification",
232
- "http":{
233
- "method":"GET",
234
- "requestUri":"/{Bucket}?notification"
235
- },
236
- "input":{"shape":"GetBucketNotificationConfigurationRequest"},
237
- "output":{"shape":"NotificationConfigurationDeprecated"},
238
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETnotification.html",
239
- "deprecated":true
240
- },
241
- "GetBucketNotificationConfiguration":{
242
- "name":"GetBucketNotificationConfiguration",
243
- "http":{
244
- "method":"GET",
245
- "requestUri":"/{Bucket}?notification"
246
- },
247
- "input":{"shape":"GetBucketNotificationConfigurationRequest"},
248
- "output":{"shape":"NotificationConfiguration"}
249
- },
250
- "GetBucketPolicy":{
251
- "name":"GetBucketPolicy",
252
- "http":{
253
- "method":"GET",
254
- "requestUri":"/{Bucket}?policy"
255
- },
256
- "input":{"shape":"GetBucketPolicyRequest"},
257
- "output":{"shape":"GetBucketPolicyOutput"},
258
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETpolicy.html"
259
- },
260
- "GetBucketReplication":{
261
- "name":"GetBucketReplication",
262
- "http":{
263
- "method":"GET",
264
- "requestUri":"/{Bucket}?replication"
265
- },
266
- "input":{"shape":"GetBucketReplicationRequest"},
267
- "output":{"shape":"GetBucketReplicationOutput"}
268
- },
269
- "GetBucketRequestPayment":{
270
- "name":"GetBucketRequestPayment",
271
- "http":{
272
- "method":"GET",
273
- "requestUri":"/{Bucket}?requestPayment"
274
- },
275
- "input":{"shape":"GetBucketRequestPaymentRequest"},
276
- "output":{"shape":"GetBucketRequestPaymentOutput"},
277
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTrequestPaymentGET.html"
278
- },
279
- "GetBucketTagging":{
280
- "name":"GetBucketTagging",
281
- "http":{
282
- "method":"GET",
283
- "requestUri":"/{Bucket}?tagging"
284
- },
285
- "input":{"shape":"GetBucketTaggingRequest"},
286
- "output":{"shape":"GetBucketTaggingOutput"},
287
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETtagging.html"
288
- },
289
- "GetBucketVersioning":{
290
- "name":"GetBucketVersioning",
291
- "http":{
292
- "method":"GET",
293
- "requestUri":"/{Bucket}?versioning"
294
- },
295
- "input":{"shape":"GetBucketVersioningRequest"},
296
- "output":{"shape":"GetBucketVersioningOutput"},
297
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETversioningStatus.html"
298
- },
299
- "GetBucketWebsite":{
300
- "name":"GetBucketWebsite",
301
- "http":{
302
- "method":"GET",
303
- "requestUri":"/{Bucket}?website"
304
- },
305
- "input":{"shape":"GetBucketWebsiteRequest"},
306
- "output":{"shape":"GetBucketWebsiteOutput"},
307
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETwebsite.html"
308
- },
309
- "GetObject":{
310
- "name":"GetObject",
311
- "http":{
312
- "method":"GET",
313
- "requestUri":"/{Bucket}/{Key+}"
314
- },
315
- "input":{"shape":"GetObjectRequest"},
316
- "output":{"shape":"GetObjectOutput"},
317
- "errors":[
318
- {"shape":"NoSuchKey"}
319
- ],
320
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGET.html"
321
- },
322
- "GetObjectAcl":{
323
- "name":"GetObjectAcl",
324
- "http":{
325
- "method":"GET",
326
- "requestUri":"/{Bucket}/{Key+}?acl"
327
- },
328
- "input":{"shape":"GetObjectAclRequest"},
329
- "output":{"shape":"GetObjectAclOutput"},
330
- "errors":[
331
- {"shape":"NoSuchKey"}
332
- ],
333
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGETacl.html"
334
- },
335
- "GetObjectTorrent":{
336
- "name":"GetObjectTorrent",
337
- "http":{
338
- "method":"GET",
339
- "requestUri":"/{Bucket}/{Key+}?torrent"
340
- },
341
- "input":{"shape":"GetObjectTorrentRequest"},
342
- "output":{"shape":"GetObjectTorrentOutput"},
343
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGETtorrent.html"
344
- },
345
- "HeadBucket":{
346
- "name":"HeadBucket",
347
- "http":{
348
- "method":"HEAD",
349
- "requestUri":"/{Bucket}"
350
- },
351
- "input":{"shape":"HeadBucketRequest"},
352
- "errors":[
353
- {"shape":"NoSuchBucket"}
354
- ],
355
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketHEAD.html"
356
- },
357
- "HeadObject":{
358
- "name":"HeadObject",
359
- "http":{
360
- "method":"HEAD",
361
- "requestUri":"/{Bucket}/{Key+}"
362
- },
363
- "input":{"shape":"HeadObjectRequest"},
364
- "output":{"shape":"HeadObjectOutput"},
365
- "errors":[
366
- {"shape":"NoSuchKey"}
367
- ],
368
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectHEAD.html"
369
- },
370
- "ListBuckets":{
371
- "name":"ListBuckets",
372
- "http":{
373
- "method":"GET",
374
- "requestUri":"/"
375
- },
376
- "output":{"shape":"ListBucketsOutput"},
377
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTServiceGET.html",
378
- "alias":"GetService"
379
- },
380
- "ListMultipartUploads":{
381
- "name":"ListMultipartUploads",
382
- "http":{
383
- "method":"GET",
384
- "requestUri":"/{Bucket}?uploads"
385
- },
386
- "input":{"shape":"ListMultipartUploadsRequest"},
387
- "output":{"shape":"ListMultipartUploadsOutput"},
388
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadListMPUpload.html"
389
- },
390
- "ListObjectVersions":{
391
- "name":"ListObjectVersions",
392
- "http":{
393
- "method":"GET",
394
- "requestUri":"/{Bucket}?versions"
395
- },
396
- "input":{"shape":"ListObjectVersionsRequest"},
397
- "output":{"shape":"ListObjectVersionsOutput"},
398
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGETVersion.html",
399
- "alias":"GetBucketObjectVersions"
400
- },
401
- "ListObjects":{
402
- "name":"ListObjects",
403
- "http":{
404
- "method":"GET",
405
- "requestUri":"/{Bucket}"
406
- },
407
- "input":{"shape":"ListObjectsRequest"},
408
- "output":{"shape":"ListObjectsOutput"},
409
- "errors":[
410
- {"shape":"NoSuchBucket"}
411
- ],
412
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketGET.html",
413
- "alias":"GetBucket"
414
- },
415
- "ListObjectsV2":{
416
- "name":"ListObjectsV2",
417
- "http":{
418
- "method":"GET",
419
- "requestUri":"/{Bucket}?list-type=2"
420
- },
421
- "input":{"shape":"ListObjectsV2Request"},
422
- "output":{"shape":"ListObjectsV2Output"},
423
- "errors":[
424
- {"shape":"NoSuchBucket"}
425
- ]
426
- },
427
- "ListParts":{
428
- "name":"ListParts",
429
- "http":{
430
- "method":"GET",
431
- "requestUri":"/{Bucket}/{Key+}"
432
- },
433
- "input":{"shape":"ListPartsRequest"},
434
- "output":{"shape":"ListPartsOutput"},
435
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadListParts.html"
436
- },
437
- "PutBucketAccelerateConfiguration":{
438
- "name":"PutBucketAccelerateConfiguration",
439
- "http":{
440
- "method":"PUT",
441
- "requestUri":"/{Bucket}?accelerate"
442
- },
443
- "input":{"shape":"PutBucketAccelerateConfigurationRequest"}
444
- },
445
- "PutBucketAcl":{
446
- "name":"PutBucketAcl",
447
- "http":{
448
- "method":"PUT",
449
- "requestUri":"/{Bucket}?acl"
450
- },
451
- "input":{"shape":"PutBucketAclRequest"},
452
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTacl.html"
453
- },
454
- "PutBucketCors":{
455
- "name":"PutBucketCors",
456
- "http":{
457
- "method":"PUT",
458
- "requestUri":"/{Bucket}?cors"
459
- },
460
- "input":{"shape":"PutBucketCorsRequest"},
461
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTcors.html"
462
- },
463
- "PutBucketLifecycle":{
464
- "name":"PutBucketLifecycle",
465
- "http":{
466
- "method":"PUT",
467
- "requestUri":"/{Bucket}?lifecycle"
468
- },
469
- "input":{"shape":"PutBucketLifecycleRequest"},
470
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTlifecycle.html",
471
- "deprecated":true
472
- },
473
- "PutBucketLifecycleConfiguration":{
474
- "name":"PutBucketLifecycleConfiguration",
475
- "http":{
476
- "method":"PUT",
477
- "requestUri":"/{Bucket}?lifecycle"
478
- },
479
- "input":{"shape":"PutBucketLifecycleConfigurationRequest"}
480
- },
481
- "PutBucketLogging":{
482
- "name":"PutBucketLogging",
483
- "http":{
484
- "method":"PUT",
485
- "requestUri":"/{Bucket}?logging"
486
- },
487
- "input":{"shape":"PutBucketLoggingRequest"},
488
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTlogging.html"
489
- },
490
- "PutBucketNotification":{
491
- "name":"PutBucketNotification",
492
- "http":{
493
- "method":"PUT",
494
- "requestUri":"/{Bucket}?notification"
495
- },
496
- "input":{"shape":"PutBucketNotificationRequest"},
497
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTnotification.html",
498
- "deprecated":true
499
- },
500
- "PutBucketNotificationConfiguration":{
501
- "name":"PutBucketNotificationConfiguration",
502
- "http":{
503
- "method":"PUT",
504
- "requestUri":"/{Bucket}?notification"
505
- },
506
- "input":{"shape":"PutBucketNotificationConfigurationRequest"}
507
- },
508
- "PutBucketPolicy":{
509
- "name":"PutBucketPolicy",
510
- "http":{
511
- "method":"PUT",
512
- "requestUri":"/{Bucket}?policy"
513
- },
514
- "input":{"shape":"PutBucketPolicyRequest"},
515
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTpolicy.html"
516
- },
517
- "PutBucketReplication":{
518
- "name":"PutBucketReplication",
519
- "http":{
520
- "method":"PUT",
521
- "requestUri":"/{Bucket}?replication"
522
- },
523
- "input":{"shape":"PutBucketReplicationRequest"}
524
- },
525
- "PutBucketRequestPayment":{
526
- "name":"PutBucketRequestPayment",
527
- "http":{
528
- "method":"PUT",
529
- "requestUri":"/{Bucket}?requestPayment"
530
- },
531
- "input":{"shape":"PutBucketRequestPaymentRequest"},
532
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTrequestPaymentPUT.html"
533
- },
534
- "PutBucketTagging":{
535
- "name":"PutBucketTagging",
536
- "http":{
537
- "method":"PUT",
538
- "requestUri":"/{Bucket}?tagging"
539
- },
540
- "input":{"shape":"PutBucketTaggingRequest"},
541
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTtagging.html"
542
- },
543
- "PutBucketVersioning":{
544
- "name":"PutBucketVersioning",
545
- "http":{
546
- "method":"PUT",
547
- "requestUri":"/{Bucket}?versioning"
548
- },
549
- "input":{"shape":"PutBucketVersioningRequest"},
550
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTVersioningStatus.html"
551
- },
552
- "PutBucketWebsite":{
553
- "name":"PutBucketWebsite",
554
- "http":{
555
- "method":"PUT",
556
- "requestUri":"/{Bucket}?website"
557
- },
558
- "input":{"shape":"PutBucketWebsiteRequest"},
559
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTBucketPUTwebsite.html"
560
- },
561
- "PutObject":{
562
- "name":"PutObject",
563
- "http":{
564
- "method":"PUT",
565
- "requestUri":"/{Bucket}/{Key+}"
566
- },
567
- "input":{"shape":"PutObjectRequest"},
568
- "output":{"shape":"PutObjectOutput"},
569
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectPUT.html"
570
- },
571
- "PutObjectAcl":{
572
- "name":"PutObjectAcl",
573
- "http":{
574
- "method":"PUT",
575
- "requestUri":"/{Bucket}/{Key+}?acl"
576
- },
577
- "input":{"shape":"PutObjectAclRequest"},
578
- "output":{"shape":"PutObjectAclOutput"},
579
- "errors":[
580
- {"shape":"NoSuchKey"}
581
- ],
582
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectPUTacl.html"
583
- },
584
- "RestoreObject":{
585
- "name":"RestoreObject",
586
- "http":{
587
- "method":"POST",
588
- "requestUri":"/{Bucket}/{Key+}?restore"
589
- },
590
- "input":{"shape":"RestoreObjectRequest"},
591
- "output":{"shape":"RestoreObjectOutput"},
592
- "errors":[
593
- {"shape":"ObjectAlreadyInActiveTierError"}
594
- ],
595
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectRestore.html",
596
- "alias":"PostObjectRestore"
597
- },
598
- "UploadPart":{
599
- "name":"UploadPart",
600
- "http":{
601
- "method":"PUT",
602
- "requestUri":"/{Bucket}/{Key+}"
603
- },
604
- "input":{"shape":"UploadPartRequest"},
605
- "output":{"shape":"UploadPartOutput"},
606
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadUploadPart.html"
607
- },
608
- "UploadPartCopy":{
609
- "name":"UploadPartCopy",
610
- "http":{
611
- "method":"PUT",
612
- "requestUri":"/{Bucket}/{Key+}"
613
- },
614
- "input":{"shape":"UploadPartCopyRequest"},
615
- "output":{"shape":"UploadPartCopyOutput"},
616
- "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/mpUploadUploadPartCopy.html"
617
- }
618
- },
619
- "shapes":{
620
- "AbortDate":{"type":"timestamp"},
621
- "AbortIncompleteMultipartUpload":{
622
- "type":"structure",
623
- "members":{
624
- "DaysAfterInitiation":{"shape":"DaysAfterInitiation"}
625
- }
626
- },
627
- "AbortMultipartUploadOutput":{
628
- "type":"structure",
629
- "members":{
630
- "RequestCharged":{
631
- "shape":"RequestCharged",
632
- "location":"header",
633
- "locationName":"x-amz-request-charged"
634
- }
635
- }
636
- },
637
- "AbortMultipartUploadRequest":{
638
- "type":"structure",
639
- "required":[
640
- "Bucket",
641
- "Key",
642
- "UploadId"
643
- ],
644
- "members":{
645
- "Bucket":{
646
- "shape":"BucketName",
647
- "location":"uri",
648
- "locationName":"Bucket"
649
- },
650
- "Key":{
651
- "shape":"ObjectKey",
652
- "location":"uri",
653
- "locationName":"Key"
654
- },
655
- "UploadId":{
656
- "shape":"MultipartUploadId",
657
- "location":"querystring",
658
- "locationName":"uploadId"
659
- },
660
- "RequestPayer":{
661
- "shape":"RequestPayer",
662
- "location":"header",
663
- "locationName":"x-amz-request-payer"
664
- }
665
- }
666
- },
667
- "AbortRuleId":{"type":"string"},
668
- "AccelerateConfiguration":{
669
- "type":"structure",
670
- "members":{
671
- "Status":{"shape":"BucketAccelerateStatus"}
672
- }
673
- },
674
- "AcceptRanges":{"type":"string"},
675
- "AccessControlPolicy":{
676
- "type":"structure",
677
- "members":{
678
- "Grants":{
679
- "shape":"Grants",
680
- "locationName":"AccessControlList"
681
- },
682
- "Owner":{"shape":"Owner"}
683
- }
684
- },
685
- "AllowedHeader":{"type":"string"},
686
- "AllowedHeaders":{
687
- "type":"list",
688
- "member":{"shape":"AllowedHeader"},
689
- "flattened":true
690
- },
691
- "AllowedMethod":{"type":"string"},
692
- "AllowedMethods":{
693
- "type":"list",
694
- "member":{"shape":"AllowedMethod"},
695
- "flattened":true
696
- },
697
- "AllowedOrigin":{"type":"string"},
698
- "AllowedOrigins":{
699
- "type":"list",
700
- "member":{"shape":"AllowedOrigin"},
701
- "flattened":true
702
- },
703
- "Body":{"type":"blob"},
704
- "Bucket":{
705
- "type":"structure",
706
- "members":{
707
- "Name":{"shape":"BucketName"},
708
- "CreationDate":{"shape":"CreationDate"}
709
- }
710
- },
711
- "BucketAccelerateStatus":{
712
- "type":"string",
713
- "enum":[
714
- "Enabled",
715
- "Suspended"
716
- ]
717
- },
718
- "BucketAlreadyExists":{
719
- "type":"structure",
720
- "members":{
721
- },
722
- "exception":true
723
- },
724
- "BucketAlreadyOwnedByYou":{
725
- "type":"structure",
726
- "members":{
727
- },
728
- "exception":true
729
- },
730
- "BucketCannedACL":{
731
- "type":"string",
732
- "enum":[
733
- "private",
734
- "public-read",
735
- "public-read-write",
736
- "authenticated-read"
737
- ]
738
- },
739
- "BucketLifecycleConfiguration":{
740
- "type":"structure",
741
- "required":["Rules"],
742
- "members":{
743
- "Rules":{
744
- "shape":"LifecycleRules",
745
- "locationName":"Rule"
746
- }
747
- }
748
- },
749
- "BucketLocationConstraint":{
750
- "type":"string",
751
- "enum":[
752
- "EU",
753
- "eu-west-1",
754
- "us-west-1",
755
- "us-west-2",
756
- "ap-south-1",
757
- "ap-southeast-1",
758
- "ap-southeast-2",
759
- "ap-northeast-1",
760
- "sa-east-1",
761
- "cn-north-1",
762
- "eu-central-1"
763
- ]
764
- },
765
- "BucketLoggingStatus":{
766
- "type":"structure",
767
- "members":{
768
- "LoggingEnabled":{"shape":"LoggingEnabled"}
769
- }
770
- },
771
- "BucketLogsPermission":{
772
- "type":"string",
773
- "enum":[
774
- "FULL_CONTROL",
775
- "READ",
776
- "WRITE"
777
- ]
778
- },
779
- "BucketName":{"type":"string"},
780
- "BucketVersioningStatus":{
781
- "type":"string",
782
- "enum":[
783
- "Enabled",
784
- "Suspended"
785
- ]
786
- },
787
- "Buckets":{
788
- "type":"list",
789
- "member":{
790
- "shape":"Bucket",
791
- "locationName":"Bucket"
792
- }
793
- },
794
- "CORSConfiguration":{
795
- "type":"structure",
796
- "required":["CORSRules"],
797
- "members":{
798
- "CORSRules":{
799
- "shape":"CORSRules",
800
- "locationName":"CORSRule"
801
- }
802
- }
803
- },
804
- "CORSRule":{
805
- "type":"structure",
806
- "required":[
807
- "AllowedMethods",
808
- "AllowedOrigins"
809
- ],
810
- "members":{
811
- "AllowedHeaders":{
812
- "shape":"AllowedHeaders",
813
- "locationName":"AllowedHeader"
814
- },
815
- "AllowedMethods":{
816
- "shape":"AllowedMethods",
817
- "locationName":"AllowedMethod"
818
- },
819
- "AllowedOrigins":{
820
- "shape":"AllowedOrigins",
821
- "locationName":"AllowedOrigin"
822
- },
823
- "ExposeHeaders":{
824
- "shape":"ExposeHeaders",
825
- "locationName":"ExposeHeader"
826
- },
827
- "MaxAgeSeconds":{"shape":"MaxAgeSeconds"}
828
- }
829
- },
830
- "CORSRules":{
831
- "type":"list",
832
- "member":{"shape":"CORSRule"},
833
- "flattened":true
834
- },
835
- "CacheControl":{"type":"string"},
836
- "CloudFunction":{"type":"string"},
837
- "CloudFunctionConfiguration":{
838
- "type":"structure",
839
- "members":{
840
- "Id":{"shape":"NotificationId"},
841
- "Event":{
842
- "shape":"Event",
843
- "deprecated":true
844
- },
845
- "Events":{
846
- "shape":"EventList",
847
- "locationName":"Event"
848
- },
849
- "CloudFunction":{"shape":"CloudFunction"},
850
- "InvocationRole":{"shape":"CloudFunctionInvocationRole"}
851
- }
852
- },
853
- "CloudFunctionInvocationRole":{"type":"string"},
854
- "Code":{"type":"string"},
855
- "CommonPrefix":{
856
- "type":"structure",
857
- "members":{
858
- "Prefix":{"shape":"Prefix"}
859
- }
860
- },
861
- "CommonPrefixList":{
862
- "type":"list",
863
- "member":{"shape":"CommonPrefix"},
864
- "flattened":true
865
- },
866
- "CompleteMultipartUploadOutput":{
867
- "type":"structure",
868
- "members":{
869
- "Location":{"shape":"Location"},
870
- "Bucket":{"shape":"BucketName"},
871
- "Key":{"shape":"ObjectKey"},
872
- "Expiration":{
873
- "shape":"Expiration",
874
- "location":"header",
875
- "locationName":"x-amz-expiration"
876
- },
877
- "ETag":{"shape":"ETag"},
878
- "ServerSideEncryption":{
879
- "shape":"ServerSideEncryption",
880
- "location":"header",
881
- "locationName":"x-amz-server-side-encryption"
882
- },
883
- "VersionId":{
884
- "shape":"ObjectVersionId",
885
- "location":"header",
886
- "locationName":"x-amz-version-id"
887
- },
888
- "SSEKMSKeyId":{
889
- "shape":"SSEKMSKeyId",
890
- "location":"header",
891
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
892
- },
893
- "RequestCharged":{
894
- "shape":"RequestCharged",
895
- "location":"header",
896
- "locationName":"x-amz-request-charged"
897
- }
898
- }
899
- },
900
- "CompleteMultipartUploadRequest":{
901
- "type":"structure",
902
- "required":[
903
- "Bucket",
904
- "Key",
905
- "UploadId"
906
- ],
907
- "members":{
908
- "Bucket":{
909
- "shape":"BucketName",
910
- "location":"uri",
911
- "locationName":"Bucket"
912
- },
913
- "Key":{
914
- "shape":"ObjectKey",
915
- "location":"uri",
916
- "locationName":"Key"
917
- },
918
- "MultipartUpload":{
919
- "shape":"CompletedMultipartUpload",
920
- "locationName":"CompleteMultipartUpload",
921
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
922
- },
923
- "UploadId":{
924
- "shape":"MultipartUploadId",
925
- "location":"querystring",
926
- "locationName":"uploadId"
927
- },
928
- "RequestPayer":{
929
- "shape":"RequestPayer",
930
- "location":"header",
931
- "locationName":"x-amz-request-payer"
932
- }
933
- },
934
- "payload":"MultipartUpload"
935
- },
936
- "CompletedMultipartUpload":{
937
- "type":"structure",
938
- "members":{
939
- "Parts":{
940
- "shape":"CompletedPartList",
941
- "locationName":"Part"
942
- }
943
- }
944
- },
945
- "CompletedPart":{
946
- "type":"structure",
947
- "members":{
948
- "ETag":{"shape":"ETag"},
949
- "PartNumber":{"shape":"PartNumber"}
950
- }
951
- },
952
- "CompletedPartList":{
953
- "type":"list",
954
- "member":{"shape":"CompletedPart"},
955
- "flattened":true
956
- },
957
- "Condition":{
958
- "type":"structure",
959
- "members":{
960
- "HttpErrorCodeReturnedEquals":{"shape":"HttpErrorCodeReturnedEquals"},
961
- "KeyPrefixEquals":{"shape":"KeyPrefixEquals"}
962
- }
963
- },
964
- "ContentDisposition":{"type":"string"},
965
- "ContentEncoding":{"type":"string"},
966
- "ContentLanguage":{"type":"string"},
967
- "ContentLength":{"type":"long"},
968
- "ContentMD5":{"type":"string"},
969
- "ContentRange":{"type":"string"},
970
- "ContentType":{"type":"string"},
971
- "CopyObjectOutput":{
972
- "type":"structure",
973
- "members":{
974
- "CopyObjectResult":{"shape":"CopyObjectResult"},
975
- "Expiration":{
976
- "shape":"Expiration",
977
- "location":"header",
978
- "locationName":"x-amz-expiration"
979
- },
980
- "CopySourceVersionId":{
981
- "shape":"CopySourceVersionId",
982
- "location":"header",
983
- "locationName":"x-amz-copy-source-version-id"
984
- },
985
- "VersionId":{
986
- "shape":"ObjectVersionId",
987
- "location":"header",
988
- "locationName":"x-amz-version-id"
989
- },
990
- "ServerSideEncryption":{
991
- "shape":"ServerSideEncryption",
992
- "location":"header",
993
- "locationName":"x-amz-server-side-encryption"
994
- },
995
- "SSECustomerAlgorithm":{
996
- "shape":"SSECustomerAlgorithm",
997
- "location":"header",
998
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
999
- },
1000
- "SSECustomerKeyMD5":{
1001
- "shape":"SSECustomerKeyMD5",
1002
- "location":"header",
1003
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
1004
- },
1005
- "SSEKMSKeyId":{
1006
- "shape":"SSEKMSKeyId",
1007
- "location":"header",
1008
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
1009
- },
1010
- "RequestCharged":{
1011
- "shape":"RequestCharged",
1012
- "location":"header",
1013
- "locationName":"x-amz-request-charged"
1014
- }
1015
- },
1016
- "payload":"CopyObjectResult"
1017
- },
1018
- "CopyObjectRequest":{
1019
- "type":"structure",
1020
- "required":[
1021
- "Bucket",
1022
- "CopySource",
1023
- "Key"
1024
- ],
1025
- "members":{
1026
- "ACL":{
1027
- "shape":"ObjectCannedACL",
1028
- "location":"header",
1029
- "locationName":"x-amz-acl"
1030
- },
1031
- "Bucket":{
1032
- "shape":"BucketName",
1033
- "location":"uri",
1034
- "locationName":"Bucket"
1035
- },
1036
- "CacheControl":{
1037
- "shape":"CacheControl",
1038
- "location":"header",
1039
- "locationName":"Cache-Control"
1040
- },
1041
- "ContentDisposition":{
1042
- "shape":"ContentDisposition",
1043
- "location":"header",
1044
- "locationName":"Content-Disposition"
1045
- },
1046
- "ContentEncoding":{
1047
- "shape":"ContentEncoding",
1048
- "location":"header",
1049
- "locationName":"Content-Encoding"
1050
- },
1051
- "ContentLanguage":{
1052
- "shape":"ContentLanguage",
1053
- "location":"header",
1054
- "locationName":"Content-Language"
1055
- },
1056
- "ContentType":{
1057
- "shape":"ContentType",
1058
- "location":"header",
1059
- "locationName":"Content-Type"
1060
- },
1061
- "CopySource":{
1062
- "shape":"CopySource",
1063
- "location":"header",
1064
- "locationName":"x-amz-copy-source"
1065
- },
1066
- "CopySourceIfMatch":{
1067
- "shape":"CopySourceIfMatch",
1068
- "location":"header",
1069
- "locationName":"x-amz-copy-source-if-match"
1070
- },
1071
- "CopySourceIfModifiedSince":{
1072
- "shape":"CopySourceIfModifiedSince",
1073
- "location":"header",
1074
- "locationName":"x-amz-copy-source-if-modified-since"
1075
- },
1076
- "CopySourceIfNoneMatch":{
1077
- "shape":"CopySourceIfNoneMatch",
1078
- "location":"header",
1079
- "locationName":"x-amz-copy-source-if-none-match"
1080
- },
1081
- "CopySourceIfUnmodifiedSince":{
1082
- "shape":"CopySourceIfUnmodifiedSince",
1083
- "location":"header",
1084
- "locationName":"x-amz-copy-source-if-unmodified-since"
1085
- },
1086
- "Expires":{
1087
- "shape":"Expires",
1088
- "location":"header",
1089
- "locationName":"Expires"
1090
- },
1091
- "GrantFullControl":{
1092
- "shape":"GrantFullControl",
1093
- "location":"header",
1094
- "locationName":"x-amz-grant-full-control"
1095
- },
1096
- "GrantRead":{
1097
- "shape":"GrantRead",
1098
- "location":"header",
1099
- "locationName":"x-amz-grant-read"
1100
- },
1101
- "GrantReadACP":{
1102
- "shape":"GrantReadACP",
1103
- "location":"header",
1104
- "locationName":"x-amz-grant-read-acp"
1105
- },
1106
- "GrantWriteACP":{
1107
- "shape":"GrantWriteACP",
1108
- "location":"header",
1109
- "locationName":"x-amz-grant-write-acp"
1110
- },
1111
- "Key":{
1112
- "shape":"ObjectKey",
1113
- "location":"uri",
1114
- "locationName":"Key"
1115
- },
1116
- "Metadata":{
1117
- "shape":"Metadata",
1118
- "location":"headers",
1119
- "locationName":"x-amz-meta-"
1120
- },
1121
- "MetadataDirective":{
1122
- "shape":"MetadataDirective",
1123
- "location":"header",
1124
- "locationName":"x-amz-metadata-directive"
1125
- },
1126
- "ServerSideEncryption":{
1127
- "shape":"ServerSideEncryption",
1128
- "location":"header",
1129
- "locationName":"x-amz-server-side-encryption"
1130
- },
1131
- "StorageClass":{
1132
- "shape":"StorageClass",
1133
- "location":"header",
1134
- "locationName":"x-amz-storage-class"
1135
- },
1136
- "WebsiteRedirectLocation":{
1137
- "shape":"WebsiteRedirectLocation",
1138
- "location":"header",
1139
- "locationName":"x-amz-website-redirect-location"
1140
- },
1141
- "SSECustomerAlgorithm":{
1142
- "shape":"SSECustomerAlgorithm",
1143
- "location":"header",
1144
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
1145
- },
1146
- "SSECustomerKey":{
1147
- "shape":"SSECustomerKey",
1148
- "location":"header",
1149
- "locationName":"x-amz-server-side-encryption-customer-key"
1150
- },
1151
- "SSECustomerKeyMD5":{
1152
- "shape":"SSECustomerKeyMD5",
1153
- "location":"header",
1154
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
1155
- },
1156
- "SSEKMSKeyId":{
1157
- "shape":"SSEKMSKeyId",
1158
- "location":"header",
1159
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
1160
- },
1161
- "CopySourceSSECustomerAlgorithm":{
1162
- "shape":"CopySourceSSECustomerAlgorithm",
1163
- "location":"header",
1164
- "locationName":"x-amz-copy-source-server-side-encryption-customer-algorithm"
1165
- },
1166
- "CopySourceSSECustomerKey":{
1167
- "shape":"CopySourceSSECustomerKey",
1168
- "location":"header",
1169
- "locationName":"x-amz-copy-source-server-side-encryption-customer-key"
1170
- },
1171
- "CopySourceSSECustomerKeyMD5":{
1172
- "shape":"CopySourceSSECustomerKeyMD5",
1173
- "location":"header",
1174
- "locationName":"x-amz-copy-source-server-side-encryption-customer-key-MD5"
1175
- },
1176
- "RequestPayer":{
1177
- "shape":"RequestPayer",
1178
- "location":"header",
1179
- "locationName":"x-amz-request-payer"
1180
- }
1181
- }
1182
- },
1183
- "CopyObjectResult":{
1184
- "type":"structure",
1185
- "members":{
1186
- "ETag":{"shape":"ETag"},
1187
- "LastModified":{"shape":"LastModified"}
1188
- }
1189
- },
1190
- "CopyPartResult":{
1191
- "type":"structure",
1192
- "members":{
1193
- "ETag":{"shape":"ETag"},
1194
- "LastModified":{"shape":"LastModified"}
1195
- }
1196
- },
1197
- "CopySource":{
1198
- "type":"string",
1199
- "pattern":"\\/.+\\/.+"
1200
- },
1201
- "CopySourceIfMatch":{"type":"string"},
1202
- "CopySourceIfModifiedSince":{"type":"timestamp"},
1203
- "CopySourceIfNoneMatch":{"type":"string"},
1204
- "CopySourceIfUnmodifiedSince":{"type":"timestamp"},
1205
- "CopySourceRange":{"type":"string"},
1206
- "CopySourceSSECustomerAlgorithm":{"type":"string"},
1207
- "CopySourceSSECustomerKey":{
1208
- "type":"string",
1209
- "sensitive":true
1210
- },
1211
- "CopySourceSSECustomerKeyMD5":{"type":"string"},
1212
- "CopySourceVersionId":{"type":"string"},
1213
- "CreateBucketConfiguration":{
1214
- "type":"structure",
1215
- "members":{
1216
- "LocationConstraint":{"shape":"BucketLocationConstraint"}
1217
- }
1218
- },
1219
- "CreateBucketOutput":{
1220
- "type":"structure",
1221
- "members":{
1222
- "Location":{
1223
- "shape":"Location",
1224
- "location":"header",
1225
- "locationName":"Location"
1226
- }
1227
- }
1228
- },
1229
- "CreateBucketRequest":{
1230
- "type":"structure",
1231
- "required":["Bucket"],
1232
- "members":{
1233
- "ACL":{
1234
- "shape":"BucketCannedACL",
1235
- "location":"header",
1236
- "locationName":"x-amz-acl"
1237
- },
1238
- "Bucket":{
1239
- "shape":"BucketName",
1240
- "location":"uri",
1241
- "locationName":"Bucket"
1242
- },
1243
- "CreateBucketConfiguration":{
1244
- "shape":"CreateBucketConfiguration",
1245
- "locationName":"CreateBucketConfiguration",
1246
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
1247
- },
1248
- "GrantFullControl":{
1249
- "shape":"GrantFullControl",
1250
- "location":"header",
1251
- "locationName":"x-amz-grant-full-control"
1252
- },
1253
- "GrantRead":{
1254
- "shape":"GrantRead",
1255
- "location":"header",
1256
- "locationName":"x-amz-grant-read"
1257
- },
1258
- "GrantReadACP":{
1259
- "shape":"GrantReadACP",
1260
- "location":"header",
1261
- "locationName":"x-amz-grant-read-acp"
1262
- },
1263
- "GrantWrite":{
1264
- "shape":"GrantWrite",
1265
- "location":"header",
1266
- "locationName":"x-amz-grant-write"
1267
- },
1268
- "GrantWriteACP":{
1269
- "shape":"GrantWriteACP",
1270
- "location":"header",
1271
- "locationName":"x-amz-grant-write-acp"
1272
- }
1273
- },
1274
- "payload":"CreateBucketConfiguration"
1275
- },
1276
- "CreateMultipartUploadOutput":{
1277
- "type":"structure",
1278
- "members":{
1279
- "AbortDate":{
1280
- "shape":"AbortDate",
1281
- "location":"header",
1282
- "locationName":"x-amz-abort-date"
1283
- },
1284
- "AbortRuleId":{
1285
- "shape":"AbortRuleId",
1286
- "location":"header",
1287
- "locationName":"x-amz-abort-rule-id"
1288
- },
1289
- "Bucket":{
1290
- "shape":"BucketName",
1291
- "locationName":"Bucket"
1292
- },
1293
- "Key":{"shape":"ObjectKey"},
1294
- "UploadId":{"shape":"MultipartUploadId"},
1295
- "ServerSideEncryption":{
1296
- "shape":"ServerSideEncryption",
1297
- "location":"header",
1298
- "locationName":"x-amz-server-side-encryption"
1299
- },
1300
- "SSECustomerAlgorithm":{
1301
- "shape":"SSECustomerAlgorithm",
1302
- "location":"header",
1303
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
1304
- },
1305
- "SSECustomerKeyMD5":{
1306
- "shape":"SSECustomerKeyMD5",
1307
- "location":"header",
1308
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
1309
- },
1310
- "SSEKMSKeyId":{
1311
- "shape":"SSEKMSKeyId",
1312
- "location":"header",
1313
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
1314
- },
1315
- "RequestCharged":{
1316
- "shape":"RequestCharged",
1317
- "location":"header",
1318
- "locationName":"x-amz-request-charged"
1319
- }
1320
- }
1321
- },
1322
- "CreateMultipartUploadRequest":{
1323
- "type":"structure",
1324
- "required":[
1325
- "Bucket",
1326
- "Key"
1327
- ],
1328
- "members":{
1329
- "ACL":{
1330
- "shape":"ObjectCannedACL",
1331
- "location":"header",
1332
- "locationName":"x-amz-acl"
1333
- },
1334
- "Bucket":{
1335
- "shape":"BucketName",
1336
- "location":"uri",
1337
- "locationName":"Bucket"
1338
- },
1339
- "CacheControl":{
1340
- "shape":"CacheControl",
1341
- "location":"header",
1342
- "locationName":"Cache-Control"
1343
- },
1344
- "ContentDisposition":{
1345
- "shape":"ContentDisposition",
1346
- "location":"header",
1347
- "locationName":"Content-Disposition"
1348
- },
1349
- "ContentEncoding":{
1350
- "shape":"ContentEncoding",
1351
- "location":"header",
1352
- "locationName":"Content-Encoding"
1353
- },
1354
- "ContentLanguage":{
1355
- "shape":"ContentLanguage",
1356
- "location":"header",
1357
- "locationName":"Content-Language"
1358
- },
1359
- "ContentType":{
1360
- "shape":"ContentType",
1361
- "location":"header",
1362
- "locationName":"Content-Type"
1363
- },
1364
- "Expires":{
1365
- "shape":"Expires",
1366
- "location":"header",
1367
- "locationName":"Expires"
1368
- },
1369
- "GrantFullControl":{
1370
- "shape":"GrantFullControl",
1371
- "location":"header",
1372
- "locationName":"x-amz-grant-full-control"
1373
- },
1374
- "GrantRead":{
1375
- "shape":"GrantRead",
1376
- "location":"header",
1377
- "locationName":"x-amz-grant-read"
1378
- },
1379
- "GrantReadACP":{
1380
- "shape":"GrantReadACP",
1381
- "location":"header",
1382
- "locationName":"x-amz-grant-read-acp"
1383
- },
1384
- "GrantWriteACP":{
1385
- "shape":"GrantWriteACP",
1386
- "location":"header",
1387
- "locationName":"x-amz-grant-write-acp"
1388
- },
1389
- "Key":{
1390
- "shape":"ObjectKey",
1391
- "location":"uri",
1392
- "locationName":"Key"
1393
- },
1394
- "Metadata":{
1395
- "shape":"Metadata",
1396
- "location":"headers",
1397
- "locationName":"x-amz-meta-"
1398
- },
1399
- "ServerSideEncryption":{
1400
- "shape":"ServerSideEncryption",
1401
- "location":"header",
1402
- "locationName":"x-amz-server-side-encryption"
1403
- },
1404
- "StorageClass":{
1405
- "shape":"StorageClass",
1406
- "location":"header",
1407
- "locationName":"x-amz-storage-class"
1408
- },
1409
- "WebsiteRedirectLocation":{
1410
- "shape":"WebsiteRedirectLocation",
1411
- "location":"header",
1412
- "locationName":"x-amz-website-redirect-location"
1413
- },
1414
- "SSECustomerAlgorithm":{
1415
- "shape":"SSECustomerAlgorithm",
1416
- "location":"header",
1417
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
1418
- },
1419
- "SSECustomerKey":{
1420
- "shape":"SSECustomerKey",
1421
- "location":"header",
1422
- "locationName":"x-amz-server-side-encryption-customer-key"
1423
- },
1424
- "SSECustomerKeyMD5":{
1425
- "shape":"SSECustomerKeyMD5",
1426
- "location":"header",
1427
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
1428
- },
1429
- "SSEKMSKeyId":{
1430
- "shape":"SSEKMSKeyId",
1431
- "location":"header",
1432
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
1433
- },
1434
- "RequestPayer":{
1435
- "shape":"RequestPayer",
1436
- "location":"header",
1437
- "locationName":"x-amz-request-payer"
1438
- }
1439
- }
1440
- },
1441
- "CreationDate":{"type":"timestamp"},
1442
- "Date":{
1443
- "type":"timestamp",
1444
- "timestampFormat":"iso8601"
1445
- },
1446
- "Days":{"type":"integer"},
1447
- "DaysAfterInitiation":{"type":"integer"},
1448
- "Delete":{
1449
- "type":"structure",
1450
- "required":["Objects"],
1451
- "members":{
1452
- "Objects":{
1453
- "shape":"ObjectIdentifierList",
1454
- "locationName":"Object"
1455
- },
1456
- "Quiet":{"shape":"Quiet"}
1457
- }
1458
- },
1459
- "DeleteBucketCorsRequest":{
1460
- "type":"structure",
1461
- "required":["Bucket"],
1462
- "members":{
1463
- "Bucket":{
1464
- "shape":"BucketName",
1465
- "location":"uri",
1466
- "locationName":"Bucket"
1467
- }
1468
- }
1469
- },
1470
- "DeleteBucketLifecycleRequest":{
1471
- "type":"structure",
1472
- "required":["Bucket"],
1473
- "members":{
1474
- "Bucket":{
1475
- "shape":"BucketName",
1476
- "location":"uri",
1477
- "locationName":"Bucket"
1478
- }
1479
- }
1480
- },
1481
- "DeleteBucketPolicyRequest":{
1482
- "type":"structure",
1483
- "required":["Bucket"],
1484
- "members":{
1485
- "Bucket":{
1486
- "shape":"BucketName",
1487
- "location":"uri",
1488
- "locationName":"Bucket"
1489
- }
1490
- }
1491
- },
1492
- "DeleteBucketReplicationRequest":{
1493
- "type":"structure",
1494
- "required":["Bucket"],
1495
- "members":{
1496
- "Bucket":{
1497
- "shape":"BucketName",
1498
- "location":"uri",
1499
- "locationName":"Bucket"
1500
- }
1501
- }
1502
- },
1503
- "DeleteBucketRequest":{
1504
- "type":"structure",
1505
- "required":["Bucket"],
1506
- "members":{
1507
- "Bucket":{
1508
- "shape":"BucketName",
1509
- "location":"uri",
1510
- "locationName":"Bucket"
1511
- }
1512
- }
1513
- },
1514
- "DeleteBucketTaggingRequest":{
1515
- "type":"structure",
1516
- "required":["Bucket"],
1517
- "members":{
1518
- "Bucket":{
1519
- "shape":"BucketName",
1520
- "location":"uri",
1521
- "locationName":"Bucket"
1522
- }
1523
- }
1524
- },
1525
- "DeleteBucketWebsiteRequest":{
1526
- "type":"structure",
1527
- "required":["Bucket"],
1528
- "members":{
1529
- "Bucket":{
1530
- "shape":"BucketName",
1531
- "location":"uri",
1532
- "locationName":"Bucket"
1533
- }
1534
- }
1535
- },
1536
- "DeleteMarker":{"type":"boolean"},
1537
- "DeleteMarkerEntry":{
1538
- "type":"structure",
1539
- "members":{
1540
- "Owner":{"shape":"Owner"},
1541
- "Key":{"shape":"ObjectKey"},
1542
- "VersionId":{"shape":"ObjectVersionId"},
1543
- "IsLatest":{"shape":"IsLatest"},
1544
- "LastModified":{"shape":"LastModified"}
1545
- }
1546
- },
1547
- "DeleteMarkerVersionId":{"type":"string"},
1548
- "DeleteMarkers":{
1549
- "type":"list",
1550
- "member":{"shape":"DeleteMarkerEntry"},
1551
- "flattened":true
1552
- },
1553
- "DeleteObjectOutput":{
1554
- "type":"structure",
1555
- "members":{
1556
- "DeleteMarker":{
1557
- "shape":"DeleteMarker",
1558
- "location":"header",
1559
- "locationName":"x-amz-delete-marker"
1560
- },
1561
- "VersionId":{
1562
- "shape":"ObjectVersionId",
1563
- "location":"header",
1564
- "locationName":"x-amz-version-id"
1565
- },
1566
- "RequestCharged":{
1567
- "shape":"RequestCharged",
1568
- "location":"header",
1569
- "locationName":"x-amz-request-charged"
1570
- }
1571
- }
1572
- },
1573
- "DeleteObjectRequest":{
1574
- "type":"structure",
1575
- "required":[
1576
- "Bucket",
1577
- "Key"
1578
- ],
1579
- "members":{
1580
- "Bucket":{
1581
- "shape":"BucketName",
1582
- "location":"uri",
1583
- "locationName":"Bucket"
1584
- },
1585
- "Key":{
1586
- "shape":"ObjectKey",
1587
- "location":"uri",
1588
- "locationName":"Key"
1589
- },
1590
- "MFA":{
1591
- "shape":"MFA",
1592
- "location":"header",
1593
- "locationName":"x-amz-mfa"
1594
- },
1595
- "VersionId":{
1596
- "shape":"ObjectVersionId",
1597
- "location":"querystring",
1598
- "locationName":"versionId"
1599
- },
1600
- "RequestPayer":{
1601
- "shape":"RequestPayer",
1602
- "location":"header",
1603
- "locationName":"x-amz-request-payer"
1604
- }
1605
- }
1606
- },
1607
- "DeleteObjectsOutput":{
1608
- "type":"structure",
1609
- "members":{
1610
- "Deleted":{"shape":"DeletedObjects"},
1611
- "RequestCharged":{
1612
- "shape":"RequestCharged",
1613
- "location":"header",
1614
- "locationName":"x-amz-request-charged"
1615
- },
1616
- "Errors":{
1617
- "shape":"Errors",
1618
- "locationName":"Error"
1619
- }
1620
- }
1621
- },
1622
- "DeleteObjectsRequest":{
1623
- "type":"structure",
1624
- "required":[
1625
- "Bucket",
1626
- "Delete"
1627
- ],
1628
- "members":{
1629
- "Bucket":{
1630
- "shape":"BucketName",
1631
- "location":"uri",
1632
- "locationName":"Bucket"
1633
- },
1634
- "Delete":{
1635
- "shape":"Delete",
1636
- "locationName":"Delete",
1637
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
1638
- },
1639
- "MFA":{
1640
- "shape":"MFA",
1641
- "location":"header",
1642
- "locationName":"x-amz-mfa"
1643
- },
1644
- "RequestPayer":{
1645
- "shape":"RequestPayer",
1646
- "location":"header",
1647
- "locationName":"x-amz-request-payer"
1648
- }
1649
- },
1650
- "payload":"Delete"
1651
- },
1652
- "DeletedObject":{
1653
- "type":"structure",
1654
- "members":{
1655
- "Key":{"shape":"ObjectKey"},
1656
- "VersionId":{"shape":"ObjectVersionId"},
1657
- "DeleteMarker":{"shape":"DeleteMarker"},
1658
- "DeleteMarkerVersionId":{"shape":"DeleteMarkerVersionId"}
1659
- }
1660
- },
1661
- "DeletedObjects":{
1662
- "type":"list",
1663
- "member":{"shape":"DeletedObject"},
1664
- "flattened":true
1665
- },
1666
- "Delimiter":{"type":"string"},
1667
- "Destination":{
1668
- "type":"structure",
1669
- "required":["Bucket"],
1670
- "members":{
1671
- "Bucket":{"shape":"BucketName"},
1672
- "StorageClass":{"shape":"StorageClass"}
1673
- }
1674
- },
1675
- "DisplayName":{"type":"string"},
1676
- "ETag":{"type":"string"},
1677
- "EmailAddress":{"type":"string"},
1678
- "EncodingType":{
1679
- "type":"string",
1680
- "enum":["url"]
1681
- },
1682
- "Error":{
1683
- "type":"structure",
1684
- "members":{
1685
- "Key":{"shape":"ObjectKey"},
1686
- "VersionId":{"shape":"ObjectVersionId"},
1687
- "Code":{"shape":"Code"},
1688
- "Message":{"shape":"Message"}
1689
- }
1690
- },
1691
- "ErrorDocument":{
1692
- "type":"structure",
1693
- "required":["Key"],
1694
- "members":{
1695
- "Key":{"shape":"ObjectKey"}
1696
- }
1697
- },
1698
- "Errors":{
1699
- "type":"list",
1700
- "member":{"shape":"Error"},
1701
- "flattened":true
1702
- },
1703
- "Event":{
1704
- "type":"string",
1705
- "enum":[
1706
- "s3:ReducedRedundancyLostObject",
1707
- "s3:ObjectCreated:*",
1708
- "s3:ObjectCreated:Put",
1709
- "s3:ObjectCreated:Post",
1710
- "s3:ObjectCreated:Copy",
1711
- "s3:ObjectCreated:CompleteMultipartUpload",
1712
- "s3:ObjectRemoved:*",
1713
- "s3:ObjectRemoved:Delete",
1714
- "s3:ObjectRemoved:DeleteMarkerCreated"
1715
- ]
1716
- },
1717
- "EventList":{
1718
- "type":"list",
1719
- "member":{"shape":"Event"},
1720
- "flattened":true
1721
- },
1722
- "Expiration":{"type":"string"},
1723
- "ExpirationStatus":{
1724
- "type":"string",
1725
- "enum":[
1726
- "Enabled",
1727
- "Disabled"
1728
- ]
1729
- },
1730
- "ExpiredObjectDeleteMarker":{"type":"boolean"},
1731
- "Expires":{"type":"timestamp"},
1732
- "ExposeHeader":{"type":"string"},
1733
- "ExposeHeaders":{
1734
- "type":"list",
1735
- "member":{"shape":"ExposeHeader"},
1736
- "flattened":true
1737
- },
1738
- "FetchOwner":{"type":"boolean"},
1739
- "FilterRule":{
1740
- "type":"structure",
1741
- "members":{
1742
- "Name":{"shape":"FilterRuleName"},
1743
- "Value":{"shape":"FilterRuleValue"}
1744
- }
1745
- },
1746
- "FilterRuleList":{
1747
- "type":"list",
1748
- "member":{"shape":"FilterRule"},
1749
- "flattened":true
1750
- },
1751
- "FilterRuleName":{
1752
- "type":"string",
1753
- "enum":[
1754
- "prefix",
1755
- "suffix"
1756
- ]
1757
- },
1758
- "FilterRuleValue":{"type":"string"},
1759
- "GetBucketAccelerateConfigurationOutput":{
1760
- "type":"structure",
1761
- "members":{
1762
- "Status":{"shape":"BucketAccelerateStatus"}
1763
- }
1764
- },
1765
- "GetBucketAccelerateConfigurationRequest":{
1766
- "type":"structure",
1767
- "required":["Bucket"],
1768
- "members":{
1769
- "Bucket":{
1770
- "shape":"BucketName",
1771
- "location":"uri",
1772
- "locationName":"Bucket"
1773
- }
1774
- }
1775
- },
1776
- "GetBucketAclOutput":{
1777
- "type":"structure",
1778
- "members":{
1779
- "Owner":{"shape":"Owner"},
1780
- "Grants":{
1781
- "shape":"Grants",
1782
- "locationName":"AccessControlList"
1783
- }
1784
- }
1785
- },
1786
- "GetBucketAclRequest":{
1787
- "type":"structure",
1788
- "required":["Bucket"],
1789
- "members":{
1790
- "Bucket":{
1791
- "shape":"BucketName",
1792
- "location":"uri",
1793
- "locationName":"Bucket"
1794
- }
1795
- }
1796
- },
1797
- "GetBucketCorsOutput":{
1798
- "type":"structure",
1799
- "members":{
1800
- "CORSRules":{
1801
- "shape":"CORSRules",
1802
- "locationName":"CORSRule"
1803
- }
1804
- }
1805
- },
1806
- "GetBucketCorsRequest":{
1807
- "type":"structure",
1808
- "required":["Bucket"],
1809
- "members":{
1810
- "Bucket":{
1811
- "shape":"BucketName",
1812
- "location":"uri",
1813
- "locationName":"Bucket"
1814
- }
1815
- }
1816
- },
1817
- "GetBucketLifecycleConfigurationOutput":{
1818
- "type":"structure",
1819
- "members":{
1820
- "Rules":{
1821
- "shape":"LifecycleRules",
1822
- "locationName":"Rule"
1823
- }
1824
- }
1825
- },
1826
- "GetBucketLifecycleConfigurationRequest":{
1827
- "type":"structure",
1828
- "required":["Bucket"],
1829
- "members":{
1830
- "Bucket":{
1831
- "shape":"BucketName",
1832
- "location":"uri",
1833
- "locationName":"Bucket"
1834
- }
1835
- }
1836
- },
1837
- "GetBucketLifecycleOutput":{
1838
- "type":"structure",
1839
- "members":{
1840
- "Rules":{
1841
- "shape":"Rules",
1842
- "locationName":"Rule"
1843
- }
1844
- }
1845
- },
1846
- "GetBucketLifecycleRequest":{
1847
- "type":"structure",
1848
- "required":["Bucket"],
1849
- "members":{
1850
- "Bucket":{
1851
- "shape":"BucketName",
1852
- "location":"uri",
1853
- "locationName":"Bucket"
1854
- }
1855
- }
1856
- },
1857
- "GetBucketLocationOutput":{
1858
- "type":"structure",
1859
- "members":{
1860
- "LocationConstraint":{"shape":"BucketLocationConstraint"}
1861
- }
1862
- },
1863
- "GetBucketLocationRequest":{
1864
- "type":"structure",
1865
- "required":["Bucket"],
1866
- "members":{
1867
- "Bucket":{
1868
- "shape":"BucketName",
1869
- "location":"uri",
1870
- "locationName":"Bucket"
1871
- }
1872
- }
1873
- },
1874
- "GetBucketLoggingOutput":{
1875
- "type":"structure",
1876
- "members":{
1877
- "LoggingEnabled":{"shape":"LoggingEnabled"}
1878
- }
1879
- },
1880
- "GetBucketLoggingRequest":{
1881
- "type":"structure",
1882
- "required":["Bucket"],
1883
- "members":{
1884
- "Bucket":{
1885
- "shape":"BucketName",
1886
- "location":"uri",
1887
- "locationName":"Bucket"
1888
- }
1889
- }
1890
- },
1891
- "GetBucketNotificationConfigurationRequest":{
1892
- "type":"structure",
1893
- "required":["Bucket"],
1894
- "members":{
1895
- "Bucket":{
1896
- "shape":"BucketName",
1897
- "location":"uri",
1898
- "locationName":"Bucket"
1899
- }
1900
- }
1901
- },
1902
- "GetBucketPolicyOutput":{
1903
- "type":"structure",
1904
- "members":{
1905
- "Policy":{"shape":"Policy"}
1906
- },
1907
- "payload":"Policy"
1908
- },
1909
- "GetBucketPolicyRequest":{
1910
- "type":"structure",
1911
- "required":["Bucket"],
1912
- "members":{
1913
- "Bucket":{
1914
- "shape":"BucketName",
1915
- "location":"uri",
1916
- "locationName":"Bucket"
1917
- }
1918
- }
1919
- },
1920
- "GetBucketReplicationOutput":{
1921
- "type":"structure",
1922
- "members":{
1923
- "ReplicationConfiguration":{"shape":"ReplicationConfiguration"}
1924
- },
1925
- "payload":"ReplicationConfiguration"
1926
- },
1927
- "GetBucketReplicationRequest":{
1928
- "type":"structure",
1929
- "required":["Bucket"],
1930
- "members":{
1931
- "Bucket":{
1932
- "shape":"BucketName",
1933
- "location":"uri",
1934
- "locationName":"Bucket"
1935
- }
1936
- }
1937
- },
1938
- "GetBucketRequestPaymentOutput":{
1939
- "type":"structure",
1940
- "members":{
1941
- "Payer":{"shape":"Payer"}
1942
- }
1943
- },
1944
- "GetBucketRequestPaymentRequest":{
1945
- "type":"structure",
1946
- "required":["Bucket"],
1947
- "members":{
1948
- "Bucket":{
1949
- "shape":"BucketName",
1950
- "location":"uri",
1951
- "locationName":"Bucket"
1952
- }
1953
- }
1954
- },
1955
- "GetBucketTaggingOutput":{
1956
- "type":"structure",
1957
- "required":["TagSet"],
1958
- "members":{
1959
- "TagSet":{"shape":"TagSet"}
1960
- }
1961
- },
1962
- "GetBucketTaggingRequest":{
1963
- "type":"structure",
1964
- "required":["Bucket"],
1965
- "members":{
1966
- "Bucket":{
1967
- "shape":"BucketName",
1968
- "location":"uri",
1969
- "locationName":"Bucket"
1970
- }
1971
- }
1972
- },
1973
- "GetBucketVersioningOutput":{
1974
- "type":"structure",
1975
- "members":{
1976
- "Status":{"shape":"BucketVersioningStatus"},
1977
- "MFADelete":{
1978
- "shape":"MFADeleteStatus",
1979
- "locationName":"MfaDelete"
1980
- }
1981
- }
1982
- },
1983
- "GetBucketVersioningRequest":{
1984
- "type":"structure",
1985
- "required":["Bucket"],
1986
- "members":{
1987
- "Bucket":{
1988
- "shape":"BucketName",
1989
- "location":"uri",
1990
- "locationName":"Bucket"
1991
- }
1992
- }
1993
- },
1994
- "GetBucketWebsiteOutput":{
1995
- "type":"structure",
1996
- "members":{
1997
- "RedirectAllRequestsTo":{"shape":"RedirectAllRequestsTo"},
1998
- "IndexDocument":{"shape":"IndexDocument"},
1999
- "ErrorDocument":{"shape":"ErrorDocument"},
2000
- "RoutingRules":{"shape":"RoutingRules"}
2001
- }
2002
- },
2003
- "GetBucketWebsiteRequest":{
2004
- "type":"structure",
2005
- "required":["Bucket"],
2006
- "members":{
2007
- "Bucket":{
2008
- "shape":"BucketName",
2009
- "location":"uri",
2010
- "locationName":"Bucket"
2011
- }
2012
- }
2013
- },
2014
- "GetObjectAclOutput":{
2015
- "type":"structure",
2016
- "members":{
2017
- "Owner":{"shape":"Owner"},
2018
- "Grants":{
2019
- "shape":"Grants",
2020
- "locationName":"AccessControlList"
2021
- },
2022
- "RequestCharged":{
2023
- "shape":"RequestCharged",
2024
- "location":"header",
2025
- "locationName":"x-amz-request-charged"
2026
- }
2027
- }
2028
- },
2029
- "GetObjectAclRequest":{
2030
- "type":"structure",
2031
- "required":[
2032
- "Bucket",
2033
- "Key"
2034
- ],
2035
- "members":{
2036
- "Bucket":{
2037
- "shape":"BucketName",
2038
- "location":"uri",
2039
- "locationName":"Bucket"
2040
- },
2041
- "Key":{
2042
- "shape":"ObjectKey",
2043
- "location":"uri",
2044
- "locationName":"Key"
2045
- },
2046
- "VersionId":{
2047
- "shape":"ObjectVersionId",
2048
- "location":"querystring",
2049
- "locationName":"versionId"
2050
- },
2051
- "RequestPayer":{
2052
- "shape":"RequestPayer",
2053
- "location":"header",
2054
- "locationName":"x-amz-request-payer"
2055
- }
2056
- }
2057
- },
2058
- "GetObjectOutput":{
2059
- "type":"structure",
2060
- "members":{
2061
- "Body":{
2062
- "shape":"Body",
2063
- "streaming":true
2064
- },
2065
- "DeleteMarker":{
2066
- "shape":"DeleteMarker",
2067
- "location":"header",
2068
- "locationName":"x-amz-delete-marker"
2069
- },
2070
- "AcceptRanges":{
2071
- "shape":"AcceptRanges",
2072
- "location":"header",
2073
- "locationName":"accept-ranges"
2074
- },
2075
- "Expiration":{
2076
- "shape":"Expiration",
2077
- "location":"header",
2078
- "locationName":"x-amz-expiration"
2079
- },
2080
- "Restore":{
2081
- "shape":"Restore",
2082
- "location":"header",
2083
- "locationName":"x-amz-restore"
2084
- },
2085
- "LastModified":{
2086
- "shape":"LastModified",
2087
- "location":"header",
2088
- "locationName":"Last-Modified"
2089
- },
2090
- "ContentLength":{
2091
- "shape":"ContentLength",
2092
- "location":"header",
2093
- "locationName":"Content-Length"
2094
- },
2095
- "ETag":{
2096
- "shape":"ETag",
2097
- "location":"header",
2098
- "locationName":"ETag"
2099
- },
2100
- "MissingMeta":{
2101
- "shape":"MissingMeta",
2102
- "location":"header",
2103
- "locationName":"x-amz-missing-meta"
2104
- },
2105
- "VersionId":{
2106
- "shape":"ObjectVersionId",
2107
- "location":"header",
2108
- "locationName":"x-amz-version-id"
2109
- },
2110
- "CacheControl":{
2111
- "shape":"CacheControl",
2112
- "location":"header",
2113
- "locationName":"Cache-Control"
2114
- },
2115
- "ContentDisposition":{
2116
- "shape":"ContentDisposition",
2117
- "location":"header",
2118
- "locationName":"Content-Disposition"
2119
- },
2120
- "ContentEncoding":{
2121
- "shape":"ContentEncoding",
2122
- "location":"header",
2123
- "locationName":"Content-Encoding"
2124
- },
2125
- "ContentLanguage":{
2126
- "shape":"ContentLanguage",
2127
- "location":"header",
2128
- "locationName":"Content-Language"
2129
- },
2130
- "ContentRange":{
2131
- "shape":"ContentRange",
2132
- "location":"header",
2133
- "locationName":"Content-Range"
2134
- },
2135
- "ContentType":{
2136
- "shape":"ContentType",
2137
- "location":"header",
2138
- "locationName":"Content-Type"
2139
- },
2140
- "Expires":{
2141
- "shape":"Expires",
2142
- "location":"header",
2143
- "locationName":"Expires"
2144
- },
2145
- "WebsiteRedirectLocation":{
2146
- "shape":"WebsiteRedirectLocation",
2147
- "location":"header",
2148
- "locationName":"x-amz-website-redirect-location"
2149
- },
2150
- "ServerSideEncryption":{
2151
- "shape":"ServerSideEncryption",
2152
- "location":"header",
2153
- "locationName":"x-amz-server-side-encryption"
2154
- },
2155
- "Metadata":{
2156
- "shape":"Metadata",
2157
- "location":"headers",
2158
- "locationName":"x-amz-meta-"
2159
- },
2160
- "SSECustomerAlgorithm":{
2161
- "shape":"SSECustomerAlgorithm",
2162
- "location":"header",
2163
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
2164
- },
2165
- "SSECustomerKeyMD5":{
2166
- "shape":"SSECustomerKeyMD5",
2167
- "location":"header",
2168
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
2169
- },
2170
- "SSEKMSKeyId":{
2171
- "shape":"SSEKMSKeyId",
2172
- "location":"header",
2173
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
2174
- },
2175
- "StorageClass":{
2176
- "shape":"StorageClass",
2177
- "location":"header",
2178
- "locationName":"x-amz-storage-class"
2179
- },
2180
- "RequestCharged":{
2181
- "shape":"RequestCharged",
2182
- "location":"header",
2183
- "locationName":"x-amz-request-charged"
2184
- },
2185
- "ReplicationStatus":{
2186
- "shape":"ReplicationStatus",
2187
- "location":"header",
2188
- "locationName":"x-amz-replication-status"
2189
- }
2190
- },
2191
- "payload":"Body"
2192
- },
2193
- "GetObjectRequest":{
2194
- "type":"structure",
2195
- "required":[
2196
- "Bucket",
2197
- "Key"
2198
- ],
2199
- "members":{
2200
- "Bucket":{
2201
- "shape":"BucketName",
2202
- "location":"uri",
2203
- "locationName":"Bucket"
2204
- },
2205
- "IfMatch":{
2206
- "shape":"IfMatch",
2207
- "location":"header",
2208
- "locationName":"If-Match"
2209
- },
2210
- "IfModifiedSince":{
2211
- "shape":"IfModifiedSince",
2212
- "location":"header",
2213
- "locationName":"If-Modified-Since"
2214
- },
2215
- "IfNoneMatch":{
2216
- "shape":"IfNoneMatch",
2217
- "location":"header",
2218
- "locationName":"If-None-Match"
2219
- },
2220
- "IfUnmodifiedSince":{
2221
- "shape":"IfUnmodifiedSince",
2222
- "location":"header",
2223
- "locationName":"If-Unmodified-Since"
2224
- },
2225
- "Key":{
2226
- "shape":"ObjectKey",
2227
- "location":"uri",
2228
- "locationName":"Key"
2229
- },
2230
- "Range":{
2231
- "shape":"Range",
2232
- "location":"header",
2233
- "locationName":"Range"
2234
- },
2235
- "ResponseCacheControl":{
2236
- "shape":"ResponseCacheControl",
2237
- "location":"querystring",
2238
- "locationName":"response-cache-control"
2239
- },
2240
- "ResponseContentDisposition":{
2241
- "shape":"ResponseContentDisposition",
2242
- "location":"querystring",
2243
- "locationName":"response-content-disposition"
2244
- },
2245
- "ResponseContentEncoding":{
2246
- "shape":"ResponseContentEncoding",
2247
- "location":"querystring",
2248
- "locationName":"response-content-encoding"
2249
- },
2250
- "ResponseContentLanguage":{
2251
- "shape":"ResponseContentLanguage",
2252
- "location":"querystring",
2253
- "locationName":"response-content-language"
2254
- },
2255
- "ResponseContentType":{
2256
- "shape":"ResponseContentType",
2257
- "location":"querystring",
2258
- "locationName":"response-content-type"
2259
- },
2260
- "ResponseExpires":{
2261
- "shape":"ResponseExpires",
2262
- "location":"querystring",
2263
- "locationName":"response-expires"
2264
- },
2265
- "VersionId":{
2266
- "shape":"ObjectVersionId",
2267
- "location":"querystring",
2268
- "locationName":"versionId"
2269
- },
2270
- "SSECustomerAlgorithm":{
2271
- "shape":"SSECustomerAlgorithm",
2272
- "location":"header",
2273
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
2274
- },
2275
- "SSECustomerKey":{
2276
- "shape":"SSECustomerKey",
2277
- "location":"header",
2278
- "locationName":"x-amz-server-side-encryption-customer-key"
2279
- },
2280
- "SSECustomerKeyMD5":{
2281
- "shape":"SSECustomerKeyMD5",
2282
- "location":"header",
2283
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
2284
- },
2285
- "RequestPayer":{
2286
- "shape":"RequestPayer",
2287
- "location":"header",
2288
- "locationName":"x-amz-request-payer"
2289
- }
2290
- }
2291
- },
2292
- "GetObjectTorrentOutput":{
2293
- "type":"structure",
2294
- "members":{
2295
- "Body":{
2296
- "shape":"Body",
2297
- "streaming":true
2298
- },
2299
- "RequestCharged":{
2300
- "shape":"RequestCharged",
2301
- "location":"header",
2302
- "locationName":"x-amz-request-charged"
2303
- }
2304
- },
2305
- "payload":"Body"
2306
- },
2307
- "GetObjectTorrentRequest":{
2308
- "type":"structure",
2309
- "required":[
2310
- "Bucket",
2311
- "Key"
2312
- ],
2313
- "members":{
2314
- "Bucket":{
2315
- "shape":"BucketName",
2316
- "location":"uri",
2317
- "locationName":"Bucket"
2318
- },
2319
- "Key":{
2320
- "shape":"ObjectKey",
2321
- "location":"uri",
2322
- "locationName":"Key"
2323
- },
2324
- "RequestPayer":{
2325
- "shape":"RequestPayer",
2326
- "location":"header",
2327
- "locationName":"x-amz-request-payer"
2328
- }
2329
- }
2330
- },
2331
- "Grant":{
2332
- "type":"structure",
2333
- "members":{
2334
- "Grantee":{"shape":"Grantee"},
2335
- "Permission":{"shape":"Permission"}
2336
- }
2337
- },
2338
- "GrantFullControl":{"type":"string"},
2339
- "GrantRead":{"type":"string"},
2340
- "GrantReadACP":{"type":"string"},
2341
- "GrantWrite":{"type":"string"},
2342
- "GrantWriteACP":{"type":"string"},
2343
- "Grantee":{
2344
- "type":"structure",
2345
- "required":["Type"],
2346
- "members":{
2347
- "DisplayName":{"shape":"DisplayName"},
2348
- "EmailAddress":{"shape":"EmailAddress"},
2349
- "ID":{"shape":"ID"},
2350
- "Type":{
2351
- "shape":"Type",
2352
- "locationName":"xsi:type",
2353
- "xmlAttribute":true
2354
- },
2355
- "URI":{"shape":"URI"}
2356
- },
2357
- "xmlNamespace":{
2358
- "prefix":"xsi",
2359
- "uri":"http://www.w3.org/2001/XMLSchema-instance"
2360
- }
2361
- },
2362
- "Grants":{
2363
- "type":"list",
2364
- "member":{
2365
- "shape":"Grant",
2366
- "locationName":"Grant"
2367
- }
2368
- },
2369
- "HeadBucketRequest":{
2370
- "type":"structure",
2371
- "required":["Bucket"],
2372
- "members":{
2373
- "Bucket":{
2374
- "shape":"BucketName",
2375
- "location":"uri",
2376
- "locationName":"Bucket"
2377
- }
2378
- }
2379
- },
2380
- "HeadObjectOutput":{
2381
- "type":"structure",
2382
- "members":{
2383
- "DeleteMarker":{
2384
- "shape":"DeleteMarker",
2385
- "location":"header",
2386
- "locationName":"x-amz-delete-marker"
2387
- },
2388
- "AcceptRanges":{
2389
- "shape":"AcceptRanges",
2390
- "location":"header",
2391
- "locationName":"accept-ranges"
2392
- },
2393
- "Expiration":{
2394
- "shape":"Expiration",
2395
- "location":"header",
2396
- "locationName":"x-amz-expiration"
2397
- },
2398
- "Restore":{
2399
- "shape":"Restore",
2400
- "location":"header",
2401
- "locationName":"x-amz-restore"
2402
- },
2403
- "LastModified":{
2404
- "shape":"LastModified",
2405
- "location":"header",
2406
- "locationName":"Last-Modified"
2407
- },
2408
- "ContentLength":{
2409
- "shape":"ContentLength",
2410
- "location":"header",
2411
- "locationName":"Content-Length"
2412
- },
2413
- "ETag":{
2414
- "shape":"ETag",
2415
- "location":"header",
2416
- "locationName":"ETag"
2417
- },
2418
- "MissingMeta":{
2419
- "shape":"MissingMeta",
2420
- "location":"header",
2421
- "locationName":"x-amz-missing-meta"
2422
- },
2423
- "VersionId":{
2424
- "shape":"ObjectVersionId",
2425
- "location":"header",
2426
- "locationName":"x-amz-version-id"
2427
- },
2428
- "CacheControl":{
2429
- "shape":"CacheControl",
2430
- "location":"header",
2431
- "locationName":"Cache-Control"
2432
- },
2433
- "ContentDisposition":{
2434
- "shape":"ContentDisposition",
2435
- "location":"header",
2436
- "locationName":"Content-Disposition"
2437
- },
2438
- "ContentEncoding":{
2439
- "shape":"ContentEncoding",
2440
- "location":"header",
2441
- "locationName":"Content-Encoding"
2442
- },
2443
- "ContentLanguage":{
2444
- "shape":"ContentLanguage",
2445
- "location":"header",
2446
- "locationName":"Content-Language"
2447
- },
2448
- "ContentType":{
2449
- "shape":"ContentType",
2450
- "location":"header",
2451
- "locationName":"Content-Type"
2452
- },
2453
- "Expires":{
2454
- "shape":"Expires",
2455
- "location":"header",
2456
- "locationName":"Expires"
2457
- },
2458
- "WebsiteRedirectLocation":{
2459
- "shape":"WebsiteRedirectLocation",
2460
- "location":"header",
2461
- "locationName":"x-amz-website-redirect-location"
2462
- },
2463
- "ServerSideEncryption":{
2464
- "shape":"ServerSideEncryption",
2465
- "location":"header",
2466
- "locationName":"x-amz-server-side-encryption"
2467
- },
2468
- "Metadata":{
2469
- "shape":"Metadata",
2470
- "location":"headers",
2471
- "locationName":"x-amz-meta-"
2472
- },
2473
- "SSECustomerAlgorithm":{
2474
- "shape":"SSECustomerAlgorithm",
2475
- "location":"header",
2476
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
2477
- },
2478
- "SSECustomerKeyMD5":{
2479
- "shape":"SSECustomerKeyMD5",
2480
- "location":"header",
2481
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
2482
- },
2483
- "SSEKMSKeyId":{
2484
- "shape":"SSEKMSKeyId",
2485
- "location":"header",
2486
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
2487
- },
2488
- "StorageClass":{
2489
- "shape":"StorageClass",
2490
- "location":"header",
2491
- "locationName":"x-amz-storage-class"
2492
- },
2493
- "RequestCharged":{
2494
- "shape":"RequestCharged",
2495
- "location":"header",
2496
- "locationName":"x-amz-request-charged"
2497
- },
2498
- "ReplicationStatus":{
2499
- "shape":"ReplicationStatus",
2500
- "location":"header",
2501
- "locationName":"x-amz-replication-status"
2502
- }
2503
- }
2504
- },
2505
- "HeadObjectRequest":{
2506
- "type":"structure",
2507
- "required":[
2508
- "Bucket",
2509
- "Key"
2510
- ],
2511
- "members":{
2512
- "Bucket":{
2513
- "shape":"BucketName",
2514
- "location":"uri",
2515
- "locationName":"Bucket"
2516
- },
2517
- "IfMatch":{
2518
- "shape":"IfMatch",
2519
- "location":"header",
2520
- "locationName":"If-Match"
2521
- },
2522
- "IfModifiedSince":{
2523
- "shape":"IfModifiedSince",
2524
- "location":"header",
2525
- "locationName":"If-Modified-Since"
2526
- },
2527
- "IfNoneMatch":{
2528
- "shape":"IfNoneMatch",
2529
- "location":"header",
2530
- "locationName":"If-None-Match"
2531
- },
2532
- "IfUnmodifiedSince":{
2533
- "shape":"IfUnmodifiedSince",
2534
- "location":"header",
2535
- "locationName":"If-Unmodified-Since"
2536
- },
2537
- "Key":{
2538
- "shape":"ObjectKey",
2539
- "location":"uri",
2540
- "locationName":"Key"
2541
- },
2542
- "Range":{
2543
- "shape":"Range",
2544
- "location":"header",
2545
- "locationName":"Range"
2546
- },
2547
- "VersionId":{
2548
- "shape":"ObjectVersionId",
2549
- "location":"querystring",
2550
- "locationName":"versionId"
2551
- },
2552
- "SSECustomerAlgorithm":{
2553
- "shape":"SSECustomerAlgorithm",
2554
- "location":"header",
2555
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
2556
- },
2557
- "SSECustomerKey":{
2558
- "shape":"SSECustomerKey",
2559
- "location":"header",
2560
- "locationName":"x-amz-server-side-encryption-customer-key"
2561
- },
2562
- "SSECustomerKeyMD5":{
2563
- "shape":"SSECustomerKeyMD5",
2564
- "location":"header",
2565
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
2566
- },
2567
- "RequestPayer":{
2568
- "shape":"RequestPayer",
2569
- "location":"header",
2570
- "locationName":"x-amz-request-payer"
2571
- }
2572
- }
2573
- },
2574
- "HostName":{"type":"string"},
2575
- "HttpErrorCodeReturnedEquals":{"type":"string"},
2576
- "HttpRedirectCode":{"type":"string"},
2577
- "ID":{"type":"string"},
2578
- "IfMatch":{"type":"string"},
2579
- "IfModifiedSince":{"type":"timestamp"},
2580
- "IfNoneMatch":{"type":"string"},
2581
- "IfUnmodifiedSince":{"type":"timestamp"},
2582
- "IndexDocument":{
2583
- "type":"structure",
2584
- "required":["Suffix"],
2585
- "members":{
2586
- "Suffix":{"shape":"Suffix"}
2587
- }
2588
- },
2589
- "Initiated":{"type":"timestamp"},
2590
- "Initiator":{
2591
- "type":"structure",
2592
- "members":{
2593
- "ID":{"shape":"ID"},
2594
- "DisplayName":{"shape":"DisplayName"}
2595
- }
2596
- },
2597
- "IsLatest":{"type":"boolean"},
2598
- "IsTruncated":{"type":"boolean"},
2599
- "KeyCount":{"type":"integer"},
2600
- "KeyMarker":{"type":"string"},
2601
- "KeyPrefixEquals":{"type":"string"},
2602
- "LambdaFunctionArn":{"type":"string"},
2603
- "LambdaFunctionConfiguration":{
2604
- "type":"structure",
2605
- "required":[
2606
- "LambdaFunctionArn",
2607
- "Events"
2608
- ],
2609
- "members":{
2610
- "Id":{"shape":"NotificationId"},
2611
- "LambdaFunctionArn":{
2612
- "shape":"LambdaFunctionArn",
2613
- "locationName":"CloudFunction"
2614
- },
2615
- "Events":{
2616
- "shape":"EventList",
2617
- "locationName":"Event"
2618
- },
2619
- "Filter":{"shape":"NotificationConfigurationFilter"}
2620
- }
2621
- },
2622
- "LambdaFunctionConfigurationList":{
2623
- "type":"list",
2624
- "member":{"shape":"LambdaFunctionConfiguration"},
2625
- "flattened":true
2626
- },
2627
- "LastModified":{"type":"timestamp"},
2628
- "LifecycleConfiguration":{
2629
- "type":"structure",
2630
- "required":["Rules"],
2631
- "members":{
2632
- "Rules":{
2633
- "shape":"Rules",
2634
- "locationName":"Rule"
2635
- }
2636
- }
2637
- },
2638
- "LifecycleExpiration":{
2639
- "type":"structure",
2640
- "members":{
2641
- "Date":{"shape":"Date"},
2642
- "Days":{"shape":"Days"},
2643
- "ExpiredObjectDeleteMarker":{"shape":"ExpiredObjectDeleteMarker"}
2644
- }
2645
- },
2646
- "LifecycleRule":{
2647
- "type":"structure",
2648
- "required":[
2649
- "Prefix",
2650
- "Status"
2651
- ],
2652
- "members":{
2653
- "Expiration":{"shape":"LifecycleExpiration"},
2654
- "ID":{"shape":"ID"},
2655
- "Prefix":{"shape":"Prefix"},
2656
- "Status":{"shape":"ExpirationStatus"},
2657
- "Transitions":{
2658
- "shape":"TransitionList",
2659
- "locationName":"Transition"
2660
- },
2661
- "NoncurrentVersionTransitions":{
2662
- "shape":"NoncurrentVersionTransitionList",
2663
- "locationName":"NoncurrentVersionTransition"
2664
- },
2665
- "NoncurrentVersionExpiration":{"shape":"NoncurrentVersionExpiration"},
2666
- "AbortIncompleteMultipartUpload":{"shape":"AbortIncompleteMultipartUpload"}
2667
- }
2668
- },
2669
- "LifecycleRules":{
2670
- "type":"list",
2671
- "member":{"shape":"LifecycleRule"},
2672
- "flattened":true
2673
- },
2674
- "ListBucketsOutput":{
2675
- "type":"structure",
2676
- "members":{
2677
- "Buckets":{"shape":"Buckets"},
2678
- "Owner":{"shape":"Owner"}
2679
- }
2680
- },
2681
- "ListMultipartUploadsOutput":{
2682
- "type":"structure",
2683
- "members":{
2684
- "Bucket":{"shape":"BucketName"},
2685
- "KeyMarker":{"shape":"KeyMarker"},
2686
- "UploadIdMarker":{"shape":"UploadIdMarker"},
2687
- "NextKeyMarker":{"shape":"NextKeyMarker"},
2688
- "Prefix":{"shape":"Prefix"},
2689
- "Delimiter":{"shape":"Delimiter"},
2690
- "NextUploadIdMarker":{"shape":"NextUploadIdMarker"},
2691
- "MaxUploads":{"shape":"MaxUploads"},
2692
- "IsTruncated":{"shape":"IsTruncated"},
2693
- "Uploads":{
2694
- "shape":"MultipartUploadList",
2695
- "locationName":"Upload"
2696
- },
2697
- "CommonPrefixes":{"shape":"CommonPrefixList"},
2698
- "EncodingType":{"shape":"EncodingType"}
2699
- }
2700
- },
2701
- "ListMultipartUploadsRequest":{
2702
- "type":"structure",
2703
- "required":["Bucket"],
2704
- "members":{
2705
- "Bucket":{
2706
- "shape":"BucketName",
2707
- "location":"uri",
2708
- "locationName":"Bucket"
2709
- },
2710
- "Delimiter":{
2711
- "shape":"Delimiter",
2712
- "location":"querystring",
2713
- "locationName":"delimiter"
2714
- },
2715
- "EncodingType":{
2716
- "shape":"EncodingType",
2717
- "location":"querystring",
2718
- "locationName":"encoding-type"
2719
- },
2720
- "KeyMarker":{
2721
- "shape":"KeyMarker",
2722
- "location":"querystring",
2723
- "locationName":"key-marker"
2724
- },
2725
- "MaxUploads":{
2726
- "shape":"MaxUploads",
2727
- "location":"querystring",
2728
- "locationName":"max-uploads"
2729
- },
2730
- "Prefix":{
2731
- "shape":"Prefix",
2732
- "location":"querystring",
2733
- "locationName":"prefix"
2734
- },
2735
- "UploadIdMarker":{
2736
- "shape":"UploadIdMarker",
2737
- "location":"querystring",
2738
- "locationName":"upload-id-marker"
2739
- }
2740
- }
2741
- },
2742
- "ListObjectVersionsOutput":{
2743
- "type":"structure",
2744
- "members":{
2745
- "IsTruncated":{"shape":"IsTruncated"},
2746
- "KeyMarker":{"shape":"KeyMarker"},
2747
- "VersionIdMarker":{"shape":"VersionIdMarker"},
2748
- "NextKeyMarker":{"shape":"NextKeyMarker"},
2749
- "NextVersionIdMarker":{"shape":"NextVersionIdMarker"},
2750
- "Versions":{
2751
- "shape":"ObjectVersionList",
2752
- "locationName":"Version"
2753
- },
2754
- "DeleteMarkers":{
2755
- "shape":"DeleteMarkers",
2756
- "locationName":"DeleteMarker"
2757
- },
2758
- "Name":{"shape":"BucketName"},
2759
- "Prefix":{"shape":"Prefix"},
2760
- "Delimiter":{"shape":"Delimiter"},
2761
- "MaxKeys":{"shape":"MaxKeys"},
2762
- "CommonPrefixes":{"shape":"CommonPrefixList"},
2763
- "EncodingType":{"shape":"EncodingType"}
2764
- }
2765
- },
2766
- "ListObjectVersionsRequest":{
2767
- "type":"structure",
2768
- "required":["Bucket"],
2769
- "members":{
2770
- "Bucket":{
2771
- "shape":"BucketName",
2772
- "location":"uri",
2773
- "locationName":"Bucket"
2774
- },
2775
- "Delimiter":{
2776
- "shape":"Delimiter",
2777
- "location":"querystring",
2778
- "locationName":"delimiter"
2779
- },
2780
- "EncodingType":{
2781
- "shape":"EncodingType",
2782
- "location":"querystring",
2783
- "locationName":"encoding-type"
2784
- },
2785
- "KeyMarker":{
2786
- "shape":"KeyMarker",
2787
- "location":"querystring",
2788
- "locationName":"key-marker"
2789
- },
2790
- "MaxKeys":{
2791
- "shape":"MaxKeys",
2792
- "location":"querystring",
2793
- "locationName":"max-keys"
2794
- },
2795
- "Prefix":{
2796
- "shape":"Prefix",
2797
- "location":"querystring",
2798
- "locationName":"prefix"
2799
- },
2800
- "VersionIdMarker":{
2801
- "shape":"VersionIdMarker",
2802
- "location":"querystring",
2803
- "locationName":"version-id-marker"
2804
- }
2805
- }
2806
- },
2807
- "ListObjectsOutput":{
2808
- "type":"structure",
2809
- "members":{
2810
- "IsTruncated":{"shape":"IsTruncated"},
2811
- "Marker":{"shape":"Marker"},
2812
- "NextMarker":{"shape":"NextMarker"},
2813
- "Contents":{"shape":"ObjectList"},
2814
- "Name":{"shape":"BucketName"},
2815
- "Prefix":{"shape":"Prefix"},
2816
- "Delimiter":{"shape":"Delimiter"},
2817
- "MaxKeys":{"shape":"MaxKeys"},
2818
- "CommonPrefixes":{"shape":"CommonPrefixList"},
2819
- "EncodingType":{"shape":"EncodingType"}
2820
- }
2821
- },
2822
- "ListObjectsRequest":{
2823
- "type":"structure",
2824
- "required":["Bucket"],
2825
- "members":{
2826
- "Bucket":{
2827
- "shape":"BucketName",
2828
- "location":"uri",
2829
- "locationName":"Bucket"
2830
- },
2831
- "Delimiter":{
2832
- "shape":"Delimiter",
2833
- "location":"querystring",
2834
- "locationName":"delimiter"
2835
- },
2836
- "EncodingType":{
2837
- "shape":"EncodingType",
2838
- "location":"querystring",
2839
- "locationName":"encoding-type"
2840
- },
2841
- "Marker":{
2842
- "shape":"Marker",
2843
- "location":"querystring",
2844
- "locationName":"marker"
2845
- },
2846
- "MaxKeys":{
2847
- "shape":"MaxKeys",
2848
- "location":"querystring",
2849
- "locationName":"max-keys"
2850
- },
2851
- "Prefix":{
2852
- "shape":"Prefix",
2853
- "location":"querystring",
2854
- "locationName":"prefix"
2855
- }
2856
- }
2857
- },
2858
- "ListObjectsV2Output":{
2859
- "type":"structure",
2860
- "members":{
2861
- "IsTruncated":{"shape":"IsTruncated"},
2862
- "Contents":{"shape":"ObjectList"},
2863
- "Name":{"shape":"BucketName"},
2864
- "Prefix":{"shape":"Prefix"},
2865
- "Delimiter":{"shape":"Delimiter"},
2866
- "MaxKeys":{"shape":"MaxKeys"},
2867
- "CommonPrefixes":{"shape":"CommonPrefixList"},
2868
- "EncodingType":{"shape":"EncodingType"},
2869
- "KeyCount":{"shape":"KeyCount"},
2870
- "ContinuationToken":{"shape":"Token"},
2871
- "NextContinuationToken":{"shape":"NextToken"},
2872
- "StartAfter":{"shape":"StartAfter"}
2873
- }
2874
- },
2875
- "ListObjectsV2Request":{
2876
- "type":"structure",
2877
- "required":["Bucket"],
2878
- "members":{
2879
- "Bucket":{
2880
- "shape":"BucketName",
2881
- "location":"uri",
2882
- "locationName":"Bucket"
2883
- },
2884
- "Delimiter":{
2885
- "shape":"Delimiter",
2886
- "location":"querystring",
2887
- "locationName":"delimiter"
2888
- },
2889
- "EncodingType":{
2890
- "shape":"EncodingType",
2891
- "location":"querystring",
2892
- "locationName":"encoding-type"
2893
- },
2894
- "MaxKeys":{
2895
- "shape":"MaxKeys",
2896
- "location":"querystring",
2897
- "locationName":"max-keys"
2898
- },
2899
- "Prefix":{
2900
- "shape":"Prefix",
2901
- "location":"querystring",
2902
- "locationName":"prefix"
2903
- },
2904
- "ContinuationToken":{
2905
- "shape":"Token",
2906
- "location":"querystring",
2907
- "locationName":"continuation-token"
2908
- },
2909
- "FetchOwner":{
2910
- "shape":"FetchOwner",
2911
- "location":"querystring",
2912
- "locationName":"fetch-owner"
2913
- },
2914
- "StartAfter":{
2915
- "shape":"StartAfter",
2916
- "location":"querystring",
2917
- "locationName":"start-after"
2918
- }
2919
- }
2920
- },
2921
- "ListPartsOutput":{
2922
- "type":"structure",
2923
- "members":{
2924
- "AbortDate":{
2925
- "shape":"AbortDate",
2926
- "location":"header",
2927
- "locationName":"x-amz-abort-date"
2928
- },
2929
- "AbortRuleId":{
2930
- "shape":"AbortRuleId",
2931
- "location":"header",
2932
- "locationName":"x-amz-abort-rule-id"
2933
- },
2934
- "Bucket":{"shape":"BucketName"},
2935
- "Key":{"shape":"ObjectKey"},
2936
- "UploadId":{"shape":"MultipartUploadId"},
2937
- "PartNumberMarker":{"shape":"PartNumberMarker"},
2938
- "NextPartNumberMarker":{"shape":"NextPartNumberMarker"},
2939
- "MaxParts":{"shape":"MaxParts"},
2940
- "IsTruncated":{"shape":"IsTruncated"},
2941
- "Parts":{
2942
- "shape":"Parts",
2943
- "locationName":"Part"
2944
- },
2945
- "Initiator":{"shape":"Initiator"},
2946
- "Owner":{"shape":"Owner"},
2947
- "StorageClass":{"shape":"StorageClass"},
2948
- "RequestCharged":{
2949
- "shape":"RequestCharged",
2950
- "location":"header",
2951
- "locationName":"x-amz-request-charged"
2952
- }
2953
- }
2954
- },
2955
- "ListPartsRequest":{
2956
- "type":"structure",
2957
- "required":[
2958
- "Bucket",
2959
- "Key",
2960
- "UploadId"
2961
- ],
2962
- "members":{
2963
- "Bucket":{
2964
- "shape":"BucketName",
2965
- "location":"uri",
2966
- "locationName":"Bucket"
2967
- },
2968
- "Key":{
2969
- "shape":"ObjectKey",
2970
- "location":"uri",
2971
- "locationName":"Key"
2972
- },
2973
- "MaxParts":{
2974
- "shape":"MaxParts",
2975
- "location":"querystring",
2976
- "locationName":"max-parts"
2977
- },
2978
- "PartNumberMarker":{
2979
- "shape":"PartNumberMarker",
2980
- "location":"querystring",
2981
- "locationName":"part-number-marker"
2982
- },
2983
- "UploadId":{
2984
- "shape":"MultipartUploadId",
2985
- "location":"querystring",
2986
- "locationName":"uploadId"
2987
- },
2988
- "RequestPayer":{
2989
- "shape":"RequestPayer",
2990
- "location":"header",
2991
- "locationName":"x-amz-request-payer"
2992
- }
2993
- }
2994
- },
2995
- "Location":{"type":"string"},
2996
- "LoggingEnabled":{
2997
- "type":"structure",
2998
- "members":{
2999
- "TargetBucket":{"shape":"TargetBucket"},
3000
- "TargetGrants":{"shape":"TargetGrants"},
3001
- "TargetPrefix":{"shape":"TargetPrefix"}
3002
- }
3003
- },
3004
- "MFA":{"type":"string"},
3005
- "MFADelete":{
3006
- "type":"string",
3007
- "enum":[
3008
- "Enabled",
3009
- "Disabled"
3010
- ]
3011
- },
3012
- "MFADeleteStatus":{
3013
- "type":"string",
3014
- "enum":[
3015
- "Enabled",
3016
- "Disabled"
3017
- ]
3018
- },
3019
- "Marker":{"type":"string"},
3020
- "MaxAgeSeconds":{"type":"integer"},
3021
- "MaxKeys":{"type":"integer"},
3022
- "MaxParts":{"type":"integer"},
3023
- "MaxUploads":{"type":"integer"},
3024
- "Message":{"type":"string"},
3025
- "Metadata":{
3026
- "type":"map",
3027
- "key":{"shape":"MetadataKey"},
3028
- "value":{"shape":"MetadataValue"}
3029
- },
3030
- "MetadataDirective":{
3031
- "type":"string",
3032
- "enum":[
3033
- "COPY",
3034
- "REPLACE"
3035
- ]
3036
- },
3037
- "MetadataKey":{"type":"string"},
3038
- "MetadataValue":{"type":"string"},
3039
- "MissingMeta":{"type":"integer"},
3040
- "MultipartUpload":{
3041
- "type":"structure",
3042
- "members":{
3043
- "UploadId":{"shape":"MultipartUploadId"},
3044
- "Key":{"shape":"ObjectKey"},
3045
- "Initiated":{"shape":"Initiated"},
3046
- "StorageClass":{"shape":"StorageClass"},
3047
- "Owner":{"shape":"Owner"},
3048
- "Initiator":{"shape":"Initiator"}
3049
- }
3050
- },
3051
- "MultipartUploadId":{"type":"string"},
3052
- "MultipartUploadList":{
3053
- "type":"list",
3054
- "member":{"shape":"MultipartUpload"},
3055
- "flattened":true
3056
- },
3057
- "NextKeyMarker":{"type":"string"},
3058
- "NextMarker":{"type":"string"},
3059
- "NextPartNumberMarker":{"type":"integer"},
3060
- "NextToken":{"type":"string"},
3061
- "NextUploadIdMarker":{"type":"string"},
3062
- "NextVersionIdMarker":{"type":"string"},
3063
- "NoSuchBucket":{
3064
- "type":"structure",
3065
- "members":{
3066
- },
3067
- "exception":true
3068
- },
3069
- "NoSuchKey":{
3070
- "type":"structure",
3071
- "members":{
3072
- },
3073
- "exception":true
3074
- },
3075
- "NoSuchUpload":{
3076
- "type":"structure",
3077
- "members":{
3078
- },
3079
- "exception":true
3080
- },
3081
- "NoncurrentVersionExpiration":{
3082
- "type":"structure",
3083
- "members":{
3084
- "NoncurrentDays":{"shape":"Days"}
3085
- }
3086
- },
3087
- "NoncurrentVersionTransition":{
3088
- "type":"structure",
3089
- "members":{
3090
- "NoncurrentDays":{"shape":"Days"},
3091
- "StorageClass":{"shape":"TransitionStorageClass"}
3092
- }
3093
- },
3094
- "NoncurrentVersionTransitionList":{
3095
- "type":"list",
3096
- "member":{"shape":"NoncurrentVersionTransition"},
3097
- "flattened":true
3098
- },
3099
- "NotificationConfiguration":{
3100
- "type":"structure",
3101
- "members":{
3102
- "TopicConfigurations":{
3103
- "shape":"TopicConfigurationList",
3104
- "locationName":"TopicConfiguration"
3105
- },
3106
- "QueueConfigurations":{
3107
- "shape":"QueueConfigurationList",
3108
- "locationName":"QueueConfiguration"
3109
- },
3110
- "LambdaFunctionConfigurations":{
3111
- "shape":"LambdaFunctionConfigurationList",
3112
- "locationName":"CloudFunctionConfiguration"
3113
- }
3114
- }
3115
- },
3116
- "NotificationConfigurationDeprecated":{
3117
- "type":"structure",
3118
- "members":{
3119
- "TopicConfiguration":{"shape":"TopicConfigurationDeprecated"},
3120
- "QueueConfiguration":{"shape":"QueueConfigurationDeprecated"},
3121
- "CloudFunctionConfiguration":{"shape":"CloudFunctionConfiguration"}
3122
- }
3123
- },
3124
- "NotificationConfigurationFilter":{
3125
- "type":"structure",
3126
- "members":{
3127
- "Key":{
3128
- "shape":"S3KeyFilter",
3129
- "locationName":"S3Key"
3130
- }
3131
- }
3132
- },
3133
- "NotificationId":{"type":"string"},
3134
- "Object":{
3135
- "type":"structure",
3136
- "members":{
3137
- "Key":{"shape":"ObjectKey"},
3138
- "LastModified":{"shape":"LastModified"},
3139
- "ETag":{"shape":"ETag"},
3140
- "Size":{"shape":"Size"},
3141
- "StorageClass":{"shape":"ObjectStorageClass"},
3142
- "Owner":{"shape":"Owner"}
3143
- }
3144
- },
3145
- "ObjectAlreadyInActiveTierError":{
3146
- "type":"structure",
3147
- "members":{
3148
- },
3149
- "exception":true
3150
- },
3151
- "ObjectCannedACL":{
3152
- "type":"string",
3153
- "enum":[
3154
- "private",
3155
- "public-read",
3156
- "public-read-write",
3157
- "authenticated-read",
3158
- "aws-exec-read",
3159
- "bucket-owner-read",
3160
- "bucket-owner-full-control"
3161
- ]
3162
- },
3163
- "ObjectIdentifier":{
3164
- "type":"structure",
3165
- "required":["Key"],
3166
- "members":{
3167
- "Key":{"shape":"ObjectKey"},
3168
- "VersionId":{"shape":"ObjectVersionId"}
3169
- }
3170
- },
3171
- "ObjectIdentifierList":{
3172
- "type":"list",
3173
- "member":{"shape":"ObjectIdentifier"},
3174
- "flattened":true
3175
- },
3176
- "ObjectKey":{
3177
- "type":"string",
3178
- "min":1
3179
- },
3180
- "ObjectList":{
3181
- "type":"list",
3182
- "member":{"shape":"Object"},
3183
- "flattened":true
3184
- },
3185
- "ObjectNotInActiveTierError":{
3186
- "type":"structure",
3187
- "members":{
3188
- },
3189
- "exception":true
3190
- },
3191
- "ObjectStorageClass":{
3192
- "type":"string",
3193
- "enum":[
3194
- "STANDARD",
3195
- "REDUCED_REDUNDANCY",
3196
- "GLACIER"
3197
- ]
3198
- },
3199
- "ObjectVersion":{
3200
- "type":"structure",
3201
- "members":{
3202
- "ETag":{"shape":"ETag"},
3203
- "Size":{"shape":"Size"},
3204
- "StorageClass":{"shape":"ObjectVersionStorageClass"},
3205
- "Key":{"shape":"ObjectKey"},
3206
- "VersionId":{"shape":"ObjectVersionId"},
3207
- "IsLatest":{"shape":"IsLatest"},
3208
- "LastModified":{"shape":"LastModified"},
3209
- "Owner":{"shape":"Owner"}
3210
- }
3211
- },
3212
- "ObjectVersionId":{"type":"string"},
3213
- "ObjectVersionList":{
3214
- "type":"list",
3215
- "member":{"shape":"ObjectVersion"},
3216
- "flattened":true
3217
- },
3218
- "ObjectVersionStorageClass":{
3219
- "type":"string",
3220
- "enum":["STANDARD"]
3221
- },
3222
- "Owner":{
3223
- "type":"structure",
3224
- "members":{
3225
- "DisplayName":{"shape":"DisplayName"},
3226
- "ID":{"shape":"ID"}
3227
- }
3228
- },
3229
- "Part":{
3230
- "type":"structure",
3231
- "members":{
3232
- "PartNumber":{"shape":"PartNumber"},
3233
- "LastModified":{"shape":"LastModified"},
3234
- "ETag":{"shape":"ETag"},
3235
- "Size":{"shape":"Size"}
3236
- }
3237
- },
3238
- "PartNumber":{"type":"integer"},
3239
- "PartNumberMarker":{"type":"integer"},
3240
- "Parts":{
3241
- "type":"list",
3242
- "member":{"shape":"Part"},
3243
- "flattened":true
3244
- },
3245
- "Payer":{
3246
- "type":"string",
3247
- "enum":[
3248
- "Requester",
3249
- "BucketOwner"
3250
- ]
3251
- },
3252
- "Permission":{
3253
- "type":"string",
3254
- "enum":[
3255
- "FULL_CONTROL",
3256
- "WRITE",
3257
- "WRITE_ACP",
3258
- "READ",
3259
- "READ_ACP"
3260
- ]
3261
- },
3262
- "Policy":{"type":"string"},
3263
- "Prefix":{"type":"string"},
3264
- "Protocol":{
3265
- "type":"string",
3266
- "enum":[
3267
- "http",
3268
- "https"
3269
- ]
3270
- },
3271
- "PutBucketAccelerateConfigurationRequest":{
3272
- "type":"structure",
3273
- "required":[
3274
- "Bucket",
3275
- "AccelerateConfiguration"
3276
- ],
3277
- "members":{
3278
- "Bucket":{
3279
- "shape":"BucketName",
3280
- "location":"uri",
3281
- "locationName":"Bucket"
3282
- },
3283
- "AccelerateConfiguration":{
3284
- "shape":"AccelerateConfiguration",
3285
- "locationName":"AccelerateConfiguration",
3286
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3287
- }
3288
- },
3289
- "payload":"AccelerateConfiguration"
3290
- },
3291
- "PutBucketAclRequest":{
3292
- "type":"structure",
3293
- "required":["Bucket"],
3294
- "members":{
3295
- "ACL":{
3296
- "shape":"BucketCannedACL",
3297
- "location":"header",
3298
- "locationName":"x-amz-acl"
3299
- },
3300
- "AccessControlPolicy":{
3301
- "shape":"AccessControlPolicy",
3302
- "locationName":"AccessControlPolicy",
3303
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3304
- },
3305
- "Bucket":{
3306
- "shape":"BucketName",
3307
- "location":"uri",
3308
- "locationName":"Bucket"
3309
- },
3310
- "ContentMD5":{
3311
- "shape":"ContentMD5",
3312
- "location":"header",
3313
- "locationName":"Content-MD5"
3314
- },
3315
- "GrantFullControl":{
3316
- "shape":"GrantFullControl",
3317
- "location":"header",
3318
- "locationName":"x-amz-grant-full-control"
3319
- },
3320
- "GrantRead":{
3321
- "shape":"GrantRead",
3322
- "location":"header",
3323
- "locationName":"x-amz-grant-read"
3324
- },
3325
- "GrantReadACP":{
3326
- "shape":"GrantReadACP",
3327
- "location":"header",
3328
- "locationName":"x-amz-grant-read-acp"
3329
- },
3330
- "GrantWrite":{
3331
- "shape":"GrantWrite",
3332
- "location":"header",
3333
- "locationName":"x-amz-grant-write"
3334
- },
3335
- "GrantWriteACP":{
3336
- "shape":"GrantWriteACP",
3337
- "location":"header",
3338
- "locationName":"x-amz-grant-write-acp"
3339
- }
3340
- },
3341
- "payload":"AccessControlPolicy"
3342
- },
3343
- "PutBucketCorsRequest":{
3344
- "type":"structure",
3345
- "required":[
3346
- "Bucket",
3347
- "CORSConfiguration"
3348
- ],
3349
- "members":{
3350
- "Bucket":{
3351
- "shape":"BucketName",
3352
- "location":"uri",
3353
- "locationName":"Bucket"
3354
- },
3355
- "CORSConfiguration":{
3356
- "shape":"CORSConfiguration",
3357
- "locationName":"CORSConfiguration",
3358
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3359
- },
3360
- "ContentMD5":{
3361
- "shape":"ContentMD5",
3362
- "location":"header",
3363
- "locationName":"Content-MD5"
3364
- }
3365
- },
3366
- "payload":"CORSConfiguration"
3367
- },
3368
- "PutBucketLifecycleConfigurationRequest":{
3369
- "type":"structure",
3370
- "required":["Bucket"],
3371
- "members":{
3372
- "Bucket":{
3373
- "shape":"BucketName",
3374
- "location":"uri",
3375
- "locationName":"Bucket"
3376
- },
3377
- "LifecycleConfiguration":{
3378
- "shape":"BucketLifecycleConfiguration",
3379
- "locationName":"LifecycleConfiguration",
3380
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3381
- }
3382
- },
3383
- "payload":"LifecycleConfiguration"
3384
- },
3385
- "PutBucketLifecycleRequest":{
3386
- "type":"structure",
3387
- "required":["Bucket"],
3388
- "members":{
3389
- "Bucket":{
3390
- "shape":"BucketName",
3391
- "location":"uri",
3392
- "locationName":"Bucket"
3393
- },
3394
- "ContentMD5":{
3395
- "shape":"ContentMD5",
3396
- "location":"header",
3397
- "locationName":"Content-MD5"
3398
- },
3399
- "LifecycleConfiguration":{
3400
- "shape":"LifecycleConfiguration",
3401
- "locationName":"LifecycleConfiguration",
3402
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3403
- }
3404
- },
3405
- "payload":"LifecycleConfiguration"
3406
- },
3407
- "PutBucketLoggingRequest":{
3408
- "type":"structure",
3409
- "required":[
3410
- "Bucket",
3411
- "BucketLoggingStatus"
3412
- ],
3413
- "members":{
3414
- "Bucket":{
3415
- "shape":"BucketName",
3416
- "location":"uri",
3417
- "locationName":"Bucket"
3418
- },
3419
- "BucketLoggingStatus":{
3420
- "shape":"BucketLoggingStatus",
3421
- "locationName":"BucketLoggingStatus",
3422
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3423
- },
3424
- "ContentMD5":{
3425
- "shape":"ContentMD5",
3426
- "location":"header",
3427
- "locationName":"Content-MD5"
3428
- }
3429
- },
3430
- "payload":"BucketLoggingStatus"
3431
- },
3432
- "PutBucketNotificationConfigurationRequest":{
3433
- "type":"structure",
3434
- "required":[
3435
- "Bucket",
3436
- "NotificationConfiguration"
3437
- ],
3438
- "members":{
3439
- "Bucket":{
3440
- "shape":"BucketName",
3441
- "location":"uri",
3442
- "locationName":"Bucket"
3443
- },
3444
- "NotificationConfiguration":{
3445
- "shape":"NotificationConfiguration",
3446
- "locationName":"NotificationConfiguration",
3447
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3448
- }
3449
- },
3450
- "payload":"NotificationConfiguration"
3451
- },
3452
- "PutBucketNotificationRequest":{
3453
- "type":"structure",
3454
- "required":[
3455
- "Bucket",
3456
- "NotificationConfiguration"
3457
- ],
3458
- "members":{
3459
- "Bucket":{
3460
- "shape":"BucketName",
3461
- "location":"uri",
3462
- "locationName":"Bucket"
3463
- },
3464
- "ContentMD5":{
3465
- "shape":"ContentMD5",
3466
- "location":"header",
3467
- "locationName":"Content-MD5"
3468
- },
3469
- "NotificationConfiguration":{
3470
- "shape":"NotificationConfigurationDeprecated",
3471
- "locationName":"NotificationConfiguration",
3472
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3473
- }
3474
- },
3475
- "payload":"NotificationConfiguration"
3476
- },
3477
- "PutBucketPolicyRequest":{
3478
- "type":"structure",
3479
- "required":[
3480
- "Bucket",
3481
- "Policy"
3482
- ],
3483
- "members":{
3484
- "Bucket":{
3485
- "shape":"BucketName",
3486
- "location":"uri",
3487
- "locationName":"Bucket"
3488
- },
3489
- "ContentMD5":{
3490
- "shape":"ContentMD5",
3491
- "location":"header",
3492
- "locationName":"Content-MD5"
3493
- },
3494
- "Policy":{"shape":"Policy"}
3495
- },
3496
- "payload":"Policy"
3497
- },
3498
- "PutBucketReplicationRequest":{
3499
- "type":"structure",
3500
- "required":[
3501
- "Bucket",
3502
- "ReplicationConfiguration"
3503
- ],
3504
- "members":{
3505
- "Bucket":{
3506
- "shape":"BucketName",
3507
- "location":"uri",
3508
- "locationName":"Bucket"
3509
- },
3510
- "ContentMD5":{
3511
- "shape":"ContentMD5",
3512
- "location":"header",
3513
- "locationName":"Content-MD5"
3514
- },
3515
- "ReplicationConfiguration":{
3516
- "shape":"ReplicationConfiguration",
3517
- "locationName":"ReplicationConfiguration",
3518
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3519
- }
3520
- },
3521
- "payload":"ReplicationConfiguration"
3522
- },
3523
- "PutBucketRequestPaymentRequest":{
3524
- "type":"structure",
3525
- "required":[
3526
- "Bucket",
3527
- "RequestPaymentConfiguration"
3528
- ],
3529
- "members":{
3530
- "Bucket":{
3531
- "shape":"BucketName",
3532
- "location":"uri",
3533
- "locationName":"Bucket"
3534
- },
3535
- "ContentMD5":{
3536
- "shape":"ContentMD5",
3537
- "location":"header",
3538
- "locationName":"Content-MD5"
3539
- },
3540
- "RequestPaymentConfiguration":{
3541
- "shape":"RequestPaymentConfiguration",
3542
- "locationName":"RequestPaymentConfiguration",
3543
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3544
- }
3545
- },
3546
- "payload":"RequestPaymentConfiguration"
3547
- },
3548
- "PutBucketTaggingRequest":{
3549
- "type":"structure",
3550
- "required":[
3551
- "Bucket",
3552
- "Tagging"
3553
- ],
3554
- "members":{
3555
- "Bucket":{
3556
- "shape":"BucketName",
3557
- "location":"uri",
3558
- "locationName":"Bucket"
3559
- },
3560
- "ContentMD5":{
3561
- "shape":"ContentMD5",
3562
- "location":"header",
3563
- "locationName":"Content-MD5"
3564
- },
3565
- "Tagging":{
3566
- "shape":"Tagging",
3567
- "locationName":"Tagging",
3568
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3569
- }
3570
- },
3571
- "payload":"Tagging"
3572
- },
3573
- "PutBucketVersioningRequest":{
3574
- "type":"structure",
3575
- "required":[
3576
- "Bucket",
3577
- "VersioningConfiguration"
3578
- ],
3579
- "members":{
3580
- "Bucket":{
3581
- "shape":"BucketName",
3582
- "location":"uri",
3583
- "locationName":"Bucket"
3584
- },
3585
- "ContentMD5":{
3586
- "shape":"ContentMD5",
3587
- "location":"header",
3588
- "locationName":"Content-MD5"
3589
- },
3590
- "MFA":{
3591
- "shape":"MFA",
3592
- "location":"header",
3593
- "locationName":"x-amz-mfa"
3594
- },
3595
- "VersioningConfiguration":{
3596
- "shape":"VersioningConfiguration",
3597
- "locationName":"VersioningConfiguration",
3598
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3599
- }
3600
- },
3601
- "payload":"VersioningConfiguration"
3602
- },
3603
- "PutBucketWebsiteRequest":{
3604
- "type":"structure",
3605
- "required":[
3606
- "Bucket",
3607
- "WebsiteConfiguration"
3608
- ],
3609
- "members":{
3610
- "Bucket":{
3611
- "shape":"BucketName",
3612
- "location":"uri",
3613
- "locationName":"Bucket"
3614
- },
3615
- "ContentMD5":{
3616
- "shape":"ContentMD5",
3617
- "location":"header",
3618
- "locationName":"Content-MD5"
3619
- },
3620
- "WebsiteConfiguration":{
3621
- "shape":"WebsiteConfiguration",
3622
- "locationName":"WebsiteConfiguration",
3623
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3624
- }
3625
- },
3626
- "payload":"WebsiteConfiguration"
3627
- },
3628
- "PutObjectAclOutput":{
3629
- "type":"structure",
3630
- "members":{
3631
- "RequestCharged":{
3632
- "shape":"RequestCharged",
3633
- "location":"header",
3634
- "locationName":"x-amz-request-charged"
3635
- }
3636
- }
3637
- },
3638
- "PutObjectAclRequest":{
3639
- "type":"structure",
3640
- "required":[
3641
- "Bucket",
3642
- "Key"
3643
- ],
3644
- "members":{
3645
- "ACL":{
3646
- "shape":"ObjectCannedACL",
3647
- "location":"header",
3648
- "locationName":"x-amz-acl"
3649
- },
3650
- "AccessControlPolicy":{
3651
- "shape":"AccessControlPolicy",
3652
- "locationName":"AccessControlPolicy",
3653
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
3654
- },
3655
- "Bucket":{
3656
- "shape":"BucketName",
3657
- "location":"uri",
3658
- "locationName":"Bucket"
3659
- },
3660
- "ContentMD5":{
3661
- "shape":"ContentMD5",
3662
- "location":"header",
3663
- "locationName":"Content-MD5"
3664
- },
3665
- "GrantFullControl":{
3666
- "shape":"GrantFullControl",
3667
- "location":"header",
3668
- "locationName":"x-amz-grant-full-control"
3669
- },
3670
- "GrantRead":{
3671
- "shape":"GrantRead",
3672
- "location":"header",
3673
- "locationName":"x-amz-grant-read"
3674
- },
3675
- "GrantReadACP":{
3676
- "shape":"GrantReadACP",
3677
- "location":"header",
3678
- "locationName":"x-amz-grant-read-acp"
3679
- },
3680
- "GrantWrite":{
3681
- "shape":"GrantWrite",
3682
- "location":"header",
3683
- "locationName":"x-amz-grant-write"
3684
- },
3685
- "GrantWriteACP":{
3686
- "shape":"GrantWriteACP",
3687
- "location":"header",
3688
- "locationName":"x-amz-grant-write-acp"
3689
- },
3690
- "Key":{
3691
- "shape":"ObjectKey",
3692
- "location":"uri",
3693
- "locationName":"Key"
3694
- },
3695
- "RequestPayer":{
3696
- "shape":"RequestPayer",
3697
- "location":"header",
3698
- "locationName":"x-amz-request-payer"
3699
- },
3700
- "VersionId":{
3701
- "shape":"ObjectVersionId",
3702
- "location":"querystring",
3703
- "locationName":"versionId"
3704
- }
3705
- },
3706
- "payload":"AccessControlPolicy"
3707
- },
3708
- "PutObjectOutput":{
3709
- "type":"structure",
3710
- "members":{
3711
- "Expiration":{
3712
- "shape":"Expiration",
3713
- "location":"header",
3714
- "locationName":"x-amz-expiration"
3715
- },
3716
- "ETag":{
3717
- "shape":"ETag",
3718
- "location":"header",
3719
- "locationName":"ETag"
3720
- },
3721
- "ServerSideEncryption":{
3722
- "shape":"ServerSideEncryption",
3723
- "location":"header",
3724
- "locationName":"x-amz-server-side-encryption"
3725
- },
3726
- "VersionId":{
3727
- "shape":"ObjectVersionId",
3728
- "location":"header",
3729
- "locationName":"x-amz-version-id"
3730
- },
3731
- "SSECustomerAlgorithm":{
3732
- "shape":"SSECustomerAlgorithm",
3733
- "location":"header",
3734
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
3735
- },
3736
- "SSECustomerKeyMD5":{
3737
- "shape":"SSECustomerKeyMD5",
3738
- "location":"header",
3739
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
3740
- },
3741
- "SSEKMSKeyId":{
3742
- "shape":"SSEKMSKeyId",
3743
- "location":"header",
3744
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
3745
- },
3746
- "RequestCharged":{
3747
- "shape":"RequestCharged",
3748
- "location":"header",
3749
- "locationName":"x-amz-request-charged"
3750
- }
3751
- }
3752
- },
3753
- "PutObjectRequest":{
3754
- "type":"structure",
3755
- "required":[
3756
- "Bucket",
3757
- "Key"
3758
- ],
3759
- "members":{
3760
- "ACL":{
3761
- "shape":"ObjectCannedACL",
3762
- "location":"header",
3763
- "locationName":"x-amz-acl"
3764
- },
3765
- "Body":{
3766
- "shape":"Body",
3767
- "streaming":true
3768
- },
3769
- "Bucket":{
3770
- "shape":"BucketName",
3771
- "location":"uri",
3772
- "locationName":"Bucket"
3773
- },
3774
- "CacheControl":{
3775
- "shape":"CacheControl",
3776
- "location":"header",
3777
- "locationName":"Cache-Control"
3778
- },
3779
- "ContentDisposition":{
3780
- "shape":"ContentDisposition",
3781
- "location":"header",
3782
- "locationName":"Content-Disposition"
3783
- },
3784
- "ContentEncoding":{
3785
- "shape":"ContentEncoding",
3786
- "location":"header",
3787
- "locationName":"Content-Encoding"
3788
- },
3789
- "ContentLanguage":{
3790
- "shape":"ContentLanguage",
3791
- "location":"header",
3792
- "locationName":"Content-Language"
3793
- },
3794
- "ContentLength":{
3795
- "shape":"ContentLength",
3796
- "location":"header",
3797
- "locationName":"Content-Length"
3798
- },
3799
- "ContentMD5":{
3800
- "shape":"ContentMD5",
3801
- "location":"header",
3802
- "locationName":"Content-MD5"
3803
- },
3804
- "ContentType":{
3805
- "shape":"ContentType",
3806
- "location":"header",
3807
- "locationName":"Content-Type"
3808
- },
3809
- "Expires":{
3810
- "shape":"Expires",
3811
- "location":"header",
3812
- "locationName":"Expires"
3813
- },
3814
- "GrantFullControl":{
3815
- "shape":"GrantFullControl",
3816
- "location":"header",
3817
- "locationName":"x-amz-grant-full-control"
3818
- },
3819
- "GrantRead":{
3820
- "shape":"GrantRead",
3821
- "location":"header",
3822
- "locationName":"x-amz-grant-read"
3823
- },
3824
- "GrantReadACP":{
3825
- "shape":"GrantReadACP",
3826
- "location":"header",
3827
- "locationName":"x-amz-grant-read-acp"
3828
- },
3829
- "GrantWriteACP":{
3830
- "shape":"GrantWriteACP",
3831
- "location":"header",
3832
- "locationName":"x-amz-grant-write-acp"
3833
- },
3834
- "Key":{
3835
- "shape":"ObjectKey",
3836
- "location":"uri",
3837
- "locationName":"Key"
3838
- },
3839
- "Metadata":{
3840
- "shape":"Metadata",
3841
- "location":"headers",
3842
- "locationName":"x-amz-meta-"
3843
- },
3844
- "ServerSideEncryption":{
3845
- "shape":"ServerSideEncryption",
3846
- "location":"header",
3847
- "locationName":"x-amz-server-side-encryption"
3848
- },
3849
- "StorageClass":{
3850
- "shape":"StorageClass",
3851
- "location":"header",
3852
- "locationName":"x-amz-storage-class"
3853
- },
3854
- "WebsiteRedirectLocation":{
3855
- "shape":"WebsiteRedirectLocation",
3856
- "location":"header",
3857
- "locationName":"x-amz-website-redirect-location"
3858
- },
3859
- "SSECustomerAlgorithm":{
3860
- "shape":"SSECustomerAlgorithm",
3861
- "location":"header",
3862
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
3863
- },
3864
- "SSECustomerKey":{
3865
- "shape":"SSECustomerKey",
3866
- "location":"header",
3867
- "locationName":"x-amz-server-side-encryption-customer-key"
3868
- },
3869
- "SSECustomerKeyMD5":{
3870
- "shape":"SSECustomerKeyMD5",
3871
- "location":"header",
3872
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
3873
- },
3874
- "SSEKMSKeyId":{
3875
- "shape":"SSEKMSKeyId",
3876
- "location":"header",
3877
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
3878
- },
3879
- "RequestPayer":{
3880
- "shape":"RequestPayer",
3881
- "location":"header",
3882
- "locationName":"x-amz-request-payer"
3883
- }
3884
- },
3885
- "payload":"Body"
3886
- },
3887
- "QueueArn":{"type":"string"},
3888
- "QueueConfiguration":{
3889
- "type":"structure",
3890
- "required":[
3891
- "QueueArn",
3892
- "Events"
3893
- ],
3894
- "members":{
3895
- "Id":{"shape":"NotificationId"},
3896
- "QueueArn":{
3897
- "shape":"QueueArn",
3898
- "locationName":"Queue"
3899
- },
3900
- "Events":{
3901
- "shape":"EventList",
3902
- "locationName":"Event"
3903
- },
3904
- "Filter":{"shape":"NotificationConfigurationFilter"}
3905
- }
3906
- },
3907
- "QueueConfigurationDeprecated":{
3908
- "type":"structure",
3909
- "members":{
3910
- "Id":{"shape":"NotificationId"},
3911
- "Event":{
3912
- "shape":"Event",
3913
- "deprecated":true
3914
- },
3915
- "Events":{
3916
- "shape":"EventList",
3917
- "locationName":"Event"
3918
- },
3919
- "Queue":{"shape":"QueueArn"}
3920
- }
3921
- },
3922
- "QueueConfigurationList":{
3923
- "type":"list",
3924
- "member":{"shape":"QueueConfiguration"},
3925
- "flattened":true
3926
- },
3927
- "Quiet":{"type":"boolean"},
3928
- "Range":{"type":"string"},
3929
- "Redirect":{
3930
- "type":"structure",
3931
- "members":{
3932
- "HostName":{"shape":"HostName"},
3933
- "HttpRedirectCode":{"shape":"HttpRedirectCode"},
3934
- "Protocol":{"shape":"Protocol"},
3935
- "ReplaceKeyPrefixWith":{"shape":"ReplaceKeyPrefixWith"},
3936
- "ReplaceKeyWith":{"shape":"ReplaceKeyWith"}
3937
- }
3938
- },
3939
- "RedirectAllRequestsTo":{
3940
- "type":"structure",
3941
- "required":["HostName"],
3942
- "members":{
3943
- "HostName":{"shape":"HostName"},
3944
- "Protocol":{"shape":"Protocol"}
3945
- }
3946
- },
3947
- "ReplaceKeyPrefixWith":{"type":"string"},
3948
- "ReplaceKeyWith":{"type":"string"},
3949
- "ReplicationConfiguration":{
3950
- "type":"structure",
3951
- "required":[
3952
- "Role",
3953
- "Rules"
3954
- ],
3955
- "members":{
3956
- "Role":{"shape":"Role"},
3957
- "Rules":{
3958
- "shape":"ReplicationRules",
3959
- "locationName":"Rule"
3960
- }
3961
- }
3962
- },
3963
- "ReplicationRule":{
3964
- "type":"structure",
3965
- "required":[
3966
- "Prefix",
3967
- "Status",
3968
- "Destination"
3969
- ],
3970
- "members":{
3971
- "ID":{"shape":"ID"},
3972
- "Prefix":{"shape":"Prefix"},
3973
- "Status":{"shape":"ReplicationRuleStatus"},
3974
- "Destination":{"shape":"Destination"}
3975
- }
3976
- },
3977
- "ReplicationRuleStatus":{
3978
- "type":"string",
3979
- "enum":[
3980
- "Enabled",
3981
- "Disabled"
3982
- ]
3983
- },
3984
- "ReplicationRules":{
3985
- "type":"list",
3986
- "member":{"shape":"ReplicationRule"},
3987
- "flattened":true
3988
- },
3989
- "ReplicationStatus":{
3990
- "type":"string",
3991
- "enum":[
3992
- "COMPLETE",
3993
- "PENDING",
3994
- "FAILED",
3995
- "REPLICA"
3996
- ]
3997
- },
3998
- "RequestCharged":{
3999
- "type":"string",
4000
- "enum":["requester"]
4001
- },
4002
- "RequestPayer":{
4003
- "type":"string",
4004
- "enum":["requester"]
4005
- },
4006
- "RequestPaymentConfiguration":{
4007
- "type":"structure",
4008
- "required":["Payer"],
4009
- "members":{
4010
- "Payer":{"shape":"Payer"}
4011
- }
4012
- },
4013
- "ResponseCacheControl":{"type":"string"},
4014
- "ResponseContentDisposition":{"type":"string"},
4015
- "ResponseContentEncoding":{"type":"string"},
4016
- "ResponseContentLanguage":{"type":"string"},
4017
- "ResponseContentType":{"type":"string"},
4018
- "ResponseExpires":{"type":"timestamp"},
4019
- "Restore":{"type":"string"},
4020
- "RestoreObjectOutput":{
4021
- "type":"structure",
4022
- "members":{
4023
- "RequestCharged":{
4024
- "shape":"RequestCharged",
4025
- "location":"header",
4026
- "locationName":"x-amz-request-charged"
4027
- }
4028
- }
4029
- },
4030
- "RestoreObjectRequest":{
4031
- "type":"structure",
4032
- "required":[
4033
- "Bucket",
4034
- "Key"
4035
- ],
4036
- "members":{
4037
- "Bucket":{
4038
- "shape":"BucketName",
4039
- "location":"uri",
4040
- "locationName":"Bucket"
4041
- },
4042
- "Key":{
4043
- "shape":"ObjectKey",
4044
- "location":"uri",
4045
- "locationName":"Key"
4046
- },
4047
- "VersionId":{
4048
- "shape":"ObjectVersionId",
4049
- "location":"querystring",
4050
- "locationName":"versionId"
4051
- },
4052
- "RestoreRequest":{
4053
- "shape":"RestoreRequest",
4054
- "locationName":"RestoreRequest",
4055
- "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
4056
- },
4057
- "RequestPayer":{
4058
- "shape":"RequestPayer",
4059
- "location":"header",
4060
- "locationName":"x-amz-request-payer"
4061
- }
4062
- },
4063
- "payload":"RestoreRequest"
4064
- },
4065
- "RestoreRequest":{
4066
- "type":"structure",
4067
- "required":["Days"],
4068
- "members":{
4069
- "Days":{"shape":"Days"}
4070
- }
4071
- },
4072
- "Role":{"type":"string"},
4073
- "RoutingRule":{
4074
- "type":"structure",
4075
- "required":["Redirect"],
4076
- "members":{
4077
- "Condition":{"shape":"Condition"},
4078
- "Redirect":{"shape":"Redirect"}
4079
- }
4080
- },
4081
- "RoutingRules":{
4082
- "type":"list",
4083
- "member":{
4084
- "shape":"RoutingRule",
4085
- "locationName":"RoutingRule"
4086
- }
4087
- },
4088
- "Rule":{
4089
- "type":"structure",
4090
- "required":[
4091
- "Prefix",
4092
- "Status"
4093
- ],
4094
- "members":{
4095
- "Expiration":{"shape":"LifecycleExpiration"},
4096
- "ID":{"shape":"ID"},
4097
- "Prefix":{"shape":"Prefix"},
4098
- "Status":{"shape":"ExpirationStatus"},
4099
- "Transition":{"shape":"Transition"},
4100
- "NoncurrentVersionTransition":{"shape":"NoncurrentVersionTransition"},
4101
- "NoncurrentVersionExpiration":{"shape":"NoncurrentVersionExpiration"},
4102
- "AbortIncompleteMultipartUpload":{"shape":"AbortIncompleteMultipartUpload"}
4103
- }
4104
- },
4105
- "Rules":{
4106
- "type":"list",
4107
- "member":{"shape":"Rule"},
4108
- "flattened":true
4109
- },
4110
- "S3KeyFilter":{
4111
- "type":"structure",
4112
- "members":{
4113
- "FilterRules":{
4114
- "shape":"FilterRuleList",
4115
- "locationName":"FilterRule"
4116
- }
4117
- }
4118
- },
4119
- "SSECustomerAlgorithm":{"type":"string"},
4120
- "SSECustomerKey":{
4121
- "type":"string",
4122
- "sensitive":true
4123
- },
4124
- "SSECustomerKeyMD5":{"type":"string"},
4125
- "SSEKMSKeyId":{
4126
- "type":"string",
4127
- "sensitive":true
4128
- },
4129
- "ServerSideEncryption":{
4130
- "type":"string",
4131
- "enum":[
4132
- "AES256",
4133
- "aws:kms"
4134
- ]
4135
- },
4136
- "Size":{"type":"integer"},
4137
- "StartAfter":{"type":"string"},
4138
- "StorageClass":{
4139
- "type":"string",
4140
- "enum":[
4141
- "STANDARD",
4142
- "REDUCED_REDUNDANCY",
4143
- "STANDARD_IA"
4144
- ]
4145
- },
4146
- "Suffix":{"type":"string"},
4147
- "Tag":{
4148
- "type":"structure",
4149
- "required":[
4150
- "Key",
4151
- "Value"
4152
- ],
4153
- "members":{
4154
- "Key":{"shape":"ObjectKey"},
4155
- "Value":{"shape":"Value"}
4156
- }
4157
- },
4158
- "TagSet":{
4159
- "type":"list",
4160
- "member":{
4161
- "shape":"Tag",
4162
- "locationName":"Tag"
4163
- }
4164
- },
4165
- "Tagging":{
4166
- "type":"structure",
4167
- "required":["TagSet"],
4168
- "members":{
4169
- "TagSet":{"shape":"TagSet"}
4170
- }
4171
- },
4172
- "TargetBucket":{"type":"string"},
4173
- "TargetGrant":{
4174
- "type":"structure",
4175
- "members":{
4176
- "Grantee":{"shape":"Grantee"},
4177
- "Permission":{"shape":"BucketLogsPermission"}
4178
- }
4179
- },
4180
- "TargetGrants":{
4181
- "type":"list",
4182
- "member":{
4183
- "shape":"TargetGrant",
4184
- "locationName":"Grant"
4185
- }
4186
- },
4187
- "TargetPrefix":{"type":"string"},
4188
- "Token":{"type":"string"},
4189
- "TopicArn":{"type":"string"},
4190
- "TopicConfiguration":{
4191
- "type":"structure",
4192
- "required":[
4193
- "TopicArn",
4194
- "Events"
4195
- ],
4196
- "members":{
4197
- "Id":{"shape":"NotificationId"},
4198
- "TopicArn":{
4199
- "shape":"TopicArn",
4200
- "locationName":"Topic"
4201
- },
4202
- "Events":{
4203
- "shape":"EventList",
4204
- "locationName":"Event"
4205
- },
4206
- "Filter":{"shape":"NotificationConfigurationFilter"}
4207
- }
4208
- },
4209
- "TopicConfigurationDeprecated":{
4210
- "type":"structure",
4211
- "members":{
4212
- "Id":{"shape":"NotificationId"},
4213
- "Events":{
4214
- "shape":"EventList",
4215
- "locationName":"Event"
4216
- },
4217
- "Event":{
4218
- "shape":"Event",
4219
- "deprecated":true
4220
- },
4221
- "Topic":{"shape":"TopicArn"}
4222
- }
4223
- },
4224
- "TopicConfigurationList":{
4225
- "type":"list",
4226
- "member":{"shape":"TopicConfiguration"},
4227
- "flattened":true
4228
- },
4229
- "Transition":{
4230
- "type":"structure",
4231
- "members":{
4232
- "Date":{"shape":"Date"},
4233
- "Days":{"shape":"Days"},
4234
- "StorageClass":{"shape":"TransitionStorageClass"}
4235
- }
4236
- },
4237
- "TransitionList":{
4238
- "type":"list",
4239
- "member":{"shape":"Transition"},
4240
- "flattened":true
4241
- },
4242
- "TransitionStorageClass":{
4243
- "type":"string",
4244
- "enum":[
4245
- "GLACIER",
4246
- "STANDARD_IA"
4247
- ]
4248
- },
4249
- "Type":{
4250
- "type":"string",
4251
- "enum":[
4252
- "CanonicalUser",
4253
- "AmazonCustomerByEmail",
4254
- "Group"
4255
- ]
4256
- },
4257
- "URI":{"type":"string"},
4258
- "UploadIdMarker":{"type":"string"},
4259
- "UploadPartCopyOutput":{
4260
- "type":"structure",
4261
- "members":{
4262
- "CopySourceVersionId":{
4263
- "shape":"CopySourceVersionId",
4264
- "location":"header",
4265
- "locationName":"x-amz-copy-source-version-id"
4266
- },
4267
- "CopyPartResult":{"shape":"CopyPartResult"},
4268
- "ServerSideEncryption":{
4269
- "shape":"ServerSideEncryption",
4270
- "location":"header",
4271
- "locationName":"x-amz-server-side-encryption"
4272
- },
4273
- "SSECustomerAlgorithm":{
4274
- "shape":"SSECustomerAlgorithm",
4275
- "location":"header",
4276
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
4277
- },
4278
- "SSECustomerKeyMD5":{
4279
- "shape":"SSECustomerKeyMD5",
4280
- "location":"header",
4281
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
4282
- },
4283
- "SSEKMSKeyId":{
4284
- "shape":"SSEKMSKeyId",
4285
- "location":"header",
4286
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
4287
- },
4288
- "RequestCharged":{
4289
- "shape":"RequestCharged",
4290
- "location":"header",
4291
- "locationName":"x-amz-request-charged"
4292
- }
4293
- },
4294
- "payload":"CopyPartResult"
4295
- },
4296
- "UploadPartCopyRequest":{
4297
- "type":"structure",
4298
- "required":[
4299
- "Bucket",
4300
- "CopySource",
4301
- "Key",
4302
- "PartNumber",
4303
- "UploadId"
4304
- ],
4305
- "members":{
4306
- "Bucket":{
4307
- "shape":"BucketName",
4308
- "location":"uri",
4309
- "locationName":"Bucket"
4310
- },
4311
- "CopySource":{
4312
- "shape":"CopySource",
4313
- "location":"header",
4314
- "locationName":"x-amz-copy-source"
4315
- },
4316
- "CopySourceIfMatch":{
4317
- "shape":"CopySourceIfMatch",
4318
- "location":"header",
4319
- "locationName":"x-amz-copy-source-if-match"
4320
- },
4321
- "CopySourceIfModifiedSince":{
4322
- "shape":"CopySourceIfModifiedSince",
4323
- "location":"header",
4324
- "locationName":"x-amz-copy-source-if-modified-since"
4325
- },
4326
- "CopySourceIfNoneMatch":{
4327
- "shape":"CopySourceIfNoneMatch",
4328
- "location":"header",
4329
- "locationName":"x-amz-copy-source-if-none-match"
4330
- },
4331
- "CopySourceIfUnmodifiedSince":{
4332
- "shape":"CopySourceIfUnmodifiedSince",
4333
- "location":"header",
4334
- "locationName":"x-amz-copy-source-if-unmodified-since"
4335
- },
4336
- "CopySourceRange":{
4337
- "shape":"CopySourceRange",
4338
- "location":"header",
4339
- "locationName":"x-amz-copy-source-range"
4340
- },
4341
- "Key":{
4342
- "shape":"ObjectKey",
4343
- "location":"uri",
4344
- "locationName":"Key"
4345
- },
4346
- "PartNumber":{
4347
- "shape":"PartNumber",
4348
- "location":"querystring",
4349
- "locationName":"partNumber"
4350
- },
4351
- "UploadId":{
4352
- "shape":"MultipartUploadId",
4353
- "location":"querystring",
4354
- "locationName":"uploadId"
4355
- },
4356
- "SSECustomerAlgorithm":{
4357
- "shape":"SSECustomerAlgorithm",
4358
- "location":"header",
4359
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
4360
- },
4361
- "SSECustomerKey":{
4362
- "shape":"SSECustomerKey",
4363
- "location":"header",
4364
- "locationName":"x-amz-server-side-encryption-customer-key"
4365
- },
4366
- "SSECustomerKeyMD5":{
4367
- "shape":"SSECustomerKeyMD5",
4368
- "location":"header",
4369
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
4370
- },
4371
- "CopySourceSSECustomerAlgorithm":{
4372
- "shape":"CopySourceSSECustomerAlgorithm",
4373
- "location":"header",
4374
- "locationName":"x-amz-copy-source-server-side-encryption-customer-algorithm"
4375
- },
4376
- "CopySourceSSECustomerKey":{
4377
- "shape":"CopySourceSSECustomerKey",
4378
- "location":"header",
4379
- "locationName":"x-amz-copy-source-server-side-encryption-customer-key"
4380
- },
4381
- "CopySourceSSECustomerKeyMD5":{
4382
- "shape":"CopySourceSSECustomerKeyMD5",
4383
- "location":"header",
4384
- "locationName":"x-amz-copy-source-server-side-encryption-customer-key-MD5"
4385
- },
4386
- "RequestPayer":{
4387
- "shape":"RequestPayer",
4388
- "location":"header",
4389
- "locationName":"x-amz-request-payer"
4390
- }
4391
- }
4392
- },
4393
- "UploadPartOutput":{
4394
- "type":"structure",
4395
- "members":{
4396
- "ServerSideEncryption":{
4397
- "shape":"ServerSideEncryption",
4398
- "location":"header",
4399
- "locationName":"x-amz-server-side-encryption"
4400
- },
4401
- "ETag":{
4402
- "shape":"ETag",
4403
- "location":"header",
4404
- "locationName":"ETag"
4405
- },
4406
- "SSECustomerAlgorithm":{
4407
- "shape":"SSECustomerAlgorithm",
4408
- "location":"header",
4409
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
4410
- },
4411
- "SSECustomerKeyMD5":{
4412
- "shape":"SSECustomerKeyMD5",
4413
- "location":"header",
4414
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
4415
- },
4416
- "SSEKMSKeyId":{
4417
- "shape":"SSEKMSKeyId",
4418
- "location":"header",
4419
- "locationName":"x-amz-server-side-encryption-aws-kms-key-id"
4420
- },
4421
- "RequestCharged":{
4422
- "shape":"RequestCharged",
4423
- "location":"header",
4424
- "locationName":"x-amz-request-charged"
4425
- }
4426
- }
4427
- },
4428
- "UploadPartRequest":{
4429
- "type":"structure",
4430
- "required":[
4431
- "Bucket",
4432
- "Key",
4433
- "PartNumber",
4434
- "UploadId"
4435
- ],
4436
- "members":{
4437
- "Body":{
4438
- "shape":"Body",
4439
- "streaming":true
4440
- },
4441
- "Bucket":{
4442
- "shape":"BucketName",
4443
- "location":"uri",
4444
- "locationName":"Bucket"
4445
- },
4446
- "ContentLength":{
4447
- "shape":"ContentLength",
4448
- "location":"header",
4449
- "locationName":"Content-Length"
4450
- },
4451
- "ContentMD5":{
4452
- "shape":"ContentMD5",
4453
- "location":"header",
4454
- "locationName":"Content-MD5"
4455
- },
4456
- "Key":{
4457
- "shape":"ObjectKey",
4458
- "location":"uri",
4459
- "locationName":"Key"
4460
- },
4461
- "PartNumber":{
4462
- "shape":"PartNumber",
4463
- "location":"querystring",
4464
- "locationName":"partNumber"
4465
- },
4466
- "UploadId":{
4467
- "shape":"MultipartUploadId",
4468
- "location":"querystring",
4469
- "locationName":"uploadId"
4470
- },
4471
- "SSECustomerAlgorithm":{
4472
- "shape":"SSECustomerAlgorithm",
4473
- "location":"header",
4474
- "locationName":"x-amz-server-side-encryption-customer-algorithm"
4475
- },
4476
- "SSECustomerKey":{
4477
- "shape":"SSECustomerKey",
4478
- "location":"header",
4479
- "locationName":"x-amz-server-side-encryption-customer-key"
4480
- },
4481
- "SSECustomerKeyMD5":{
4482
- "shape":"SSECustomerKeyMD5",
4483
- "location":"header",
4484
- "locationName":"x-amz-server-side-encryption-customer-key-MD5"
4485
- },
4486
- "RequestPayer":{
4487
- "shape":"RequestPayer",
4488
- "location":"header",
4489
- "locationName":"x-amz-request-payer"
4490
- }
4491
- },
4492
- "payload":"Body"
4493
- },
4494
- "Value":{"type":"string"},
4495
- "VersionIdMarker":{"type":"string"},
4496
- "VersioningConfiguration":{
4497
- "type":"structure",
4498
- "members":{
4499
- "MFADelete":{
4500
- "shape":"MFADelete",
4501
- "locationName":"MfaDelete"
4502
- },
4503
- "Status":{"shape":"BucketVersioningStatus"}
4504
- }
4505
- },
4506
- "WebsiteConfiguration":{
4507
- "type":"structure",
4508
- "members":{
4509
- "ErrorDocument":{"shape":"ErrorDocument"},
4510
- "IndexDocument":{"shape":"IndexDocument"},
4511
- "RedirectAllRequestsTo":{"shape":"RedirectAllRequestsTo"},
4512
- "RoutingRules":{"shape":"RoutingRules"}
4513
- }
4514
- },
4515
- "WebsiteRedirectLocation":{"type":"string"}
4516
- }
4517
- }