Skip to content

Commit 65377c8

Browse files
author
awstools
committedMar 15, 2024
docs(client-s3): Documentation updates for Amazon S3.
1 parent 584dcdf commit 65377c8

12 files changed

+172
-218
lines changed
 

‎clients/client-s3/src/commands/CompleteMultipartUploadCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export interface CompleteMultipartUploadCommandOutput extends CompleteMultipartU
5757
* request as appropriate). If the condition persists, the SDKs throw an exception (or, for
5858
* the SDKs that don't use exceptions, they return an error). </p>
5959
* <p>Note that if <code>CompleteMultipartUpload</code> fails, applications should be prepared
60-
* to retry the failed requests. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ErrorBestPractices.html">Amazon S3 Error Best
60+
* to retry any failed requests (including 500 error responses). For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/ErrorBestPractices.html">Amazon S3 Error Best
6161
* Practices</a>.</p>
6262
* <important>
6363
* <p>You can't use <code>Content-Type: application/x-www-form-urlencoded</code> for the

‎clients/client-s3/src/commands/CopyObjectCommand.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ export interface CopyObjectCommandOutput extends CopyObjectOutput, __MetadataBea
5252
* </note>
5353
* <p>Both the
5454
* Region that you want to copy the object from and the Region that you want to copy the
55-
* object to must be enabled for your account.</p>
55+
* object to must be enabled for your account. For more information about how to enable a Region for your account, see <a href="https://docs.aws.amazon.com/accounts/latest/reference/manage-acct-regions.html#manage-acct-regions-enable-standalone">Enable
56+
* or disable a Region for standalone accounts</a> in the
57+
* <i>Amazon Web Services Account Management Guide</i>.</p>
5658
* <important>
5759
* <p>Amazon S3 transfer acceleration does not support cross-Region copies. If you request a
5860
* cross-Region copy using a transfer acceleration endpoint, you get a <code>400 Bad
@@ -91,7 +93,7 @@ export interface CopyObjectCommandOutput extends CopyObjectOutput, __MetadataBea
9193
* <li>
9294
* <p>If the destination bucket is a general purpose bucket, you must have
9395
* <b>
94-
* <code>s3:PubObject</code>
96+
* <code>s3:PutObject</code>
9597
* </b>
9698
* permission to write the object copy to the destination bucket. </p>
9799
* </li>
@@ -147,7 +149,7 @@ export interface CopyObjectCommandOutput extends CopyObjectOutput, __MetadataBea
147149
* <p>If the error occurs during the copy operation, the error response is
148150
* embedded in the <code>200 OK</code> response. For example, in a cross-region copy, you
149151
* may encounter throttling and receive a <code>200 OK</code> response.
150-
* For more information, see <a href="repost.aws/knowledge-center/s3-resolve-200-internalerror">Resolve
152+
* For more information, see <a href="https://repost.aws/knowledge-center/s3-resolve-200-internalerror">Resolve
151153
* the Error 200 response when copying objects to Amazon S3</a>.
152154
* The <code>200 OK</code> status code means the copy was accepted, but
153155
* it doesn't mean the copy is complete. Another example is
@@ -169,7 +171,7 @@ export interface CopyObjectCommandOutput extends CopyObjectOutput, __MetadataBea
169171
* <dd>
170172
* <p>The copy request charge is based on the storage class and Region that you specify for
171173
* the destination object. The request can also result in a data retrieval charge for the
172-
* source if the source storage class bills for data retrieval. For pricing information, see
174+
* source if the source storage class bills for data retrieval. If the copy source is in a different region, the data transfer is billed to the copy source account. For pricing information, see
173175
* <a href="http://aws.amazon.com/s3/pricing/">Amazon S3 pricing</a>.</p>
174176
* </dd>
175177
* <dt>HTTP Host header syntax</dt>

‎clients/client-s3/src/commands/CreateBucketCommand.ts

+16-7
Original file line numberDiff line numberDiff line change
@@ -94,13 +94,22 @@ export interface CreateBucketCommandOutput extends CreateBucketOutput, __Metadat
9494
* <code>x-amz-object-ownership</code> header, then the
9595
* <code>s3:PutBucketOwnershipControls</code> permission is required.</p>
9696
* <important>
97-
* <p>If your <code>CreateBucket</code> request sets <code>BucketOwnerEnforced</code> for
98-
* Amazon S3 Object Ownership and specifies a bucket ACL that provides access to an external
99-
* Amazon Web Services account, your request fails with a <code>400</code> error and returns the
100-
* <code>InvalidBucketAcLWithObjectOwnership</code> error code. For more information,
101-
* see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-ownership-existing-bucket.html">Setting Object
102-
* Ownership on an existing bucket </a> in the <i>Amazon S3 User Guide</i>.
103-
* </p>
97+
* <p> To set an ACL on a bucket as part of a
98+
* <code>CreateBucket</code> request, you must explicitly set S3
99+
* Object Ownership for the bucket to a different value than the
100+
* default, <code>BucketOwnerEnforced</code>. Additionally, if your
101+
* desired bucket ACL grants public access, you must first create the
102+
* bucket (without the bucket ACL) and then explicitly disable Block
103+
* Public Access on the bucket before using <code>PutBucketAcl</code>
104+
* to set the ACL. If you try to create a bucket with a public ACL,
105+
* the request will fail. </p>
106+
* <p> For the majority of modern use cases in S3, we recommend
107+
* that you keep all Block Public Access settings enabled and keep
108+
* ACLs disabled. If you would like to share data with users outside
109+
* of your account, you can use bucket policies as needed. For more
110+
* information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/about-object-ownership.html">Controlling ownership of objects and disabling ACLs for your
111+
* bucket </a> and <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/access-control-block-public-access.html">Blocking public access to your Amazon S3 storage </a> in
112+
* the <i>Amazon S3 User Guide</i>. </p>
104113
* </important>
105114
* </li>
106115
* <li>

‎clients/client-s3/src/commands/DeleteObjectCommand.ts

+6-5
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ export interface DeleteObjectCommandOutput extends DeleteObjectOutput, __Metadat
3030
* <p>Removes an object from a bucket. The behavior depends on the bucket's versioning state: </p>
3131
* <ul>
3232
* <li>
33-
* <p>If versioning is enabled, the operation removes the null version (if there is one) of an object and inserts a delete marker,
34-
* which becomes the latest version of the object. If there isn't a null version, Amazon S3 does
35-
* not remove any objects but will still respond that the command was successful.</p>
33+
* <p>If bucket versioning is not enabled, the operation permanently deletes the object.</p>
3634
* </li>
3735
* <li>
38-
* <p>If versioning is suspended or not enabled, the operation permanently deletes the object.</p>
36+
* <p>If bucket versioning is enabled, the operation inserts a delete marker, which becomes the current version of the object. To permanently delete an object in a versioned bucket, you must include the object’s <code>versionId</code> in the request. For more information about versioning-enabled buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeletingObjectVersions.html">Deleting object versions from a versioning-enabled bucket</a>.</p>
37+
* </li>
38+
* <li>
39+
* <p>If bucket versioning is suspended, the operation removes the object that has a null <code>versionId</code>, if there is one, and inserts a delete marker that becomes the current version of the object. If there isn't an object with a null <code>versionId</code>, and all versions of the object have a <code>versionId</code>, Amazon S3 does not remove the object and only inserts a delete marker. To permanently delete an object that has a <code>versionId</code>, you must include the object’s <code>versionId</code> in the request. For more information about versioning-suspended buckets, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/DeletingObjectsfromVersioningSuspendedBuckets.html">Deleting objects from versioning-suspended buckets</a>.</p>
3940
* </li>
4041
* </ul>
4142
* <note>
@@ -95,7 +96,7 @@ export interface DeleteObjectCommandOutput extends DeleteObjectOutput, __Metadat
9596
* <p>
9697
* <b>
9798
* <code>s3:DeleteObjectVersion</code>
98-
* </b> - To delete a specific version of an object from a versiong-enabled bucket, you must have the <code>s3:DeleteObjectVersion</code> permission.</p>
99+
* </b> - To delete a specific version of an object from a versioning-enabled bucket, you must have the <code>s3:DeleteObjectVersion</code> permission.</p>
99100
* </li>
100101
* </ul>
101102
* </li>

‎clients/client-s3/src/commands/GetBucketLifecycleConfigurationCommand.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ export interface GetBucketLifecycleConfigurationCommandOutput
3636
* <p>This operation is not supported by directory buckets.</p>
3737
* </note>
3838
* <note>
39-
* <p>Bucket lifecycle configuration now supports specifying a lifecycle rule using an
40-
* object key name prefix, one or more object tags, or a combination of both. Accordingly,
39+
* <p>Bucket lifecycle configuration now supports specifying a lifecycle rule using an object key name prefix, one or more object tags, object size, or any combination of these. Accordingly, this section describes the latest API. The previous version of the API supported filtering based only on an object key name prefix, which is supported for backward compatibility.
40+
* For the related API description, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycle.html">GetBucketLifecycle</a>. Accordingly,
4141
* this section describes the latest API. The response describes the new filter element
4242
* that you can use to specify a filter to select a subset of objects to which the rule
4343
* applies. If you are using a previous version of the lifecycle configuration, it still
44-
* works. For the earlier action, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketLifecycle.html">GetBucketLifecycle</a>.</p>
44+
* works. For the earlier action, </p>
4545
* </note>
4646
* <p>Returns the lifecycle configuration information set on the bucket. For information about
4747
* lifecycle configuration, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lifecycle-mgmt.html">Object Lifecycle

‎clients/client-s3/src/commands/HeadBucketCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export interface HeadBucketCommandOutput extends HeadBucketOutput, __MetadataBea
3232
* <p>If the bucket does not exist or you do not have permission to access it, the
3333
* <code>HEAD</code> request returns a generic <code>400 Bad Request</code>, <code>403
3434
* Forbidden</code> or <code>404 Not Found</code> code. A message body is not included, so
35-
* you cannot determine the exception beyond these error codes.</p>
35+
* you cannot determine the exception beyond these HTTP response codes.</p>
3636
* <note>
3737
* <p>
3838
* <b>Directory buckets </b> - You must make requests for this API operation to the Zonal endpoint. These endpoints support virtual-hosted-style requests in the format <code>https://<i>bucket_name</i>.s3express-<i>az_id</i>.<i>region</i>.amazonaws.com</code>. Path-style requests are not supported. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-express-Regions-and-Zones.html">Regional and Zonal endpoints</a> in the

‎clients/client-s3/src/commands/PutBucketLifecycleConfigurationCommand.ts

+3-8
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,8 @@ export interface PutBucketLifecycleConfigurationCommandOutput extends __Metadata
4040
* lifecycle configuration. For information about lifecycle configuration, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lifecycle-mgmt.html">Managing
4141
* your storage lifecycle</a>.</p>
4242
* <note>
43-
* <p>Bucket lifecycle configuration now supports specifying a lifecycle rule using an
44-
* object key name prefix, one or more object tags, or a combination of both. Accordingly,
45-
* this section describes the latest API. The previous version of the API supported
46-
* filtering based only on an object key name prefix, which is supported for backward
47-
* compatibility. For the related API description, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycle.html">PutBucketLifecycle</a>.</p>
43+
* <p>Bucket lifecycle configuration now supports specifying a lifecycle rule using an object key name prefix, one or more object tags, object size, or any combination of these. Accordingly, this section describes the latest API. The previous version of the API supported filtering based only on an object key name prefix, which is supported for backward compatibility.
44+
* For the related API description, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketLifecycle.html">PutBucketLifecycle</a>.</p>
4845
* </note>
4946
* <dl>
5047
* <dt>Rules</dt>
@@ -55,9 +52,7 @@ export interface PutBucketLifecycleConfigurationCommandOutput extends __Metadata
5552
* Each rule consists of the following:</p>
5653
* <ul>
5754
* <li>
58-
* <p>A filter identifying a subset of objects to which the rule applies. The
59-
* filter can be based on a key name prefix, object tags, or a combination of
60-
* both.</p>
55+
* <p>A filter identifying a subset of objects to which the rule applies. The filter can be based on a key name prefix, object tags, object size, or any combination of these.</p>
6156
* </li>
6257
* <li>
6358
* <p>A status indicating whether the rule is in effect.</p>

‎clients/client-s3/src/commands/RestoreObjectCommand.ts

+1-60
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ export interface RestoreObjectCommandOutput extends RestoreObjectOutput, __Metad
3737
* <ul>
3838
* <li>
3939
* <p>
40-
* <code>select</code> - Perform a select query on an archived object</p>
41-
* </li>
42-
* <li>
43-
* <p>
4440
* <code>restore an archive</code> - Restore an archived object</p>
4541
* </li>
4642
* </ul>
@@ -65,60 +61,6 @@ export interface RestoreObjectCommandOutput extends RestoreObjectOutput, __Metad
6561
* </p>
6662
* </li>
6763
* </ul>
68-
* <p>Define the SQL expression for the <code>SELECT</code> type of restoration for your query
69-
* in the request body's <code>SelectParameters</code> structure. You can use expressions like
70-
* the following examples.</p>
71-
* <ul>
72-
* <li>
73-
* <p>The following expression returns all records from the specified object.</p>
74-
* <p>
75-
* <code>SELECT * FROM Object</code>
76-
* </p>
77-
* </li>
78-
* <li>
79-
* <p>Assuming that you are not using any headers for data stored in the object, you can
80-
* specify columns with positional headers.</p>
81-
* <p>
82-
* <code>SELECT s._1, s._2 FROM Object s WHERE s._3 > 100</code>
83-
* </p>
84-
* </li>
85-
* <li>
86-
* <p>If you have headers and you set the <code>fileHeaderInfo</code> in the
87-
* <code>CSV</code> structure in the request body to <code>USE</code>, you can
88-
* specify headers in the query. (If you set the <code>fileHeaderInfo</code> field to
89-
* <code>IGNORE</code>, the first row is skipped for the query.) You cannot mix
90-
* ordinal positions with header column names. </p>
91-
* <p>
92-
* <code>SELECT s.Id, s.FirstName, s.SSN FROM S3Object s</code>
93-
* </p>
94-
* </li>
95-
* </ul>
96-
* <p>When making a select request, you can also do the following:</p>
97-
* <ul>
98-
* <li>
99-
* <p>To expedite your queries, specify the <code>Expedited</code> tier. For more
100-
* information about tiers, see "Restoring Archives," later in this topic.</p>
101-
* </li>
102-
* <li>
103-
* <p>Specify details about the data serialization format of both the input object that
104-
* is being queried and the serialization of the CSV-encoded query results.</p>
105-
* </li>
106-
* </ul>
107-
* <p>The following are additional important facts about the select feature:</p>
108-
* <ul>
109-
* <li>
110-
* <p>The output results are new Amazon S3 objects. Unlike archive retrievals, they are
111-
* stored until explicitly deleted-manually or through a lifecycle configuration.</p>
112-
* </li>
113-
* <li>
114-
* <p>You can issue more than one select request on the same Amazon S3 object. Amazon S3 doesn't
115-
* duplicate requests, so avoid issuing duplicate requests.</p>
116-
* </li>
117-
* <li>
118-
* <p> Amazon S3 accepts a select request even if the object has already been restored. A
119-
* select request doesn’t return error response <code>409</code>.</p>
120-
* </li>
121-
* </ul>
12264
* <dl>
12365
* <dt>Permissions</dt>
12466
* <dd>
@@ -234,8 +176,7 @@ export interface RestoreObjectCommandOutput extends RestoreObjectOutput, __Metad
234176
* </li>
235177
* <li>
236178
* <p>
237-
* <i>Cause: Object restore is already in progress. (This error
238-
* does not apply to SELECT type requests.)</i>
179+
* <i>Cause: Object restore is already in progress.</i>
239180
* </p>
240181
* </li>
241182
* <li>

‎clients/client-s3/src/commands/UploadPartCopyCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export interface UploadPartCopyCommandOutput extends UploadPartCopyOutput, __Met
8484
* </li>
8585
* <li>
8686
* <p>If the destination bucket is a general purpose bucket, you must have the <b>
87-
* <code>s3:PubObject</code>
87+
* <code>s3:PutObject</code>
8888
* </b> permission to write the object copy to the destination bucket.
8989
* </p>
9090
* </li>

‎clients/client-s3/src/models/models_0.ts

+38-32
Large diffs are not rendered by default.

‎clients/client-s3/src/models/models_1.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ export interface PutObjectRequest {
574574
* <b>Directory buckets</b> - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format <code>
575575
* <i>Bucket_name</i>.s3express-<i>az_id</i>.<i>region</i>.amazonaws.com</code>. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the format <code>
576576
* <i>bucket_base_name</i>--<i>az-id</i>--x-s3</code> (for example, <code>
577-
* <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az2</i>--x-s3</code>). For information about bucket naming
577+
* <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming
578578
* restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming
579579
* rules</a> in the <i>Amazon S3 User Guide</i>.</p>
580580
* <p>
@@ -2681,7 +2681,7 @@ export interface UploadPartRequest {
26812681
* <b>Directory buckets</b> - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format <code>
26822682
* <i>Bucket_name</i>.s3express-<i>az_id</i>.<i>region</i>.amazonaws.com</code>. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the format <code>
26832683
* <i>bucket_base_name</i>--<i>az-id</i>--x-s3</code> (for example, <code>
2684-
* <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az2</i>--x-s3</code>). For information about bucket naming
2684+
* <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming
26852685
* restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming
26862686
* rules</a> in the <i>Amazon S3 User Guide</i>.</p>
26872687
* <p>
@@ -2986,7 +2986,7 @@ export interface UploadPartCopyRequest {
29862986
* <b>Directory buckets</b> - When you use this operation with a directory bucket, you must use virtual-hosted-style requests in the format <code>
29872987
* <i>Bucket_name</i>.s3express-<i>az_id</i>.<i>region</i>.amazonaws.com</code>. Path-style requests are not supported. Directory bucket names must be unique in the chosen Availability Zone. Bucket names must follow the format <code>
29882988
* <i>bucket_base_name</i>--<i>az-id</i>--x-s3</code> (for example, <code>
2989-
* <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az2</i>--x-s3</code>). For information about bucket naming
2989+
* <i>DOC-EXAMPLE-BUCKET</i>--<i>usw2-az1</i>--x-s3</code>). For information about bucket naming
29902990
* restrictions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/directory-bucket-naming-rules.html">Directory bucket naming
29912991
* rules</a> in the <i>Amazon S3 User Guide</i>.</p>
29922992
* <p>

‎codegen/sdk-codegen/aws-models/s3.json

+93-93
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.