aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,2213 +0,0 @@
1
- {
2
- "version": "2.0",
3
- "operations": {
4
- "AbortMultipartUpload": "<p>Aborts a multipart upload.</p> <p>To verify that all parts have been removed, so you don't get charged for the part storage, you should call the List Parts operation and ensure the parts list is empty.</p>",
5
- "CompleteMultipartUpload": "Completes a multipart upload by assembling previously uploaded parts.",
6
- "CopyObject": "Creates a copy of an object that is already stored in Amazon S3.",
7
- "CreateBucket": "Creates a new bucket.",
8
- "CreateMultipartUpload": "<p>Initiates a multipart upload and returns an upload ID.</p> <p><b>Note:</b> After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.</p>",
9
- "DeleteBucket": "Deletes the bucket. All objects (including all object versions and Delete Markers) in the bucket must be deleted before the bucket itself can be deleted.",
10
- "DeleteBucketCors": "Deletes the cors configuration information set for the bucket.",
11
- "DeleteBucketLifecycle": "Deletes the lifecycle configuration from the bucket.",
12
- "DeleteBucketPolicy": "Deletes the policy from the bucket.",
13
- "DeleteBucketReplication": null,
14
- "DeleteBucketTagging": "Deletes the tags from the bucket.",
15
- "DeleteBucketWebsite": "This operation removes the website configuration from the bucket.",
16
- "DeleteObject": "Removes the null version (if there is one) of an object and inserts a delete marker, which becomes the latest version of the object. If there isn't a null version, Amazon S3 does not remove any objects.",
17
- "DeleteObjects": "This operation enables you to delete multiple objects from a bucket using a single HTTP request. You may specify up to 1000 keys.",
18
- "GetBucketAcl": "Gets the access control policy for the bucket.",
19
- "GetBucketCors": "Returns the cors configuration for the bucket.",
20
- "GetBucketLifecycle": "Returns the lifecycle configuration information set on the bucket.",
21
- "GetBucketLocation": "Returns the region the bucket resides in.",
22
- "GetBucketLogging": "Returns the logging status of a bucket and the permissions users have to view and modify that status. To use GET, you must be the bucket owner.",
23
- "GetBucketNotification": "Deprecated, see the GetBucketNotificationConfiguration operation.",
24
- "GetBucketNotificationConfiguration": "Returns the notification configuration of a bucket.",
25
- "GetBucketPolicy": "Returns the policy of a specified bucket.",
26
- "GetBucketReplication": null,
27
- "GetBucketRequestPayment": "Returns the request payment configuration of a bucket.",
28
- "GetBucketTagging": "Returns the tag set associated with the bucket.",
29
- "GetBucketVersioning": "Returns the versioning state of a bucket.",
30
- "GetBucketWebsite": "Returns the website configuration for a bucket.",
31
- "GetObject": "Retrieves objects from Amazon S3.",
32
- "GetObjectAcl": "Returns the access control list (ACL) of an object.",
33
- "GetObjectTorrent": "Return torrent files from a bucket.",
34
- "HeadBucket": "This operation is useful to determine if a bucket exists and you have permission to access it.",
35
- "HeadObject": "The HEAD operation retrieves metadata from an object without returning the object itself. This operation is useful if you're only interested in an object's metadata. To use HEAD, you must have READ access to the object.",
36
- "ListBuckets": "Returns a list of all buckets owned by the authenticated sender of the request.",
37
- "ListMultipartUploads": "This operation lists in-progress multipart uploads.",
38
- "ListObjectVersions": "Returns metadata about all of the versions of objects in a bucket.",
39
- "ListObjects": "Returns some or all (up to 1000) of the objects in a bucket. You can use the request parameters as selection criteria to return a subset of the objects in a bucket.",
40
- "ListParts": "Lists the parts that have been uploaded for a specific multipart upload.",
41
- "PutBucketAcl": "Sets the permissions on a bucket using access control lists (ACL).",
42
- "PutBucketCors": "Sets the cors configuration for a bucket.",
43
- "PutBucketLifecycle": "Sets lifecycle configuration for your bucket. If a lifecycle configuration exists, it replaces it.",
44
- "PutBucketLogging": "Set the logging parameters for a bucket and to specify permissions for who can view and modify the logging parameters. To set the logging status of a bucket, you must be the bucket owner.",
45
- "PutBucketNotification": "Deprecated, see the PutBucketNotificationConfiguraiton operation.",
46
- "PutBucketNotificationConfiguration": "Enables notifications of specified events for a bucket.",
47
- "PutBucketPolicy": "Replaces a policy on a bucket. If the bucket already has a policy, the one in this request completely replaces it.",
48
- "PutBucketReplication": "Creates a new replication configuration (or replaces an existing one, if present).",
49
- "PutBucketRequestPayment": "Sets the request payment configuration for a bucket. By default, the bucket owner pays for downloads from the bucket. This configuration parameter enables the bucket owner (only) to specify that the person requesting the download will be charged for the download. Documentation on requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/RequesterPaysBuckets.html",
50
- "PutBucketTagging": "Sets the tags for a bucket.",
51
- "PutBucketVersioning": "Sets the versioning state of an existing bucket. To set the versioning state, you must be the bucket owner.",
52
- "PutBucketWebsite": "Set the website configuration for a bucket.",
53
- "PutObject": "Adds an object to a bucket.",
54
- "PutObjectAcl": "uses the acl subresource to set the access control list (ACL) permissions for an object that already exists in a bucket",
55
- "RestoreObject": "Restores an archived copy of an object back into Amazon S3",
56
- "UploadPart": "<p>Uploads a part in a multipart upload.</p> <p><b>Note:</b> After you initiate multipart upload and upload one or more parts, you must either complete or abort multipart upload in order to stop getting charged for storage of the uploaded parts. Only after you either complete or abort multipart upload, Amazon S3 frees up the parts storage and stops charging you for the parts storage.</p>",
57
- "UploadPartCopy": "Uploads a part by copying data from an existing object as data source."
58
- },
59
- "service": null,
60
- "shapes": {
61
- "AbortMultipartUploadOutput": {
62
- "base": null,
63
- "refs": {
64
- }
65
- },
66
- "AbortMultipartUploadRequest": {
67
- "base": null,
68
- "refs": {
69
- }
70
- },
71
- "AcceptRanges": {
72
- "base": null,
73
- "refs": {
74
- "GetObjectOutput$AcceptRanges": null,
75
- "HeadObjectOutput$AcceptRanges": null
76
- }
77
- },
78
- "AccessControlPolicy": {
79
- "base": null,
80
- "refs": {
81
- "PutBucketAclRequest$AccessControlPolicy": null,
82
- "PutObjectAclRequest$AccessControlPolicy": null
83
- }
84
- },
85
- "AllowedHeader": {
86
- "base": null,
87
- "refs": {
88
- "AllowedHeaders$member": null
89
- }
90
- },
91
- "AllowedHeaders": {
92
- "base": null,
93
- "refs": {
94
- "CORSRule$AllowedHeaders": "Specifies which headers are allowed in a pre-flight OPTIONS request."
95
- }
96
- },
97
- "AllowedMethod": {
98
- "base": null,
99
- "refs": {
100
- "AllowedMethods$member": null
101
- }
102
- },
103
- "AllowedMethods": {
104
- "base": null,
105
- "refs": {
106
- "CORSRule$AllowedMethods": "Identifies HTTP methods that the domain/origin specified in the rule is allowed to execute."
107
- }
108
- },
109
- "AllowedOrigin": {
110
- "base": null,
111
- "refs": {
112
- "AllowedOrigins$member": null
113
- }
114
- },
115
- "AllowedOrigins": {
116
- "base": null,
117
- "refs": {
118
- "CORSRule$AllowedOrigins": "One or more origins you want customers to be able to access the bucket from."
119
- }
120
- },
121
- "Body": {
122
- "base": null,
123
- "refs": {
124
- "GetObjectOutput$Body": "Object data.",
125
- "GetObjectTorrentOutput$Body": null,
126
- "PutObjectRequest$Body": "Object data.",
127
- "UploadPartRequest$Body": null
128
- }
129
- },
130
- "Bucket": {
131
- "base": null,
132
- "refs": {
133
- "Buckets$member": null
134
- }
135
- },
136
- "BucketAlreadyExists": {
137
- "base": "The requested bucket name is not available. The bucket namespace is shared by all users of the system. Please select a different name and try again.",
138
- "refs": {
139
- }
140
- },
141
- "BucketCannedACL": {
142
- "base": null,
143
- "refs": {
144
- "CreateBucketRequest$ACL": "The canned ACL to apply to the bucket.",
145
- "PutBucketAclRequest$ACL": "The canned ACL to apply to the bucket."
146
- }
147
- },
148
- "BucketLocationConstraint": {
149
- "base": null,
150
- "refs": {
151
- "CreateBucketConfiguration$LocationConstraint": "Specifies the region where the bucket will be created. If you don't specify a region, the bucket will be created in US Standard.",
152
- "GetBucketLocationOutput$LocationConstraint": null
153
- }
154
- },
155
- "BucketLoggingStatus": {
156
- "base": null,
157
- "refs": {
158
- "PutBucketLoggingRequest$BucketLoggingStatus": null
159
- }
160
- },
161
- "BucketLogsPermission": {
162
- "base": null,
163
- "refs": {
164
- "TargetGrant$Permission": "Logging permissions assigned to the Grantee for the bucket."
165
- }
166
- },
167
- "BucketName": {
168
- "base": null,
169
- "refs": {
170
- "AbortMultipartUploadRequest$Bucket": null,
171
- "Bucket$Name": "The name of the bucket.",
172
- "CompleteMultipartUploadOutput$Bucket": null,
173
- "CompleteMultipartUploadRequest$Bucket": null,
174
- "CopyObjectRequest$Bucket": null,
175
- "CreateBucketRequest$Bucket": null,
176
- "CreateMultipartUploadOutput$Bucket": "Name of the bucket to which the multipart upload was initiated.",
177
- "CreateMultipartUploadRequest$Bucket": null,
178
- "DeleteBucketCorsRequest$Bucket": null,
179
- "DeleteBucketLifecycleRequest$Bucket": null,
180
- "DeleteBucketPolicyRequest$Bucket": null,
181
- "DeleteBucketReplicationRequest$Bucket": null,
182
- "DeleteBucketRequest$Bucket": null,
183
- "DeleteBucketTaggingRequest$Bucket": null,
184
- "DeleteBucketWebsiteRequest$Bucket": null,
185
- "DeleteObjectRequest$Bucket": null,
186
- "DeleteObjectsRequest$Bucket": null,
187
- "Destination$Bucket": "Amazon resource name (ARN) of the bucket where you want Amazon S3 to store replicas of the object identified by the rule.",
188
- "GetBucketAclRequest$Bucket": null,
189
- "GetBucketCorsRequest$Bucket": null,
190
- "GetBucketLifecycleRequest$Bucket": null,
191
- "GetBucketLocationRequest$Bucket": null,
192
- "GetBucketLoggingRequest$Bucket": null,
193
- "GetBucketNotificationConfigurationRequest$Bucket": "Name of the buket to get the notification configuration for.",
194
- "GetBucketPolicyRequest$Bucket": null,
195
- "GetBucketReplicationRequest$Bucket": null,
196
- "GetBucketRequestPaymentRequest$Bucket": null,
197
- "GetBucketTaggingRequest$Bucket": null,
198
- "GetBucketVersioningRequest$Bucket": null,
199
- "GetBucketWebsiteRequest$Bucket": null,
200
- "GetObjectAclRequest$Bucket": null,
201
- "GetObjectRequest$Bucket": null,
202
- "GetObjectTorrentRequest$Bucket": null,
203
- "HeadBucketRequest$Bucket": null,
204
- "HeadObjectRequest$Bucket": null,
205
- "ListMultipartUploadsOutput$Bucket": "Name of the bucket to which the multipart upload was initiated.",
206
- "ListMultipartUploadsRequest$Bucket": null,
207
- "ListObjectVersionsOutput$Name": null,
208
- "ListObjectVersionsRequest$Bucket": null,
209
- "ListObjectsOutput$Name": null,
210
- "ListObjectsRequest$Bucket": null,
211
- "ListPartsOutput$Bucket": "Name of the bucket to which the multipart upload was initiated.",
212
- "ListPartsRequest$Bucket": null,
213
- "PutBucketAclRequest$Bucket": null,
214
- "PutBucketCorsRequest$Bucket": null,
215
- "PutBucketLifecycleRequest$Bucket": null,
216
- "PutBucketLoggingRequest$Bucket": null,
217
- "PutBucketNotificationConfigurationRequest$Bucket": null,
218
- "PutBucketNotificationRequest$Bucket": null,
219
- "PutBucketPolicyRequest$Bucket": null,
220
- "PutBucketReplicationRequest$Bucket": null,
221
- "PutBucketRequestPaymentRequest$Bucket": null,
222
- "PutBucketTaggingRequest$Bucket": null,
223
- "PutBucketVersioningRequest$Bucket": null,
224
- "PutBucketWebsiteRequest$Bucket": null,
225
- "PutObjectAclRequest$Bucket": null,
226
- "PutObjectRequest$Bucket": null,
227
- "RestoreObjectRequest$Bucket": null,
228
- "UploadPartCopyRequest$Bucket": null,
229
- "UploadPartRequest$Bucket": null
230
- }
231
- },
232
- "BucketVersioningStatus": {
233
- "base": null,
234
- "refs": {
235
- "GetBucketVersioningOutput$Status": "The versioning state of the bucket.",
236
- "VersioningConfiguration$Status": "The versioning state of the bucket."
237
- }
238
- },
239
- "Buckets": {
240
- "base": null,
241
- "refs": {
242
- "ListBucketsOutput$Buckets": null
243
- }
244
- },
245
- "CORSConfiguration": {
246
- "base": null,
247
- "refs": {
248
- "PutBucketCorsRequest$CORSConfiguration": null
249
- }
250
- },
251
- "CORSRule": {
252
- "base": null,
253
- "refs": {
254
- "CORSRules$member": null
255
- }
256
- },
257
- "CORSRules": {
258
- "base": null,
259
- "refs": {
260
- "CORSConfiguration$CORSRules": null,
261
- "GetBucketCorsOutput$CORSRules": null
262
- }
263
- },
264
- "CacheControl": {
265
- "base": null,
266
- "refs": {
267
- "CopyObjectRequest$CacheControl": "Specifies caching behavior along the request/reply chain.",
268
- "CreateMultipartUploadRequest$CacheControl": "Specifies caching behavior along the request/reply chain.",
269
- "GetObjectOutput$CacheControl": "Specifies caching behavior along the request/reply chain.",
270
- "HeadObjectOutput$CacheControl": "Specifies caching behavior along the request/reply chain.",
271
- "PutObjectRequest$CacheControl": "Specifies caching behavior along the request/reply chain."
272
- }
273
- },
274
- "CloudFunction": {
275
- "base": null,
276
- "refs": {
277
- "CloudFunctionConfiguration$CloudFunction": null
278
- }
279
- },
280
- "CloudFunctionConfiguration": {
281
- "base": null,
282
- "refs": {
283
- "NotificationConfigurationDeprecated$CloudFunctionConfiguration": null
284
- }
285
- },
286
- "CloudFunctionInvocationRole": {
287
- "base": null,
288
- "refs": {
289
- "CloudFunctionConfiguration$InvocationRole": null
290
- }
291
- },
292
- "Code": {
293
- "base": null,
294
- "refs": {
295
- "Error$Code": null
296
- }
297
- },
298
- "CommonPrefix": {
299
- "base": null,
300
- "refs": {
301
- "CommonPrefixList$member": null
302
- }
303
- },
304
- "CommonPrefixList": {
305
- "base": null,
306
- "refs": {
307
- "ListMultipartUploadsOutput$CommonPrefixes": null,
308
- "ListObjectVersionsOutput$CommonPrefixes": null,
309
- "ListObjectsOutput$CommonPrefixes": null
310
- }
311
- },
312
- "CompleteMultipartUploadOutput": {
313
- "base": null,
314
- "refs": {
315
- }
316
- },
317
- "CompleteMultipartUploadRequest": {
318
- "base": null,
319
- "refs": {
320
- }
321
- },
322
- "CompletedMultipartUpload": {
323
- "base": null,
324
- "refs": {
325
- "CompleteMultipartUploadRequest$MultipartUpload": null
326
- }
327
- },
328
- "CompletedPart": {
329
- "base": null,
330
- "refs": {
331
- "CompletedPartList$member": null
332
- }
333
- },
334
- "CompletedPartList": {
335
- "base": null,
336
- "refs": {
337
- "CompletedMultipartUpload$Parts": null
338
- }
339
- },
340
- "Condition": {
341
- "base": null,
342
- "refs": {
343
- "RoutingRule$Condition": "A container for describing a condition that must be met for the specified redirect to apply. For example, 1. If request is for pages in the /docs folder, redirect to the /documents folder. 2. If request results in HTTP error 4xx, redirect request to another host where you might process the error."
344
- }
345
- },
346
- "ContentDisposition": {
347
- "base": null,
348
- "refs": {
349
- "CopyObjectRequest$ContentDisposition": "Specifies presentational information for the object.",
350
- "CreateMultipartUploadRequest$ContentDisposition": "Specifies presentational information for the object.",
351
- "GetObjectOutput$ContentDisposition": "Specifies presentational information for the object.",
352
- "HeadObjectOutput$ContentDisposition": "Specifies presentational information for the object.",
353
- "PutObjectRequest$ContentDisposition": "Specifies presentational information for the object."
354
- }
355
- },
356
- "ContentEncoding": {
357
- "base": null,
358
- "refs": {
359
- "CopyObjectRequest$ContentEncoding": "Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.",
360
- "CreateMultipartUploadRequest$ContentEncoding": "Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.",
361
- "GetObjectOutput$ContentEncoding": "Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.",
362
- "HeadObjectOutput$ContentEncoding": "Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field.",
363
- "PutObjectRequest$ContentEncoding": "Specifies what content encodings have been applied to the object and thus what decoding mechanisms must be applied to obtain the media-type referenced by the Content-Type header field."
364
- }
365
- },
366
- "ContentLanguage": {
367
- "base": null,
368
- "refs": {
369
- "CopyObjectRequest$ContentLanguage": "The language the content is in.",
370
- "CreateMultipartUploadRequest$ContentLanguage": "The language the content is in.",
371
- "GetObjectOutput$ContentLanguage": "The language the content is in.",
372
- "HeadObjectOutput$ContentLanguage": "The language the content is in.",
373
- "PutObjectRequest$ContentLanguage": "The language the content is in."
374
- }
375
- },
376
- "ContentLength": {
377
- "base": null,
378
- "refs": {
379
- "GetObjectOutput$ContentLength": "Size of the body in bytes.",
380
- "HeadObjectOutput$ContentLength": "Size of the body in bytes.",
381
- "PutObjectRequest$ContentLength": "Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically.",
382
- "UploadPartRequest$ContentLength": "Size of the body in bytes. This parameter is useful when the size of the body cannot be determined automatically."
383
- }
384
- },
385
- "ContentMD5": {
386
- "base": null,
387
- "refs": {
388
- "PutBucketAclRequest$ContentMD5": null,
389
- "PutBucketCorsRequest$ContentMD5": null,
390
- "PutBucketLifecycleRequest$ContentMD5": null,
391
- "PutBucketLoggingRequest$ContentMD5": null,
392
- "PutBucketNotificationRequest$ContentMD5": null,
393
- "PutBucketPolicyRequest$ContentMD5": null,
394
- "PutBucketReplicationRequest$ContentMD5": null,
395
- "PutBucketRequestPaymentRequest$ContentMD5": null,
396
- "PutBucketTaggingRequest$ContentMD5": null,
397
- "PutBucketVersioningRequest$ContentMD5": null,
398
- "PutBucketWebsiteRequest$ContentMD5": null,
399
- "PutObjectAclRequest$ContentMD5": null,
400
- "PutObjectRequest$ContentMD5": null,
401
- "UploadPartRequest$ContentMD5": null
402
- }
403
- },
404
- "ContentType": {
405
- "base": null,
406
- "refs": {
407
- "CopyObjectRequest$ContentType": "A standard MIME type describing the format of the object data.",
408
- "CreateMultipartUploadRequest$ContentType": "A standard MIME type describing the format of the object data.",
409
- "GetObjectOutput$ContentType": "A standard MIME type describing the format of the object data.",
410
- "HeadObjectOutput$ContentType": "A standard MIME type describing the format of the object data.",
411
- "PutObjectRequest$ContentType": "A standard MIME type describing the format of the object data."
412
- }
413
- },
414
- "CopyObjectOutput": {
415
- "base": null,
416
- "refs": {
417
- }
418
- },
419
- "CopyObjectRequest": {
420
- "base": null,
421
- "refs": {
422
- }
423
- },
424
- "CopyObjectResult": {
425
- "base": null,
426
- "refs": {
427
- "CopyObjectOutput$CopyObjectResult": null
428
- }
429
- },
430
- "CopyPartResult": {
431
- "base": null,
432
- "refs": {
433
- "UploadPartCopyOutput$CopyPartResult": null
434
- }
435
- },
436
- "CopySource": {
437
- "base": null,
438
- "refs": {
439
- "CopyObjectRequest$CopySource": "The name of the source bucket and key name of the source object, separated by a slash (/). Must be URL-encoded.",
440
- "UploadPartCopyRequest$CopySource": "The name of the source bucket and key name of the source object, separated by a slash (/). Must be URL-encoded."
441
- }
442
- },
443
- "CopySourceIfMatch": {
444
- "base": null,
445
- "refs": {
446
- "CopyObjectRequest$CopySourceIfMatch": "Copies the object if its entity tag (ETag) matches the specified tag.",
447
- "UploadPartCopyRequest$CopySourceIfMatch": "Copies the object if its entity tag (ETag) matches the specified tag."
448
- }
449
- },
450
- "CopySourceIfModifiedSince": {
451
- "base": null,
452
- "refs": {
453
- "CopyObjectRequest$CopySourceIfModifiedSince": "Copies the object if it has been modified since the specified time.",
454
- "UploadPartCopyRequest$CopySourceIfModifiedSince": "Copies the object if it has been modified since the specified time."
455
- }
456
- },
457
- "CopySourceIfNoneMatch": {
458
- "base": null,
459
- "refs": {
460
- "CopyObjectRequest$CopySourceIfNoneMatch": "Copies the object if its entity tag (ETag) is different than the specified ETag.",
461
- "UploadPartCopyRequest$CopySourceIfNoneMatch": "Copies the object if its entity tag (ETag) is different than the specified ETag."
462
- }
463
- },
464
- "CopySourceIfUnmodifiedSince": {
465
- "base": null,
466
- "refs": {
467
- "CopyObjectRequest$CopySourceIfUnmodifiedSince": "Copies the object if it hasn't been modified since the specified time.",
468
- "UploadPartCopyRequest$CopySourceIfUnmodifiedSince": "Copies the object if it hasn't been modified since the specified time."
469
- }
470
- },
471
- "CopySourceRange": {
472
- "base": null,
473
- "refs": {
474
- "UploadPartCopyRequest$CopySourceRange": "The range of bytes to copy from the source object. The range value must use the form bytes=first-last, where the first and last are the zero-based byte offsets to copy. For example, bytes=0-9 indicates that you want to copy the first ten bytes of the source. You can copy a range only if the source object is greater than 5 GB."
475
- }
476
- },
477
- "CopySourceSSECustomerAlgorithm": {
478
- "base": null,
479
- "refs": {
480
- "CopyObjectRequest$CopySourceSSECustomerAlgorithm": "Specifies the algorithm to use when decrypting the source object (e.g., AES256).",
481
- "UploadPartCopyRequest$CopySourceSSECustomerAlgorithm": "Specifies the algorithm to use when decrypting the source object (e.g., AES256)."
482
- }
483
- },
484
- "CopySourceSSECustomerKey": {
485
- "base": null,
486
- "refs": {
487
- "CopyObjectRequest$CopySourceSSECustomerKey": "Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be one that was used when the source object was created.",
488
- "UploadPartCopyRequest$CopySourceSSECustomerKey": "Specifies the customer-provided encryption key for Amazon S3 to use to decrypt the source object. The encryption key provided in this header must be one that was used when the source object was created."
489
- }
490
- },
491
- "CopySourceSSECustomerKeyMD5": {
492
- "base": null,
493
- "refs": {
494
- "CopyObjectRequest$CopySourceSSECustomerKeyMD5": "Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.",
495
- "UploadPartCopyRequest$CopySourceSSECustomerKeyMD5": "Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error."
496
- }
497
- },
498
- "CopySourceVersionId": {
499
- "base": null,
500
- "refs": {
501
- "CopyObjectOutput$CopySourceVersionId": null,
502
- "UploadPartCopyOutput$CopySourceVersionId": "The version of the source object that was copied, if you have enabled versioning on the source bucket."
503
- }
504
- },
505
- "CreateBucketConfiguration": {
506
- "base": null,
507
- "refs": {
508
- "CreateBucketRequest$CreateBucketConfiguration": null
509
- }
510
- },
511
- "CreateBucketOutput": {
512
- "base": null,
513
- "refs": {
514
- }
515
- },
516
- "CreateBucketRequest": {
517
- "base": null,
518
- "refs": {
519
- }
520
- },
521
- "CreateMultipartUploadOutput": {
522
- "base": null,
523
- "refs": {
524
- }
525
- },
526
- "CreateMultipartUploadRequest": {
527
- "base": null,
528
- "refs": {
529
- }
530
- },
531
- "CreationDate": {
532
- "base": null,
533
- "refs": {
534
- "Bucket$CreationDate": "Date the bucket was created."
535
- }
536
- },
537
- "Date": {
538
- "base": null,
539
- "refs": {
540
- "LifecycleExpiration$Date": "Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format.",
541
- "Transition$Date": "Indicates at what date the object is to be moved or deleted. Should be in GMT ISO 8601 Format."
542
- }
543
- },
544
- "Days": {
545
- "base": null,
546
- "refs": {
547
- "LifecycleExpiration$Days": "Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer.",
548
- "NoncurrentVersionExpiration$NoncurrentDays": "Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see <a href=\"/AmazonS3/latest/dev/s3-access-control.html\">How Amazon S3 Calculates When an Object Became Noncurrent</a> in the Amazon Simple Storage Service Developer Guide.",
549
- "NoncurrentVersionTransition$NoncurrentDays": "Specifies the number of days an object is noncurrent before Amazon S3 can perform the associated action. For information about the noncurrent days calculations, see <a href=\"/AmazonS3/latest/dev/s3-access-control.html\">How Amazon S3 Calculates When an Object Became Noncurrent</a> in the Amazon Simple Storage Service Developer Guide.",
550
- "RestoreRequest$Days": "Lifetime of the active copy in days",
551
- "Transition$Days": "Indicates the lifetime, in days, of the objects that are subject to the rule. The value must be a non-zero positive integer."
552
- }
553
- },
554
- "Delete": {
555
- "base": null,
556
- "refs": {
557
- "DeleteObjectsRequest$Delete": null
558
- }
559
- },
560
- "DeleteBucketCorsRequest": {
561
- "base": null,
562
- "refs": {
563
- }
564
- },
565
- "DeleteBucketLifecycleRequest": {
566
- "base": null,
567
- "refs": {
568
- }
569
- },
570
- "DeleteBucketPolicyRequest": {
571
- "base": null,
572
- "refs": {
573
- }
574
- },
575
- "DeleteBucketReplicationRequest": {
576
- "base": null,
577
- "refs": {
578
- }
579
- },
580
- "DeleteBucketRequest": {
581
- "base": null,
582
- "refs": {
583
- }
584
- },
585
- "DeleteBucketTaggingRequest": {
586
- "base": null,
587
- "refs": {
588
- }
589
- },
590
- "DeleteBucketWebsiteRequest": {
591
- "base": null,
592
- "refs": {
593
- }
594
- },
595
- "DeleteMarker": {
596
- "base": null,
597
- "refs": {
598
- "DeleteObjectOutput$DeleteMarker": "Specifies whether the versioned object that was permanently deleted was (true) or was not (false) a delete marker.",
599
- "DeletedObject$DeleteMarker": null,
600
- "GetObjectOutput$DeleteMarker": "Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response.",
601
- "HeadObjectOutput$DeleteMarker": "Specifies whether the object retrieved was (true) or was not (false) a Delete Marker. If false, this response header does not appear in the response."
602
- }
603
- },
604
- "DeleteMarkerEntry": {
605
- "base": null,
606
- "refs": {
607
- "DeleteMarkers$member": null
608
- }
609
- },
610
- "DeleteMarkerVersionId": {
611
- "base": null,
612
- "refs": {
613
- "DeletedObject$DeleteMarkerVersionId": null
614
- }
615
- },
616
- "DeleteMarkers": {
617
- "base": null,
618
- "refs": {
619
- "ListObjectVersionsOutput$DeleteMarkers": null
620
- }
621
- },
622
- "DeleteObjectOutput": {
623
- "base": null,
624
- "refs": {
625
- }
626
- },
627
- "DeleteObjectRequest": {
628
- "base": null,
629
- "refs": {
630
- }
631
- },
632
- "DeleteObjectsOutput": {
633
- "base": null,
634
- "refs": {
635
- }
636
- },
637
- "DeleteObjectsRequest": {
638
- "base": null,
639
- "refs": {
640
- }
641
- },
642
- "DeletedObject": {
643
- "base": null,
644
- "refs": {
645
- "DeletedObjects$member": null
646
- }
647
- },
648
- "DeletedObjects": {
649
- "base": null,
650
- "refs": {
651
- "DeleteObjectsOutput$Deleted": null
652
- }
653
- },
654
- "Delimiter": {
655
- "base": null,
656
- "refs": {
657
- "ListMultipartUploadsOutput$Delimiter": null,
658
- "ListMultipartUploadsRequest$Delimiter": "Character you use to group keys.",
659
- "ListObjectVersionsOutput$Delimiter": null,
660
- "ListObjectVersionsRequest$Delimiter": "A delimiter is a character you use to group keys.",
661
- "ListObjectsOutput$Delimiter": null,
662
- "ListObjectsRequest$Delimiter": "A delimiter is a character you use to group keys."
663
- }
664
- },
665
- "Destination": {
666
- "base": null,
667
- "refs": {
668
- "ReplicationRule$Destination": null
669
- }
670
- },
671
- "DisplayName": {
672
- "base": null,
673
- "refs": {
674
- "Grantee$DisplayName": "Screen name of the grantee.",
675
- "Initiator$DisplayName": "Name of the Principal.",
676
- "Owner$DisplayName": null
677
- }
678
- },
679
- "ETag": {
680
- "base": null,
681
- "refs": {
682
- "CompleteMultipartUploadOutput$ETag": "Entity tag of the object.",
683
- "CompletedPart$ETag": "Entity tag returned when the part was uploaded.",
684
- "CopyObjectResult$ETag": null,
685
- "CopyPartResult$ETag": "Entity tag of the object.",
686
- "GetObjectOutput$ETag": "An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL",
687
- "HeadObjectOutput$ETag": "An ETag is an opaque identifier assigned by a web server to a specific version of a resource found at a URL",
688
- "Object$ETag": null,
689
- "ObjectVersion$ETag": null,
690
- "Part$ETag": "Entity tag returned when the part was uploaded.",
691
- "PutObjectOutput$ETag": "Entity tag for the uploaded object.",
692
- "UploadPartOutput$ETag": "Entity tag for the uploaded object."
693
- }
694
- },
695
- "EmailAddress": {
696
- "base": null,
697
- "refs": {
698
- "Grantee$EmailAddress": "Email address of the grantee."
699
- }
700
- },
701
- "EncodingType": {
702
- "base": "Requests Amazon S3 to encode the object keys in the response and specifies the encoding method to use. An object key may contain any Unicode character; however, XML 1.0 parser cannot parse some characters, such as characters with an ASCII value from 0 to 10. For characters that are not supported in XML 1.0, you can add this parameter to request that Amazon S3 encode the keys in the response.",
703
- "refs": {
704
- "ListMultipartUploadsOutput$EncodingType": "Encoding type used by Amazon S3 to encode object keys in the response.",
705
- "ListMultipartUploadsRequest$EncodingType": null,
706
- "ListObjectVersionsOutput$EncodingType": "Encoding type used by Amazon S3 to encode object keys in the response.",
707
- "ListObjectVersionsRequest$EncodingType": null,
708
- "ListObjectsOutput$EncodingType": "Encoding type used by Amazon S3 to encode object keys in the response.",
709
- "ListObjectsRequest$EncodingType": null
710
- }
711
- },
712
- "Error": {
713
- "base": null,
714
- "refs": {
715
- "Errors$member": null
716
- }
717
- },
718
- "ErrorDocument": {
719
- "base": null,
720
- "refs": {
721
- "GetBucketWebsiteOutput$ErrorDocument": null,
722
- "WebsiteConfiguration$ErrorDocument": null
723
- }
724
- },
725
- "Errors": {
726
- "base": null,
727
- "refs": {
728
- "DeleteObjectsOutput$Errors": null
729
- }
730
- },
731
- "Event": {
732
- "base": "Bucket event for which to send notifications.",
733
- "refs": {
734
- "CloudFunctionConfiguration$Event": null,
735
- "EventList$member": null,
736
- "QueueConfigurationDeprecated$Event": null,
737
- "TopicConfigurationDeprecated$Event": "Bucket event for which to send notifications."
738
- }
739
- },
740
- "EventList": {
741
- "base": null,
742
- "refs": {
743
- "CloudFunctionConfiguration$Events": null,
744
- "LambdaFunctionConfiguration$Events": null,
745
- "QueueConfiguration$Events": null,
746
- "QueueConfigurationDeprecated$Events": null,
747
- "TopicConfiguration$Events": null,
748
- "TopicConfigurationDeprecated$Events": null
749
- }
750
- },
751
- "Expiration": {
752
- "base": null,
753
- "refs": {
754
- "CompleteMultipartUploadOutput$Expiration": "If the object expiration is configured, this will contain the expiration date (expiry-date) and rule ID (rule-id). The value of rule-id is URL encoded.",
755
- "CopyObjectOutput$Expiration": "If the object expiration is configured, the response includes this header.",
756
- "GetObjectOutput$Expiration": "If the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.",
757
- "HeadObjectOutput$Expiration": "If the object expiration is configured (see PUT Bucket lifecycle), the response includes this header. It includes the expiry-date and rule-id key value pairs providing object expiration information. The value of the rule-id is URL encoded.",
758
- "PutObjectOutput$Expiration": "If the object expiration is configured, this will contain the expiration date (expiry-date) and rule ID (rule-id). The value of rule-id is URL encoded."
759
- }
760
- },
761
- "ExpirationStatus": {
762
- "base": null,
763
- "refs": {
764
- "Rule$Status": "If 'Enabled', the rule is currently being applied. If 'Disabled', the rule is not currently being applied."
765
- }
766
- },
767
- "Expires": {
768
- "base": null,
769
- "refs": {
770
- "CopyObjectRequest$Expires": "The date and time at which the object is no longer cacheable.",
771
- "CreateMultipartUploadRequest$Expires": "The date and time at which the object is no longer cacheable.",
772
- "GetObjectOutput$Expires": "The date and time at which the object is no longer cacheable.",
773
- "HeadObjectOutput$Expires": "The date and time at which the object is no longer cacheable.",
774
- "PutObjectRequest$Expires": "The date and time at which the object is no longer cacheable."
775
- }
776
- },
777
- "ExposeHeader": {
778
- "base": null,
779
- "refs": {
780
- "ExposeHeaders$member": null
781
- }
782
- },
783
- "ExposeHeaders": {
784
- "base": null,
785
- "refs": {
786
- "CORSRule$ExposeHeaders": "One or more headers in the response that you want customers to be able to access from their applications (for example, from a JavaScript XMLHttpRequest object)."
787
- }
788
- },
789
- "GetBucketAclOutput": {
790
- "base": null,
791
- "refs": {
792
- }
793
- },
794
- "GetBucketAclRequest": {
795
- "base": null,
796
- "refs": {
797
- }
798
- },
799
- "GetBucketCorsOutput": {
800
- "base": null,
801
- "refs": {
802
- }
803
- },
804
- "GetBucketCorsRequest": {
805
- "base": null,
806
- "refs": {
807
- }
808
- },
809
- "GetBucketLifecycleOutput": {
810
- "base": null,
811
- "refs": {
812
- }
813
- },
814
- "GetBucketLifecycleRequest": {
815
- "base": null,
816
- "refs": {
817
- }
818
- },
819
- "GetBucketLocationOutput": {
820
- "base": null,
821
- "refs": {
822
- }
823
- },
824
- "GetBucketLocationRequest": {
825
- "base": null,
826
- "refs": {
827
- }
828
- },
829
- "GetBucketLoggingOutput": {
830
- "base": null,
831
- "refs": {
832
- }
833
- },
834
- "GetBucketLoggingRequest": {
835
- "base": null,
836
- "refs": {
837
- }
838
- },
839
- "GetBucketNotificationConfigurationRequest": {
840
- "base": null,
841
- "refs": {
842
- }
843
- },
844
- "GetBucketPolicyOutput": {
845
- "base": null,
846
- "refs": {
847
- }
848
- },
849
- "GetBucketPolicyRequest": {
850
- "base": null,
851
- "refs": {
852
- }
853
- },
854
- "GetBucketReplicationOutput": {
855
- "base": null,
856
- "refs": {
857
- }
858
- },
859
- "GetBucketReplicationRequest": {
860
- "base": null,
861
- "refs": {
862
- }
863
- },
864
- "GetBucketRequestPaymentOutput": {
865
- "base": null,
866
- "refs": {
867
- }
868
- },
869
- "GetBucketRequestPaymentRequest": {
870
- "base": null,
871
- "refs": {
872
- }
873
- },
874
- "GetBucketTaggingOutput": {
875
- "base": null,
876
- "refs": {
877
- }
878
- },
879
- "GetBucketTaggingRequest": {
880
- "base": null,
881
- "refs": {
882
- }
883
- },
884
- "GetBucketVersioningOutput": {
885
- "base": null,
886
- "refs": {
887
- }
888
- },
889
- "GetBucketVersioningRequest": {
890
- "base": null,
891
- "refs": {
892
- }
893
- },
894
- "GetBucketWebsiteOutput": {
895
- "base": null,
896
- "refs": {
897
- }
898
- },
899
- "GetBucketWebsiteRequest": {
900
- "base": null,
901
- "refs": {
902
- }
903
- },
904
- "GetObjectAclOutput": {
905
- "base": null,
906
- "refs": {
907
- }
908
- },
909
- "GetObjectAclRequest": {
910
- "base": null,
911
- "refs": {
912
- }
913
- },
914
- "GetObjectOutput": {
915
- "base": null,
916
- "refs": {
917
- }
918
- },
919
- "GetObjectRequest": {
920
- "base": null,
921
- "refs": {
922
- }
923
- },
924
- "GetObjectTorrentOutput": {
925
- "base": null,
926
- "refs": {
927
- }
928
- },
929
- "GetObjectTorrentRequest": {
930
- "base": null,
931
- "refs": {
932
- }
933
- },
934
- "Grant": {
935
- "base": null,
936
- "refs": {
937
- "Grants$member": null
938
- }
939
- },
940
- "GrantFullControl": {
941
- "base": null,
942
- "refs": {
943
- "CopyObjectRequest$GrantFullControl": "Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.",
944
- "CreateBucketRequest$GrantFullControl": "Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.",
945
- "CreateMultipartUploadRequest$GrantFullControl": "Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object.",
946
- "PutBucketAclRequest$GrantFullControl": "Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.",
947
- "PutObjectAclRequest$GrantFullControl": "Allows grantee the read, write, read ACP, and write ACP permissions on the bucket.",
948
- "PutObjectRequest$GrantFullControl": "Gives the grantee READ, READ_ACP, and WRITE_ACP permissions on the object."
949
- }
950
- },
951
- "GrantRead": {
952
- "base": null,
953
- "refs": {
954
- "CopyObjectRequest$GrantRead": "Allows grantee to read the object data and its metadata.",
955
- "CreateBucketRequest$GrantRead": "Allows grantee to list the objects in the bucket.",
956
- "CreateMultipartUploadRequest$GrantRead": "Allows grantee to read the object data and its metadata.",
957
- "PutBucketAclRequest$GrantRead": "Allows grantee to list the objects in the bucket.",
958
- "PutObjectAclRequest$GrantRead": "Allows grantee to list the objects in the bucket.",
959
- "PutObjectRequest$GrantRead": "Allows grantee to read the object data and its metadata."
960
- }
961
- },
962
- "GrantReadACP": {
963
- "base": null,
964
- "refs": {
965
- "CopyObjectRequest$GrantReadACP": "Allows grantee to read the object ACL.",
966
- "CreateBucketRequest$GrantReadACP": "Allows grantee to read the bucket ACL.",
967
- "CreateMultipartUploadRequest$GrantReadACP": "Allows grantee to read the object ACL.",
968
- "PutBucketAclRequest$GrantReadACP": "Allows grantee to read the bucket ACL.",
969
- "PutObjectAclRequest$GrantReadACP": "Allows grantee to read the bucket ACL.",
970
- "PutObjectRequest$GrantReadACP": "Allows grantee to read the object ACL."
971
- }
972
- },
973
- "GrantWrite": {
974
- "base": null,
975
- "refs": {
976
- "CreateBucketRequest$GrantWrite": "Allows grantee to create, overwrite, and delete any object in the bucket.",
977
- "PutBucketAclRequest$GrantWrite": "Allows grantee to create, overwrite, and delete any object in the bucket.",
978
- "PutObjectAclRequest$GrantWrite": "Allows grantee to create, overwrite, and delete any object in the bucket."
979
- }
980
- },
981
- "GrantWriteACP": {
982
- "base": null,
983
- "refs": {
984
- "CopyObjectRequest$GrantWriteACP": "Allows grantee to write the ACL for the applicable object.",
985
- "CreateBucketRequest$GrantWriteACP": "Allows grantee to write the ACL for the applicable bucket.",
986
- "CreateMultipartUploadRequest$GrantWriteACP": "Allows grantee to write the ACL for the applicable object.",
987
- "PutBucketAclRequest$GrantWriteACP": "Allows grantee to write the ACL for the applicable bucket.",
988
- "PutObjectAclRequest$GrantWriteACP": "Allows grantee to write the ACL for the applicable bucket.",
989
- "PutObjectRequest$GrantWriteACP": "Allows grantee to write the ACL for the applicable object."
990
- }
991
- },
992
- "Grantee": {
993
- "base": null,
994
- "refs": {
995
- "Grant$Grantee": null,
996
- "TargetGrant$Grantee": null
997
- }
998
- },
999
- "Grants": {
1000
- "base": null,
1001
- "refs": {
1002
- "AccessControlPolicy$Grants": "A list of grants.",
1003
- "GetBucketAclOutput$Grants": "A list of grants.",
1004
- "GetObjectAclOutput$Grants": "A list of grants."
1005
- }
1006
- },
1007
- "HeadBucketRequest": {
1008
- "base": null,
1009
- "refs": {
1010
- }
1011
- },
1012
- "HeadObjectOutput": {
1013
- "base": null,
1014
- "refs": {
1015
- }
1016
- },
1017
- "HeadObjectRequest": {
1018
- "base": null,
1019
- "refs": {
1020
- }
1021
- },
1022
- "HostName": {
1023
- "base": null,
1024
- "refs": {
1025
- "Redirect$HostName": "The host name to use in the redirect request.",
1026
- "RedirectAllRequestsTo$HostName": "Name of the host where requests will be redirected."
1027
- }
1028
- },
1029
- "HttpErrorCodeReturnedEquals": {
1030
- "base": null,
1031
- "refs": {
1032
- "Condition$HttpErrorCodeReturnedEquals": "The HTTP error code when the redirect is applied. In the event of an error, if the error code equals this value, then the specified redirect is applied. Required when parent element Condition is specified and sibling KeyPrefixEquals is not specified. If both are specified, then both must be true for the redirect to be applied."
1033
- }
1034
- },
1035
- "HttpRedirectCode": {
1036
- "base": null,
1037
- "refs": {
1038
- "Redirect$HttpRedirectCode": "The HTTP redirect code to use on the response. Not required if one of the siblings is present."
1039
- }
1040
- },
1041
- "ID": {
1042
- "base": null,
1043
- "refs": {
1044
- "Grantee$ID": "The canonical user ID of the grantee.",
1045
- "Initiator$ID": "If the principal is an AWS account, it provides the Canonical User ID. If the principal is an IAM User, it provides a user ARN value.",
1046
- "Owner$ID": null,
1047
- "ReplicationRule$ID": "Unique identifier for the rule. The value cannot be longer than 255 characters.",
1048
- "Rule$ID": "Unique identifier for the rule. The value cannot be longer than 255 characters."
1049
- }
1050
- },
1051
- "IfMatch": {
1052
- "base": null,
1053
- "refs": {
1054
- "GetObjectRequest$IfMatch": "Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed).",
1055
- "HeadObjectRequest$IfMatch": "Return the object only if its entity tag (ETag) is the same as the one specified, otherwise return a 412 (precondition failed)."
1056
- }
1057
- },
1058
- "IfModifiedSince": {
1059
- "base": null,
1060
- "refs": {
1061
- "GetObjectRequest$IfModifiedSince": "Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified).",
1062
- "HeadObjectRequest$IfModifiedSince": "Return the object only if it has been modified since the specified time, otherwise return a 304 (not modified)."
1063
- }
1064
- },
1065
- "IfNoneMatch": {
1066
- "base": null,
1067
- "refs": {
1068
- "GetObjectRequest$IfNoneMatch": "Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified).",
1069
- "HeadObjectRequest$IfNoneMatch": "Return the object only if its entity tag (ETag) is different from the one specified, otherwise return a 304 (not modified)."
1070
- }
1071
- },
1072
- "IfUnmodifiedSince": {
1073
- "base": null,
1074
- "refs": {
1075
- "GetObjectRequest$IfUnmodifiedSince": "Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed).",
1076
- "HeadObjectRequest$IfUnmodifiedSince": "Return the object only if it has not been modified since the specified time, otherwise return a 412 (precondition failed)."
1077
- }
1078
- },
1079
- "IndexDocument": {
1080
- "base": null,
1081
- "refs": {
1082
- "GetBucketWebsiteOutput$IndexDocument": null,
1083
- "WebsiteConfiguration$IndexDocument": null
1084
- }
1085
- },
1086
- "Initiated": {
1087
- "base": null,
1088
- "refs": {
1089
- "MultipartUpload$Initiated": "Date and time at which the multipart upload was initiated."
1090
- }
1091
- },
1092
- "Initiator": {
1093
- "base": null,
1094
- "refs": {
1095
- "ListPartsOutput$Initiator": "Identifies who initiated the multipart upload.",
1096
- "MultipartUpload$Initiator": "Identifies who initiated the multipart upload."
1097
- }
1098
- },
1099
- "IsLatest": {
1100
- "base": null,
1101
- "refs": {
1102
- "DeleteMarkerEntry$IsLatest": "Specifies whether the object is (true) or is not (false) the latest version of an object.",
1103
- "ObjectVersion$IsLatest": "Specifies whether the object is (true) or is not (false) the latest version of an object."
1104
- }
1105
- },
1106
- "IsTruncated": {
1107
- "base": null,
1108
- "refs": {
1109
- "ListMultipartUploadsOutput$IsTruncated": "Indicates whether the returned list of multipart uploads is truncated. A value of true indicates that the list was truncated. The list can be truncated if the number of multipart uploads exceeds the limit allowed or specified by max uploads.",
1110
- "ListObjectVersionsOutput$IsTruncated": "A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria. If your results were truncated, you can make a follow-up paginated request using the NextKeyMarker and NextVersionIdMarker response parameters as a starting place in another request to return the rest of the results.",
1111
- "ListObjectsOutput$IsTruncated": "A flag that indicates whether or not Amazon S3 returned all of the results that satisfied the search criteria.",
1112
- "ListPartsOutput$IsTruncated": "Indicates whether the returned list of parts is truncated."
1113
- }
1114
- },
1115
- "KeyMarker": {
1116
- "base": null,
1117
- "refs": {
1118
- "ListMultipartUploadsOutput$KeyMarker": "The key at or after which the listing began.",
1119
- "ListMultipartUploadsRequest$KeyMarker": "Together with upload-id-marker, this parameter specifies the multipart upload after which listing should begin.",
1120
- "ListObjectVersionsOutput$KeyMarker": "Marks the last Key returned in a truncated response.",
1121
- "ListObjectVersionsRequest$KeyMarker": "Specifies the key to start with when listing objects in a bucket."
1122
- }
1123
- },
1124
- "KeyPrefixEquals": {
1125
- "base": null,
1126
- "refs": {
1127
- "Condition$KeyPrefixEquals": "The object key name prefix when the redirect is applied. For example, to redirect requests for ExamplePage.html, the key prefix will be ExamplePage.html. To redirect request for all pages with the prefix docs/, the key prefix will be /docs, which identifies all objects in the docs/ folder. Required when the parent element Condition is specified and sibling HttpErrorCodeReturnedEquals is not specified. If both conditions are specified, both must be true for the redirect to be applied."
1128
- }
1129
- },
1130
- "LambdaFunctionArn": {
1131
- "base": null,
1132
- "refs": {
1133
- "LambdaFunctionConfiguration$LambdaFunctionArn": "Lambda cloud function ARN that Amazon S3 can invoke when it detects events of the specified type."
1134
- }
1135
- },
1136
- "LambdaFunctionConfiguration": {
1137
- "base": "Container for specifying the AWS Lambda notification configuration.",
1138
- "refs": {
1139
- "LambdaFunctionConfigurationList$member": null
1140
- }
1141
- },
1142
- "LambdaFunctionConfigurationList": {
1143
- "base": null,
1144
- "refs": {
1145
- "NotificationConfiguration$LambdaFunctionConfigurations": null
1146
- }
1147
- },
1148
- "LastModified": {
1149
- "base": null,
1150
- "refs": {
1151
- "CopyObjectResult$LastModified": null,
1152
- "CopyPartResult$LastModified": "Date and time at which the object was uploaded.",
1153
- "DeleteMarkerEntry$LastModified": "Date and time the object was last modified.",
1154
- "GetObjectOutput$LastModified": "Last modified date of the object",
1155
- "HeadObjectOutput$LastModified": "Last modified date of the object",
1156
- "Object$LastModified": null,
1157
- "ObjectVersion$LastModified": "Date and time the object was last modified.",
1158
- "Part$LastModified": "Date and time at which the part was uploaded."
1159
- }
1160
- },
1161
- "LifecycleConfiguration": {
1162
- "base": null,
1163
- "refs": {
1164
- "PutBucketLifecycleRequest$LifecycleConfiguration": null
1165
- }
1166
- },
1167
- "LifecycleExpiration": {
1168
- "base": null,
1169
- "refs": {
1170
- "Rule$Expiration": null
1171
- }
1172
- },
1173
- "ListBucketsOutput": {
1174
- "base": null,
1175
- "refs": {
1176
- }
1177
- },
1178
- "ListMultipartUploadsOutput": {
1179
- "base": null,
1180
- "refs": {
1181
- }
1182
- },
1183
- "ListMultipartUploadsRequest": {
1184
- "base": null,
1185
- "refs": {
1186
- }
1187
- },
1188
- "ListObjectVersionsOutput": {
1189
- "base": null,
1190
- "refs": {
1191
- }
1192
- },
1193
- "ListObjectVersionsRequest": {
1194
- "base": null,
1195
- "refs": {
1196
- }
1197
- },
1198
- "ListObjectsOutput": {
1199
- "base": null,
1200
- "refs": {
1201
- }
1202
- },
1203
- "ListObjectsRequest": {
1204
- "base": null,
1205
- "refs": {
1206
- }
1207
- },
1208
- "ListPartsOutput": {
1209
- "base": null,
1210
- "refs": {
1211
- }
1212
- },
1213
- "ListPartsRequest": {
1214
- "base": null,
1215
- "refs": {
1216
- }
1217
- },
1218
- "Location": {
1219
- "base": null,
1220
- "refs": {
1221
- "CompleteMultipartUploadOutput$Location": null,
1222
- "CreateBucketOutput$Location": null
1223
- }
1224
- },
1225
- "LoggingEnabled": {
1226
- "base": null,
1227
- "refs": {
1228
- "BucketLoggingStatus$LoggingEnabled": null,
1229
- "GetBucketLoggingOutput$LoggingEnabled": null
1230
- }
1231
- },
1232
- "MFA": {
1233
- "base": null,
1234
- "refs": {
1235
- "DeleteObjectRequest$MFA": "The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.",
1236
- "DeleteObjectsRequest$MFA": "The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.",
1237
- "PutBucketVersioningRequest$MFA": "The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device."
1238
- }
1239
- },
1240
- "MFADelete": {
1241
- "base": null,
1242
- "refs": {
1243
- "VersioningConfiguration$MFADelete": "Specifies whether MFA delete is enabled in the bucket versioning configuration. This element is only returned if the bucket has been configured with MFA delete. If the bucket has never been so configured, this element is not returned."
1244
- }
1245
- },
1246
- "MFADeleteStatus": {
1247
- "base": null,
1248
- "refs": {
1249
- "GetBucketVersioningOutput$MFADelete": "Specifies whether MFA delete is enabled in the bucket versioning configuration. This element is only returned if the bucket has been configured with MFA delete. If the bucket has never been so configured, this element is not returned."
1250
- }
1251
- },
1252
- "Marker": {
1253
- "base": null,
1254
- "refs": {
1255
- "ListObjectsOutput$Marker": null,
1256
- "ListObjectsRequest$Marker": "Specifies the key to start with when listing objects in a bucket."
1257
- }
1258
- },
1259
- "MaxAgeSeconds": {
1260
- "base": null,
1261
- "refs": {
1262
- "CORSRule$MaxAgeSeconds": "The time in seconds that your browser is to cache the preflight response for the specified resource."
1263
- }
1264
- },
1265
- "MaxKeys": {
1266
- "base": null,
1267
- "refs": {
1268
- "ListObjectVersionsOutput$MaxKeys": null,
1269
- "ListObjectVersionsRequest$MaxKeys": "Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more.",
1270
- "ListObjectsOutput$MaxKeys": null,
1271
- "ListObjectsRequest$MaxKeys": "Sets the maximum number of keys returned in the response. The response might contain fewer keys but will never contain more."
1272
- }
1273
- },
1274
- "MaxParts": {
1275
- "base": null,
1276
- "refs": {
1277
- "ListPartsOutput$MaxParts": "Maximum number of parts that were allowed in the response.",
1278
- "ListPartsRequest$MaxParts": "Sets the maximum number of parts to return."
1279
- }
1280
- },
1281
- "MaxUploads": {
1282
- "base": null,
1283
- "refs": {
1284
- "ListMultipartUploadsOutput$MaxUploads": "Maximum number of multipart uploads that could have been included in the response.",
1285
- "ListMultipartUploadsRequest$MaxUploads": "Sets the maximum number of multipart uploads, from 1 to 1,000, to return in the response body. 1,000 is the maximum number of uploads that can be returned in a response."
1286
- }
1287
- },
1288
- "Message": {
1289
- "base": null,
1290
- "refs": {
1291
- "Error$Message": null
1292
- }
1293
- },
1294
- "Metadata": {
1295
- "base": null,
1296
- "refs": {
1297
- "CopyObjectRequest$Metadata": "A map of metadata to store with the object in S3.",
1298
- "CreateMultipartUploadRequest$Metadata": "A map of metadata to store with the object in S3.",
1299
- "GetObjectOutput$Metadata": "A map of metadata to store with the object in S3.",
1300
- "HeadObjectOutput$Metadata": "A map of metadata to store with the object in S3.",
1301
- "PutObjectRequest$Metadata": "A map of metadata to store with the object in S3."
1302
- }
1303
- },
1304
- "MetadataDirective": {
1305
- "base": null,
1306
- "refs": {
1307
- "CopyObjectRequest$MetadataDirective": "Specifies whether the metadata is copied from the source object or replaced with metadata provided in the request."
1308
- }
1309
- },
1310
- "MetadataKey": {
1311
- "base": null,
1312
- "refs": {
1313
- "Metadata$key": null
1314
- }
1315
- },
1316
- "MetadataValue": {
1317
- "base": null,
1318
- "refs": {
1319
- "Metadata$value": null
1320
- }
1321
- },
1322
- "MissingMeta": {
1323
- "base": null,
1324
- "refs": {
1325
- "GetObjectOutput$MissingMeta": "This is set to the number of metadata entries not returned in x-amz-meta headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers.",
1326
- "HeadObjectOutput$MissingMeta": "This is set to the number of metadata entries not returned in x-amz-meta headers. This can happen if you create metadata using an API like SOAP that supports more flexible metadata than the REST API. For example, using SOAP, you can create metadata whose values are not legal HTTP headers."
1327
- }
1328
- },
1329
- "MultipartUpload": {
1330
- "base": null,
1331
- "refs": {
1332
- "MultipartUploadList$member": null
1333
- }
1334
- },
1335
- "MultipartUploadId": {
1336
- "base": null,
1337
- "refs": {
1338
- "AbortMultipartUploadRequest$UploadId": null,
1339
- "CompleteMultipartUploadRequest$UploadId": null,
1340
- "CreateMultipartUploadOutput$UploadId": "ID for the initiated multipart upload.",
1341
- "ListPartsOutput$UploadId": "Upload ID identifying the multipart upload whose parts are being listed.",
1342
- "ListPartsRequest$UploadId": "Upload ID identifying the multipart upload whose parts are being listed.",
1343
- "MultipartUpload$UploadId": "Upload ID that identifies the multipart upload.",
1344
- "UploadPartCopyRequest$UploadId": "Upload ID identifying the multipart upload whose part is being copied.",
1345
- "UploadPartRequest$UploadId": "Upload ID identifying the multipart upload whose part is being uploaded."
1346
- }
1347
- },
1348
- "MultipartUploadList": {
1349
- "base": null,
1350
- "refs": {
1351
- "ListMultipartUploadsOutput$Uploads": null
1352
- }
1353
- },
1354
- "NextKeyMarker": {
1355
- "base": null,
1356
- "refs": {
1357
- "ListMultipartUploadsOutput$NextKeyMarker": "When a list is truncated, this element specifies the value that should be used for the key-marker request parameter in a subsequent request.",
1358
- "ListObjectVersionsOutput$NextKeyMarker": "Use this value for the key marker request parameter in a subsequent request."
1359
- }
1360
- },
1361
- "NextMarker": {
1362
- "base": null,
1363
- "refs": {
1364
- "ListObjectsOutput$NextMarker": "When response is truncated (the IsTruncated element value in the response is true), you can use the key name in this field as marker in the subsequent request to get next set of objects. Amazon S3 lists objects in alphabetical order Note: This element is returned only if you have delimiter request parameter specified. If response does not include the NextMaker and it is truncated, you can use the value of the last Key in the response as the marker in the subsequent request to get the next set of object keys."
1365
- }
1366
- },
1367
- "NextPartNumberMarker": {
1368
- "base": null,
1369
- "refs": {
1370
- "ListPartsOutput$NextPartNumberMarker": "When a list is truncated, this element specifies the last part in the list, as well as the value to use for the part-number-marker request parameter in a subsequent request."
1371
- }
1372
- },
1373
- "NextUploadIdMarker": {
1374
- "base": null,
1375
- "refs": {
1376
- "ListMultipartUploadsOutput$NextUploadIdMarker": "When a list is truncated, this element specifies the value that should be used for the upload-id-marker request parameter in a subsequent request."
1377
- }
1378
- },
1379
- "NextVersionIdMarker": {
1380
- "base": null,
1381
- "refs": {
1382
- "ListObjectVersionsOutput$NextVersionIdMarker": "Use this value for the next version id marker parameter in a subsequent request."
1383
- }
1384
- },
1385
- "NoSuchBucket": {
1386
- "base": "The specified bucket does not exist.",
1387
- "refs": {
1388
- }
1389
- },
1390
- "NoSuchKey": {
1391
- "base": "The specified key does not exist.",
1392
- "refs": {
1393
- }
1394
- },
1395
- "NoSuchUpload": {
1396
- "base": "The specified multipart upload does not exist.",
1397
- "refs": {
1398
- }
1399
- },
1400
- "NoncurrentVersionExpiration": {
1401
- "base": "Specifies when noncurrent object versions expire. Upon expiration, Amazon S3 permanently deletes the noncurrent object versions. You set this lifecycle configuration action on a bucket that has versioning enabled (or suspended) to request that Amazon S3 delete noncurrent object versions at a specific period in the object's lifetime.",
1402
- "refs": {
1403
- "Rule$NoncurrentVersionExpiration": null
1404
- }
1405
- },
1406
- "NoncurrentVersionTransition": {
1407
- "base": "Container for the transition rule that describes when noncurrent objects transition to the GLACIER storage class. If your bucket is versioning-enabled (or versioning is suspended), you can set this action to request that Amazon S3 transition noncurrent object versions to the GLACIER storage class at a specific period in the object's lifetime.",
1408
- "refs": {
1409
- "Rule$NoncurrentVersionTransition": null
1410
- }
1411
- },
1412
- "NotificationConfiguration": {
1413
- "base": "Container for specifying the notification configuration of the bucket. If this element is empty, notifications are turned off on the bucket.",
1414
- "refs": {
1415
- "PutBucketNotificationConfigurationRequest$NotificationConfiguration": null
1416
- }
1417
- },
1418
- "NotificationConfigurationDeprecated": {
1419
- "base": null,
1420
- "refs": {
1421
- "PutBucketNotificationRequest$NotificationConfiguration": null
1422
- }
1423
- },
1424
- "NotificationId": {
1425
- "base": "Optional unique identifier for configurations in a notification configuration. If you don't provide one, Amazon S3 will assign an ID.",
1426
- "refs": {
1427
- "CloudFunctionConfiguration$Id": null,
1428
- "LambdaFunctionConfiguration$Id": null,
1429
- "QueueConfiguration$Id": null,
1430
- "QueueConfigurationDeprecated$Id": null,
1431
- "TopicConfiguration$Id": null,
1432
- "TopicConfigurationDeprecated$Id": null
1433
- }
1434
- },
1435
- "Object": {
1436
- "base": null,
1437
- "refs": {
1438
- "ObjectList$member": null
1439
- }
1440
- },
1441
- "ObjectAlreadyInActiveTierError": {
1442
- "base": "This operation is not allowed against this storage tier",
1443
- "refs": {
1444
- }
1445
- },
1446
- "ObjectCannedACL": {
1447
- "base": null,
1448
- "refs": {
1449
- "CopyObjectRequest$ACL": "The canned ACL to apply to the object.",
1450
- "CreateMultipartUploadRequest$ACL": "The canned ACL to apply to the object.",
1451
- "PutObjectAclRequest$ACL": "The canned ACL to apply to the object.",
1452
- "PutObjectRequest$ACL": "The canned ACL to apply to the object."
1453
- }
1454
- },
1455
- "ObjectIdentifier": {
1456
- "base": null,
1457
- "refs": {
1458
- "ObjectIdentifierList$member": null
1459
- }
1460
- },
1461
- "ObjectIdentifierList": {
1462
- "base": null,
1463
- "refs": {
1464
- "Delete$Objects": null
1465
- }
1466
- },
1467
- "ObjectKey": {
1468
- "base": null,
1469
- "refs": {
1470
- "AbortMultipartUploadRequest$Key": null,
1471
- "CompleteMultipartUploadOutput$Key": null,
1472
- "CompleteMultipartUploadRequest$Key": null,
1473
- "CopyObjectRequest$Key": null,
1474
- "CreateMultipartUploadOutput$Key": "Object key for which the multipart upload was initiated.",
1475
- "CreateMultipartUploadRequest$Key": null,
1476
- "DeleteMarkerEntry$Key": "The object key.",
1477
- "DeleteObjectRequest$Key": null,
1478
- "DeletedObject$Key": null,
1479
- "Error$Key": null,
1480
- "ErrorDocument$Key": "The object key name to use when a 4XX class error occurs.",
1481
- "GetObjectAclRequest$Key": null,
1482
- "GetObjectRequest$Key": null,
1483
- "GetObjectTorrentRequest$Key": null,
1484
- "HeadObjectRequest$Key": null,
1485
- "ListPartsOutput$Key": "Object key for which the multipart upload was initiated.",
1486
- "ListPartsRequest$Key": null,
1487
- "MultipartUpload$Key": "Key of the object for which the multipart upload was initiated.",
1488
- "Object$Key": null,
1489
- "ObjectIdentifier$Key": "Key name of the object to delete.",
1490
- "ObjectVersion$Key": "The object key.",
1491
- "PutObjectAclRequest$Key": null,
1492
- "PutObjectRequest$Key": null,
1493
- "RestoreObjectRequest$Key": null,
1494
- "Tag$Key": "Name of the tag.",
1495
- "UploadPartCopyRequest$Key": null,
1496
- "UploadPartRequest$Key": null
1497
- }
1498
- },
1499
- "ObjectList": {
1500
- "base": null,
1501
- "refs": {
1502
- "ListObjectsOutput$Contents": null
1503
- }
1504
- },
1505
- "ObjectNotInActiveTierError": {
1506
- "base": "The source object of the COPY operation is not in the active tier and is only stored in Amazon Glacier.",
1507
- "refs": {
1508
- }
1509
- },
1510
- "ObjectStorageClass": {
1511
- "base": null,
1512
- "refs": {
1513
- "Object$StorageClass": "The class of storage used to store the object."
1514
- }
1515
- },
1516
- "ObjectVersion": {
1517
- "base": null,
1518
- "refs": {
1519
- "ObjectVersionList$member": null
1520
- }
1521
- },
1522
- "ObjectVersionId": {
1523
- "base": null,
1524
- "refs": {
1525
- "CompleteMultipartUploadOutput$VersionId": "Version of the object.",
1526
- "DeleteMarkerEntry$VersionId": "Version ID of an object.",
1527
- "DeleteObjectOutput$VersionId": "Returns the version ID of the delete marker created as a result of the DELETE operation.",
1528
- "DeleteObjectRequest$VersionId": "VersionId used to reference a specific version of the object.",
1529
- "DeletedObject$VersionId": null,
1530
- "Error$VersionId": null,
1531
- "GetObjectAclRequest$VersionId": "VersionId used to reference a specific version of the object.",
1532
- "GetObjectOutput$VersionId": "Version of the object.",
1533
- "GetObjectRequest$VersionId": "VersionId used to reference a specific version of the object.",
1534
- "HeadObjectOutput$VersionId": "Version of the object.",
1535
- "HeadObjectRequest$VersionId": "VersionId used to reference a specific version of the object.",
1536
- "ObjectIdentifier$VersionId": "VersionId for the specific version of the object to delete.",
1537
- "ObjectVersion$VersionId": "Version ID of an object.",
1538
- "PutObjectOutput$VersionId": "Version of the object.",
1539
- "RestoreObjectRequest$VersionId": null
1540
- }
1541
- },
1542
- "ObjectVersionList": {
1543
- "base": null,
1544
- "refs": {
1545
- "ListObjectVersionsOutput$Versions": null
1546
- }
1547
- },
1548
- "ObjectVersionStorageClass": {
1549
- "base": null,
1550
- "refs": {
1551
- "ObjectVersion$StorageClass": "The class of storage used to store the object."
1552
- }
1553
- },
1554
- "Owner": {
1555
- "base": null,
1556
- "refs": {
1557
- "AccessControlPolicy$Owner": null,
1558
- "DeleteMarkerEntry$Owner": null,
1559
- "GetBucketAclOutput$Owner": null,
1560
- "GetObjectAclOutput$Owner": null,
1561
- "ListBucketsOutput$Owner": null,
1562
- "ListPartsOutput$Owner": null,
1563
- "MultipartUpload$Owner": null,
1564
- "Object$Owner": null,
1565
- "ObjectVersion$Owner": null
1566
- }
1567
- },
1568
- "Part": {
1569
- "base": null,
1570
- "refs": {
1571
- "Parts$member": null
1572
- }
1573
- },
1574
- "PartNumber": {
1575
- "base": null,
1576
- "refs": {
1577
- "CompletedPart$PartNumber": "Part number that identifies the part.",
1578
- "Part$PartNumber": "Part number identifying the part.",
1579
- "UploadPartCopyRequest$PartNumber": "Part number of part being copied.",
1580
- "UploadPartRequest$PartNumber": "Part number of part being uploaded."
1581
- }
1582
- },
1583
- "PartNumberMarker": {
1584
- "base": null,
1585
- "refs": {
1586
- "ListPartsOutput$PartNumberMarker": "Part number after which listing begins.",
1587
- "ListPartsRequest$PartNumberMarker": "Specifies the part after which listing should begin. Only parts with higher part numbers will be listed."
1588
- }
1589
- },
1590
- "Parts": {
1591
- "base": null,
1592
- "refs": {
1593
- "ListPartsOutput$Parts": null
1594
- }
1595
- },
1596
- "Payer": {
1597
- "base": null,
1598
- "refs": {
1599
- "GetBucketRequestPaymentOutput$Payer": "Specifies who pays for the download and request fees.",
1600
- "RequestPaymentConfiguration$Payer": "Specifies who pays for the download and request fees."
1601
- }
1602
- },
1603
- "Permission": {
1604
- "base": null,
1605
- "refs": {
1606
- "Grant$Permission": "Specifies the permission given to the grantee."
1607
- }
1608
- },
1609
- "Policy": {
1610
- "base": null,
1611
- "refs": {
1612
- "GetBucketPolicyOutput$Policy": "The bucket policy as a JSON document.",
1613
- "PutBucketPolicyRequest$Policy": "The bucket policy as a JSON document."
1614
- }
1615
- },
1616
- "Prefix": {
1617
- "base": null,
1618
- "refs": {
1619
- "CommonPrefix$Prefix": null,
1620
- "ListMultipartUploadsOutput$Prefix": "When a prefix is provided in the request, this field contains the specified prefix. The result contains only keys starting with the specified prefix.",
1621
- "ListMultipartUploadsRequest$Prefix": "Lists in-progress uploads only for those keys that begin with the specified prefix.",
1622
- "ListObjectVersionsOutput$Prefix": null,
1623
- "ListObjectVersionsRequest$Prefix": "Limits the response to keys that begin with the specified prefix.",
1624
- "ListObjectsOutput$Prefix": null,
1625
- "ListObjectsRequest$Prefix": "Limits the response to keys that begin with the specified prefix.",
1626
- "ReplicationRule$Prefix": "Object keyname prefix identifying one or more objects to which the rule applies. Maximum prefix length can be up to 1,024 characters. Overlapping prefixes are not supported.",
1627
- "Rule$Prefix": "Prefix identifying one or more objects to which the rule applies."
1628
- }
1629
- },
1630
- "Protocol": {
1631
- "base": null,
1632
- "refs": {
1633
- "Redirect$Protocol": "Protocol to use (http, https) when redirecting requests. The default is the protocol that is used in the original request.",
1634
- "RedirectAllRequestsTo$Protocol": "Protocol to use (http, https) when redirecting requests. The default is the protocol that is used in the original request."
1635
- }
1636
- },
1637
- "PutBucketAclRequest": {
1638
- "base": null,
1639
- "refs": {
1640
- }
1641
- },
1642
- "PutBucketCorsRequest": {
1643
- "base": null,
1644
- "refs": {
1645
- }
1646
- },
1647
- "PutBucketLifecycleRequest": {
1648
- "base": null,
1649
- "refs": {
1650
- }
1651
- },
1652
- "PutBucketLoggingRequest": {
1653
- "base": null,
1654
- "refs": {
1655
- }
1656
- },
1657
- "PutBucketNotificationConfigurationRequest": {
1658
- "base": null,
1659
- "refs": {
1660
- }
1661
- },
1662
- "PutBucketNotificationRequest": {
1663
- "base": null,
1664
- "refs": {
1665
- }
1666
- },
1667
- "PutBucketPolicyRequest": {
1668
- "base": null,
1669
- "refs": {
1670
- }
1671
- },
1672
- "PutBucketReplicationRequest": {
1673
- "base": null,
1674
- "refs": {
1675
- }
1676
- },
1677
- "PutBucketRequestPaymentRequest": {
1678
- "base": null,
1679
- "refs": {
1680
- }
1681
- },
1682
- "PutBucketTaggingRequest": {
1683
- "base": null,
1684
- "refs": {
1685
- }
1686
- },
1687
- "PutBucketVersioningRequest": {
1688
- "base": null,
1689
- "refs": {
1690
- }
1691
- },
1692
- "PutBucketWebsiteRequest": {
1693
- "base": null,
1694
- "refs": {
1695
- }
1696
- },
1697
- "PutObjectAclOutput": {
1698
- "base": null,
1699
- "refs": {
1700
- }
1701
- },
1702
- "PutObjectAclRequest": {
1703
- "base": null,
1704
- "refs": {
1705
- }
1706
- },
1707
- "PutObjectOutput": {
1708
- "base": null,
1709
- "refs": {
1710
- }
1711
- },
1712
- "PutObjectRequest": {
1713
- "base": null,
1714
- "refs": {
1715
- }
1716
- },
1717
- "QueueArn": {
1718
- "base": null,
1719
- "refs": {
1720
- "QueueConfiguration$QueueArn": "Amazon SQS queue ARN to which Amazon S3 will publish a message when it detects events of specified type.",
1721
- "QueueConfigurationDeprecated$Queue": null
1722
- }
1723
- },
1724
- "QueueConfiguration": {
1725
- "base": "Container for specifying an configuration when you want Amazon S3 to publish events to an Amazon Simple Queue Service (Amazon SQS) queue.",
1726
- "refs": {
1727
- "QueueConfigurationList$member": null
1728
- }
1729
- },
1730
- "QueueConfigurationDeprecated": {
1731
- "base": null,
1732
- "refs": {
1733
- "NotificationConfigurationDeprecated$QueueConfiguration": null
1734
- }
1735
- },
1736
- "QueueConfigurationList": {
1737
- "base": null,
1738
- "refs": {
1739
- "NotificationConfiguration$QueueConfigurations": null
1740
- }
1741
- },
1742
- "Quiet": {
1743
- "base": null,
1744
- "refs": {
1745
- "Delete$Quiet": "Element to enable quiet mode for the request. When you add this element, you must set its value to true."
1746
- }
1747
- },
1748
- "Range": {
1749
- "base": null,
1750
- "refs": {
1751
- "GetObjectRequest$Range": "Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35.",
1752
- "HeadObjectRequest$Range": "Downloads the specified range bytes of an object. For more information about the HTTP Range header, go to http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.35."
1753
- }
1754
- },
1755
- "Redirect": {
1756
- "base": null,
1757
- "refs": {
1758
- "RoutingRule$Redirect": "Container for redirect information. You can redirect requests to another host, to another page, or with another protocol. In the event of an error, you can can specify a different error code to return."
1759
- }
1760
- },
1761
- "RedirectAllRequestsTo": {
1762
- "base": null,
1763
- "refs": {
1764
- "GetBucketWebsiteOutput$RedirectAllRequestsTo": null,
1765
- "WebsiteConfiguration$RedirectAllRequestsTo": null
1766
- }
1767
- },
1768
- "ReplaceKeyPrefixWith": {
1769
- "base": null,
1770
- "refs": {
1771
- "Redirect$ReplaceKeyPrefixWith": "The object key prefix to use in the redirect request. For example, to redirect requests for all pages with prefix docs/ (objects in the docs/ folder) to documents/, you can set a condition block with KeyPrefixEquals set to docs/ and in the Redirect set ReplaceKeyPrefixWith to /documents. Not required if one of the siblings is present. Can be present only if ReplaceKeyWith is not provided."
1772
- }
1773
- },
1774
- "ReplaceKeyWith": {
1775
- "base": null,
1776
- "refs": {
1777
- "Redirect$ReplaceKeyWith": "The specific object key to use in the redirect request. For example, redirect request to error.html. Not required if one of the sibling is present. Can be present only if ReplaceKeyPrefixWith is not provided."
1778
- }
1779
- },
1780
- "ReplicationConfiguration": {
1781
- "base": "Container for replication rules. You can add as many as 1,000 rules. Total replication configuration size can be up to 2 MB.",
1782
- "refs": {
1783
- "GetBucketReplicationOutput$ReplicationConfiguration": null,
1784
- "PutBucketReplicationRequest$ReplicationConfiguration": null
1785
- }
1786
- },
1787
- "ReplicationRule": {
1788
- "base": null,
1789
- "refs": {
1790
- "ReplicationRules$member": null
1791
- }
1792
- },
1793
- "ReplicationRuleStatus": {
1794
- "base": null,
1795
- "refs": {
1796
- "ReplicationRule$Status": "The rule is ignored if status is not Enabled."
1797
- }
1798
- },
1799
- "ReplicationRules": {
1800
- "base": null,
1801
- "refs": {
1802
- "ReplicationConfiguration$Rules": "Container for information about a particular replication rule. Replication configuration must have at least one rule and can contain up to 1,000 rules."
1803
- }
1804
- },
1805
- "ReplicationStatus": {
1806
- "base": null,
1807
- "refs": {
1808
- "GetObjectOutput$ReplicationStatus": null,
1809
- "HeadObjectOutput$ReplicationStatus": null
1810
- }
1811
- },
1812
- "RequestCharged": {
1813
- "base": "If present, indicates that the requester was successfully charged for the request.",
1814
- "refs": {
1815
- "AbortMultipartUploadOutput$RequestCharged": null,
1816
- "CompleteMultipartUploadOutput$RequestCharged": null,
1817
- "CopyObjectOutput$RequestCharged": null,
1818
- "CreateMultipartUploadOutput$RequestCharged": null,
1819
- "DeleteObjectOutput$RequestCharged": null,
1820
- "DeleteObjectsOutput$RequestCharged": null,
1821
- "GetObjectAclOutput$RequestCharged": null,
1822
- "GetObjectOutput$RequestCharged": null,
1823
- "GetObjectTorrentOutput$RequestCharged": null,
1824
- "HeadObjectOutput$RequestCharged": null,
1825
- "ListPartsOutput$RequestCharged": null,
1826
- "PutObjectAclOutput$RequestCharged": null,
1827
- "PutObjectOutput$RequestCharged": null,
1828
- "RestoreObjectOutput$RequestCharged": null,
1829
- "UploadPartCopyOutput$RequestCharged": null,
1830
- "UploadPartOutput$RequestCharged": null
1831
- }
1832
- },
1833
- "RequestPayer": {
1834
- "base": "Confirms that the requester knows that she or he will be charged for the request. Bucket owners need not specify this parameter in their requests. Documentation on downloading objects from requester pays buckets can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html",
1835
- "refs": {
1836
- "AbortMultipartUploadRequest$RequestPayer": null,
1837
- "CompleteMultipartUploadRequest$RequestPayer": null,
1838
- "CopyObjectRequest$RequestPayer": null,
1839
- "CreateMultipartUploadRequest$RequestPayer": null,
1840
- "DeleteObjectRequest$RequestPayer": null,
1841
- "DeleteObjectsRequest$RequestPayer": null,
1842
- "GetObjectAclRequest$RequestPayer": null,
1843
- "GetObjectRequest$RequestPayer": null,
1844
- "GetObjectTorrentRequest$RequestPayer": null,
1845
- "HeadObjectRequest$RequestPayer": null,
1846
- "ListPartsRequest$RequestPayer": null,
1847
- "PutObjectAclRequest$RequestPayer": null,
1848
- "PutObjectRequest$RequestPayer": null,
1849
- "RestoreObjectRequest$RequestPayer": null,
1850
- "UploadPartCopyRequest$RequestPayer": null,
1851
- "UploadPartRequest$RequestPayer": null
1852
- }
1853
- },
1854
- "RequestPaymentConfiguration": {
1855
- "base": null,
1856
- "refs": {
1857
- "PutBucketRequestPaymentRequest$RequestPaymentConfiguration": null
1858
- }
1859
- },
1860
- "ResponseCacheControl": {
1861
- "base": null,
1862
- "refs": {
1863
- "GetObjectRequest$ResponseCacheControl": "Sets the Cache-Control header of the response."
1864
- }
1865
- },
1866
- "ResponseContentDisposition": {
1867
- "base": null,
1868
- "refs": {
1869
- "GetObjectRequest$ResponseContentDisposition": "Sets the Content-Disposition header of the response"
1870
- }
1871
- },
1872
- "ResponseContentEncoding": {
1873
- "base": null,
1874
- "refs": {
1875
- "GetObjectRequest$ResponseContentEncoding": "Sets the Content-Encoding header of the response."
1876
- }
1877
- },
1878
- "ResponseContentLanguage": {
1879
- "base": null,
1880
- "refs": {
1881
- "GetObjectRequest$ResponseContentLanguage": "Sets the Content-Language header of the response."
1882
- }
1883
- },
1884
- "ResponseContentType": {
1885
- "base": null,
1886
- "refs": {
1887
- "GetObjectRequest$ResponseContentType": "Sets the Content-Type header of the response."
1888
- }
1889
- },
1890
- "ResponseExpires": {
1891
- "base": null,
1892
- "refs": {
1893
- "GetObjectRequest$ResponseExpires": "Sets the Expires header of the response."
1894
- }
1895
- },
1896
- "Restore": {
1897
- "base": null,
1898
- "refs": {
1899
- "GetObjectOutput$Restore": "Provides information about object restoration operation and expiration time of the restored object copy.",
1900
- "HeadObjectOutput$Restore": "Provides information about object restoration operation and expiration time of the restored object copy."
1901
- }
1902
- },
1903
- "RestoreObjectOutput": {
1904
- "base": null,
1905
- "refs": {
1906
- }
1907
- },
1908
- "RestoreObjectRequest": {
1909
- "base": null,
1910
- "refs": {
1911
- }
1912
- },
1913
- "RestoreRequest": {
1914
- "base": null,
1915
- "refs": {
1916
- "RestoreObjectRequest$RestoreRequest": null
1917
- }
1918
- },
1919
- "Role": {
1920
- "base": null,
1921
- "refs": {
1922
- "ReplicationConfiguration$Role": "Amazon Resource Name (ARN) of an IAM role for Amazon S3 to assume when replicating the objects."
1923
- }
1924
- },
1925
- "RoutingRule": {
1926
- "base": null,
1927
- "refs": {
1928
- "RoutingRules$member": null
1929
- }
1930
- },
1931
- "RoutingRules": {
1932
- "base": null,
1933
- "refs": {
1934
- "GetBucketWebsiteOutput$RoutingRules": null,
1935
- "WebsiteConfiguration$RoutingRules": null
1936
- }
1937
- },
1938
- "Rule": {
1939
- "base": null,
1940
- "refs": {
1941
- "Rules$member": null
1942
- }
1943
- },
1944
- "Rules": {
1945
- "base": null,
1946
- "refs": {
1947
- "GetBucketLifecycleOutput$Rules": null,
1948
- "LifecycleConfiguration$Rules": null
1949
- }
1950
- },
1951
- "SSECustomerAlgorithm": {
1952
- "base": null,
1953
- "refs": {
1954
- "CopyObjectOutput$SSECustomerAlgorithm": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.",
1955
- "CopyObjectRequest$SSECustomerAlgorithm": "Specifies the algorithm to use to when encrypting the object (e.g., AES256, aws:kms).",
1956
- "CreateMultipartUploadOutput$SSECustomerAlgorithm": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.",
1957
- "CreateMultipartUploadRequest$SSECustomerAlgorithm": "Specifies the algorithm to use to when encrypting the object (e.g., AES256, aws:kms).",
1958
- "GetObjectOutput$SSECustomerAlgorithm": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.",
1959
- "GetObjectRequest$SSECustomerAlgorithm": "Specifies the algorithm to use to when encrypting the object (e.g., AES256, aws:kms).",
1960
- "HeadObjectOutput$SSECustomerAlgorithm": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.",
1961
- "HeadObjectRequest$SSECustomerAlgorithm": "Specifies the algorithm to use to when encrypting the object (e.g., AES256, aws:kms).",
1962
- "PutObjectOutput$SSECustomerAlgorithm": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.",
1963
- "PutObjectRequest$SSECustomerAlgorithm": "Specifies the algorithm to use to when encrypting the object (e.g., AES256, aws:kms).",
1964
- "UploadPartCopyOutput$SSECustomerAlgorithm": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.",
1965
- "UploadPartCopyRequest$SSECustomerAlgorithm": "Specifies the algorithm to use to when encrypting the object (e.g., AES256, aws:kms).",
1966
- "UploadPartOutput$SSECustomerAlgorithm": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header confirming the encryption algorithm used.",
1967
- "UploadPartRequest$SSECustomerAlgorithm": "Specifies the algorithm to use to when encrypting the object (e.g., AES256, aws:kms)."
1968
- }
1969
- },
1970
- "SSECustomerKey": {
1971
- "base": null,
1972
- "refs": {
1973
- "CopyObjectRequest$SSECustomerKey": "Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side&#x200B;-encryption&#x200B;-customer-algorithm header.",
1974
- "CreateMultipartUploadRequest$SSECustomerKey": "Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side&#x200B;-encryption&#x200B;-customer-algorithm header.",
1975
- "GetObjectRequest$SSECustomerKey": "Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side&#x200B;-encryption&#x200B;-customer-algorithm header.",
1976
- "HeadObjectRequest$SSECustomerKey": "Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side&#x200B;-encryption&#x200B;-customer-algorithm header.",
1977
- "PutObjectRequest$SSECustomerKey": "Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side&#x200B;-encryption&#x200B;-customer-algorithm header.",
1978
- "UploadPartCopyRequest$SSECustomerKey": "Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side&#x200B;-encryption&#x200B;-customer-algorithm header. This must be the same encryption key specified in the initiate multipart upload request.",
1979
- "UploadPartRequest$SSECustomerKey": "Specifies the customer-provided encryption key for Amazon S3 to use in encrypting data. This value is used to store the object and then it is discarded; Amazon does not store the encryption key. The key must be appropriate for use with the algorithm specified in the x-amz-server-side&#x200B;-encryption&#x200B;-customer-algorithm header. This must be the same encryption key specified in the initiate multipart upload request."
1980
- }
1981
- },
1982
- "SSECustomerKeyMD5": {
1983
- "base": null,
1984
- "refs": {
1985
- "CopyObjectOutput$SSECustomerKeyMD5": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.",
1986
- "CopyObjectRequest$SSECustomerKeyMD5": "Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.",
1987
- "CreateMultipartUploadOutput$SSECustomerKeyMD5": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.",
1988
- "CreateMultipartUploadRequest$SSECustomerKeyMD5": "Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.",
1989
- "GetObjectOutput$SSECustomerKeyMD5": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.",
1990
- "GetObjectRequest$SSECustomerKeyMD5": "Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.",
1991
- "HeadObjectOutput$SSECustomerKeyMD5": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.",
1992
- "HeadObjectRequest$SSECustomerKeyMD5": "Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.",
1993
- "PutObjectOutput$SSECustomerKeyMD5": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.",
1994
- "PutObjectRequest$SSECustomerKeyMD5": "Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.",
1995
- "UploadPartCopyOutput$SSECustomerKeyMD5": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.",
1996
- "UploadPartCopyRequest$SSECustomerKeyMD5": "Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error.",
1997
- "UploadPartOutput$SSECustomerKeyMD5": "If server-side encryption with a customer-provided encryption key was requested, the response will include this header to provide round trip message integrity verification of the customer-provided encryption key.",
1998
- "UploadPartRequest$SSECustomerKeyMD5": "Specifies the 128-bit MD5 digest of the encryption key according to RFC 1321. Amazon S3 uses this header for a message integrity check to ensure the encryption key was transmitted without error."
1999
- }
2000
- },
2001
- "SSEKMSKeyId": {
2002
- "base": null,
2003
- "refs": {
2004
- "CompleteMultipartUploadOutput$SSEKMSKeyId": "If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.",
2005
- "CopyObjectOutput$SSEKMSKeyId": "If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.",
2006
- "CopyObjectRequest$SSEKMSKeyId": "Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version",
2007
- "CreateMultipartUploadOutput$SSEKMSKeyId": "If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.",
2008
- "CreateMultipartUploadRequest$SSEKMSKeyId": "Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version",
2009
- "GetObjectOutput$SSEKMSKeyId": "If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.",
2010
- "HeadObjectOutput$SSEKMSKeyId": "If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.",
2011
- "PutObjectOutput$SSEKMSKeyId": "If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.",
2012
- "PutObjectRequest$SSEKMSKeyId": "Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version",
2013
- "UploadPartCopyOutput$SSEKMSKeyId": "If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object.",
2014
- "UploadPartOutput$SSEKMSKeyId": "If present, specifies the ID of the AWS Key Management Service (KMS) master encryption key that was used for the object."
2015
- }
2016
- },
2017
- "ServerSideEncryption": {
2018
- "base": null,
2019
- "refs": {
2020
- "CompleteMultipartUploadOutput$ServerSideEncryption": "The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).",
2021
- "CopyObjectOutput$ServerSideEncryption": "The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).",
2022
- "CopyObjectRequest$ServerSideEncryption": "The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).",
2023
- "CreateMultipartUploadOutput$ServerSideEncryption": "The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).",
2024
- "CreateMultipartUploadRequest$ServerSideEncryption": "The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).",
2025
- "GetObjectOutput$ServerSideEncryption": "The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).",
2026
- "HeadObjectOutput$ServerSideEncryption": "The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).",
2027
- "PutObjectOutput$ServerSideEncryption": "The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).",
2028
- "PutObjectRequest$ServerSideEncryption": "The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).",
2029
- "UploadPartCopyOutput$ServerSideEncryption": "The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms).",
2030
- "UploadPartOutput$ServerSideEncryption": "The Server-side encryption algorithm used when storing this object in S3 (e.g., AES256, aws:kms)."
2031
- }
2032
- },
2033
- "Size": {
2034
- "base": null,
2035
- "refs": {
2036
- "Object$Size": null,
2037
- "ObjectVersion$Size": "Size in bytes of the object.",
2038
- "Part$Size": "Size of the uploaded part data."
2039
- }
2040
- },
2041
- "StorageClass": {
2042
- "base": null,
2043
- "refs": {
2044
- "CopyObjectRequest$StorageClass": "The type of storage to use for the object. Defaults to 'STANDARD'.",
2045
- "CreateMultipartUploadRequest$StorageClass": "The type of storage to use for the object. Defaults to 'STANDARD'.",
2046
- "ListPartsOutput$StorageClass": "The class of storage used to store the object.",
2047
- "MultipartUpload$StorageClass": "The class of storage used to store the object.",
2048
- "PutObjectRequest$StorageClass": "The type of storage to use for the object. Defaults to 'STANDARD'."
2049
- }
2050
- },
2051
- "Suffix": {
2052
- "base": null,
2053
- "refs": {
2054
- "IndexDocument$Suffix": "A suffix that is appended to a request that is for a directory on the website endpoint (e.g. if the suffix is index.html and you make a request to samplebucket/images/ the data that is returned will be for the object with the key name images/index.html) The suffix must not be empty and must not include a slash character."
2055
- }
2056
- },
2057
- "Tag": {
2058
- "base": null,
2059
- "refs": {
2060
- "TagSet$member": null
2061
- }
2062
- },
2063
- "TagSet": {
2064
- "base": null,
2065
- "refs": {
2066
- "GetBucketTaggingOutput$TagSet": null,
2067
- "Tagging$TagSet": null
2068
- }
2069
- },
2070
- "Tagging": {
2071
- "base": null,
2072
- "refs": {
2073
- "PutBucketTaggingRequest$Tagging": null
2074
- }
2075
- },
2076
- "TargetBucket": {
2077
- "base": null,
2078
- "refs": {
2079
- "LoggingEnabled$TargetBucket": "Specifies the bucket where you want Amazon S3 to store server access logs. You can have your logs delivered to any bucket that you own, including the same bucket that is being logged. You can also configure multiple buckets to deliver their logs to the same target bucket. In this case you should choose a different TargetPrefix for each source bucket so that the delivered log files can be distinguished by key."
2080
- }
2081
- },
2082
- "TargetGrant": {
2083
- "base": null,
2084
- "refs": {
2085
- "TargetGrants$member": null
2086
- }
2087
- },
2088
- "TargetGrants": {
2089
- "base": null,
2090
- "refs": {
2091
- "LoggingEnabled$TargetGrants": null
2092
- }
2093
- },
2094
- "TargetPrefix": {
2095
- "base": null,
2096
- "refs": {
2097
- "LoggingEnabled$TargetPrefix": "This element lets you specify a prefix for the keys that the log files will be stored under."
2098
- }
2099
- },
2100
- "TopicArn": {
2101
- "base": null,
2102
- "refs": {
2103
- "TopicConfiguration$TopicArn": "Amazon SNS topic ARN to which Amazon S3 will publish a message when it detects events of specified type.",
2104
- "TopicConfigurationDeprecated$Topic": "Amazon SNS topic to which Amazon S3 will publish a message to report the specified events for the bucket."
2105
- }
2106
- },
2107
- "TopicConfiguration": {
2108
- "base": "Container for specifying the configuration when you want Amazon S3 to publish events to an Amazon Simple Notification Service (Amazon SNS) topic.",
2109
- "refs": {
2110
- "TopicConfigurationList$member": null
2111
- }
2112
- },
2113
- "TopicConfigurationDeprecated": {
2114
- "base": null,
2115
- "refs": {
2116
- "NotificationConfigurationDeprecated$TopicConfiguration": null
2117
- }
2118
- },
2119
- "TopicConfigurationList": {
2120
- "base": null,
2121
- "refs": {
2122
- "NotificationConfiguration$TopicConfigurations": null
2123
- }
2124
- },
2125
- "Transition": {
2126
- "base": null,
2127
- "refs": {
2128
- "Rule$Transition": null
2129
- }
2130
- },
2131
- "TransitionStorageClass": {
2132
- "base": null,
2133
- "refs": {
2134
- "NoncurrentVersionTransition$StorageClass": "The class of storage used to store the object.",
2135
- "Transition$StorageClass": "The class of storage used to store the object."
2136
- }
2137
- },
2138
- "Type": {
2139
- "base": null,
2140
- "refs": {
2141
- "Grantee$Type": "Type of grantee"
2142
- }
2143
- },
2144
- "URI": {
2145
- "base": null,
2146
- "refs": {
2147
- "Grantee$URI": "URI of the grantee group."
2148
- }
2149
- },
2150
- "UploadIdMarker": {
2151
- "base": null,
2152
- "refs": {
2153
- "ListMultipartUploadsOutput$UploadIdMarker": "Upload ID after which listing began.",
2154
- "ListMultipartUploadsRequest$UploadIdMarker": "Together with key-marker, specifies the multipart upload after which listing should begin. If key-marker is not specified, the upload-id-marker parameter is ignored."
2155
- }
2156
- },
2157
- "UploadPartCopyOutput": {
2158
- "base": null,
2159
- "refs": {
2160
- }
2161
- },
2162
- "UploadPartCopyRequest": {
2163
- "base": null,
2164
- "refs": {
2165
- }
2166
- },
2167
- "UploadPartOutput": {
2168
- "base": null,
2169
- "refs": {
2170
- }
2171
- },
2172
- "UploadPartRequest": {
2173
- "base": null,
2174
- "refs": {
2175
- }
2176
- },
2177
- "Value": {
2178
- "base": null,
2179
- "refs": {
2180
- "Tag$Value": "Value of the tag."
2181
- }
2182
- },
2183
- "VersionIdMarker": {
2184
- "base": null,
2185
- "refs": {
2186
- "ListObjectVersionsOutput$VersionIdMarker": null,
2187
- "ListObjectVersionsRequest$VersionIdMarker": "Specifies the object version you want to start listing from."
2188
- }
2189
- },
2190
- "VersioningConfiguration": {
2191
- "base": null,
2192
- "refs": {
2193
- "PutBucketVersioningRequest$VersioningConfiguration": null
2194
- }
2195
- },
2196
- "WebsiteConfiguration": {
2197
- "base": null,
2198
- "refs": {
2199
- "PutBucketWebsiteRequest$WebsiteConfiguration": null
2200
- }
2201
- },
2202
- "WebsiteRedirectLocation": {
2203
- "base": null,
2204
- "refs": {
2205
- "CopyObjectRequest$WebsiteRedirectLocation": "If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.",
2206
- "CreateMultipartUploadRequest$WebsiteRedirectLocation": "If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.",
2207
- "GetObjectOutput$WebsiteRedirectLocation": "If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.",
2208
- "HeadObjectOutput$WebsiteRedirectLocation": "If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata.",
2209
- "PutObjectRequest$WebsiteRedirectLocation": "If the bucket is configured as a website, redirects requests for this object to another object in the same bucket or to an external URL. Amazon S3 stores the value of this header in the object metadata."
2210
- }
2211
- }
2212
- }
2213
- }