Skip to content

Commit d3b2e8c

Browse files
author
awstools
committed
docs(client-s3): Documentation only update for doc bug fixes for the S3 API docs.
1 parent 75a68fd commit d3b2e8c

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

clients/client-s3/src/S3.ts

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5979,8 +5979,9 @@ export class S3 extends S3Client {
59795979
* <b>Rules</b>
59805980
* </p>
59815981
* <p>You specify the lifecycle configuration in your request body. The lifecycle
5982-
* configuration is specified as XML consisting of one or more rules. Each rule consists of
5983-
* the following:</p>
5982+
* configuration is specified as XML consisting of one or more rules. An Amazon S3 Lifecycle
5983+
* configuration can have up to 1,000 rules. This limit is not adjustable. Each rule consists
5984+
* of the following:</p>
59845985
*
59855986
* <ul>
59865987
* <li>
@@ -8147,8 +8148,8 @@ export class S3 extends S3Client {
81478148
* <p>Part numbers can be any number from 1 to 10,000, inclusive. A part number uniquely
81488149
* identifies a part and also defines its position within the object being created. If you
81498150
* upload a new part using the same part number that was used with a previous part, the
8150-
* previously uploaded part is overwritten. Each part must be at least 5 MB in size, except
8151-
* the last part. There is no size limit on the last part of your multipart upload.</p>
8151+
* previously uploaded part is overwritten.</p>
8152+
* <p>For information about maximum and minimum part sizes and other multipart upload specifications, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/qfacts.html">Multipart upload limits</a> in the <i>Amazon S3 User Guide</i>.</p>
81528153
* <p>To ensure that data is not corrupted when traversing the network, specify the
81538154
* <code>Content-MD5</code> header in the upload part request. Amazon S3 checks the part data
81548155
* against the provided MD5 value. If they do not match, Amazon S3 returns an error. </p>
@@ -8300,9 +8301,7 @@ export class S3 extends S3Client {
83008301
* data source by adding the request header <code>x-amz-copy-source</code> in your request and
83018302
* a byte range by adding the request header <code>x-amz-copy-source-range</code> in your
83028303
* request. </p>
8303-
* <p>The minimum allowable part size for a multipart upload is 5 MB. For more information
8304-
* about multipart upload limits, go to <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/qfacts.html">Quick
8305-
* Facts</a> in the <i>Amazon S3 User Guide</i>. </p>
8304+
* <p>For information about maximum and minimum part sizes and other multipart upload specifications, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/qfacts.html">Multipart upload limits</a> in the <i>Amazon S3 User Guide</i>. </p>
83068305
* <note>
83078306
* <p>Instead of using an existing object as part data, you might use the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>
83088307
* action and provide data in your request.</p>

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ export interface PutBucketLifecycleConfigurationCommandOutput extends __Metadata
4444
* <b>Rules</b>
4545
* </p>
4646
* <p>You specify the lifecycle configuration in your request body. The lifecycle
47-
* configuration is specified as XML consisting of one or more rules. Each rule consists of
48-
* the following:</p>
47+
* configuration is specified as XML consisting of one or more rules. An Amazon S3 Lifecycle
48+
* configuration can have up to 1,000 rules. This limit is not adjustable. Each rule consists
49+
* of the following:</p>
4950
*
5051
* <ul>
5152
* <li>

clients/client-s3/src/commands/UploadPartCommand.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ export interface UploadPartCommandOutput extends UploadPartOutput, __MetadataBea
4848
* <p>Part numbers can be any number from 1 to 10,000, inclusive. A part number uniquely
4949
* identifies a part and also defines its position within the object being created. If you
5050
* upload a new part using the same part number that was used with a previous part, the
51-
* previously uploaded part is overwritten. Each part must be at least 5 MB in size, except
52-
* the last part. There is no size limit on the last part of your multipart upload.</p>
51+
* previously uploaded part is overwritten.</p>
52+
* <p>For information about maximum and minimum part sizes and other multipart upload specifications, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/qfacts.html">Multipart upload limits</a> in the <i>Amazon S3 User Guide</i>.</p>
5353
* <p>To ensure that data is not corrupted when traversing the network, specify the
5454
* <code>Content-MD5</code> header in the upload part request. Amazon S3 checks the part data
5555
* against the provided MD5 value. If they do not match, Amazon S3 returns an error. </p>

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ export interface UploadPartCopyCommandOutput extends UploadPartCopyOutput, __Met
2929
* data source by adding the request header <code>x-amz-copy-source</code> in your request and
3030
* a byte range by adding the request header <code>x-amz-copy-source-range</code> in your
3131
* request. </p>
32-
* <p>The minimum allowable part size for a multipart upload is 5 MB. For more information
33-
* about multipart upload limits, go to <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/qfacts.html">Quick
34-
* Facts</a> in the <i>Amazon S3 User Guide</i>. </p>
32+
* <p>For information about maximum and minimum part sizes and other multipart upload specifications, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/qfacts.html">Multipart upload limits</a> in the <i>Amazon S3 User Guide</i>. </p>
3533
* <note>
3634
* <p>Instead of using an existing object as part data, you might use the <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/API_UploadPart.html">UploadPart</a>
3735
* action and provide data in your request.</p>

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5439,7 +5439,7 @@ export namespace LifecycleRuleFilter {
54395439
export interface NoncurrentVersionExpiration {
54405440
/**
54415441
* <p>Specifies the number of days an object is noncurrent before Amazon S3 can perform the
5442-
* associated action. For information about the noncurrent days calculations, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/intro-lifecycle-rules.html#non-current-days-calculations">How
5442+
* associated action. The value must be a non-zero positive integer. For information about the noncurrent days calculations, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/dev/intro-lifecycle-rules.html#non-current-days-calculations">How
54435443
* Amazon S3 Calculates When an Object Became Noncurrent</a> in the <i>Amazon S3 User Guide</i>.</p>
54445444
*/
54455445
NoncurrentDays?: number;
@@ -9911,7 +9911,9 @@ export interface _Object {
99119911
* </li>
99129912
* <li>
99139913
* <p>If an object is created by either the Multipart Upload or Part Copy operation, the
9914-
* ETag is not an MD5 digest, regardless of the method of encryption.</p>
9914+
* ETag is not an MD5 digest, regardless of the method of encryption. If an object
9915+
* is larger than 16 MB, the Amazon Web Services Management Console will upload or copy that object as a
9916+
* Multipart Upload, and therefore the ETag will not be an MD5 digest.</p>
99159917
* </li>
99169918
* </ul>
99179919
*/

0 commit comments

Comments
 (0)