@aws-sdk/client-s3-control 3.454.0 → 3.457.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +10 -10
- package/dist-cjs/protocols/Aws_restXml.js +119 -0
- package/dist-es/models/models_0.js +9 -9
- package/dist-es/protocols/Aws_restXml.js +119 -0
- package/dist-types/commands/CreateJobCommand.d.ts +16 -0
- package/dist-types/commands/DeleteStorageLensGroupCommand.d.ts +4 -5
- package/dist-types/commands/DescribeJobCommand.d.ts +16 -0
- package/dist-types/commands/GetBucketReplicationCommand.d.ts +2 -1
- package/dist-types/commands/GetStorageLensGroupCommand.d.ts +4 -5
- package/dist-types/commands/ListStorageLensGroupsCommand.d.ts +4 -6
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -3
- package/dist-types/commands/PutBucketReplicationCommand.d.ts +9 -8
- package/dist-types/commands/PutBucketVersioningCommand.d.ts +5 -5
- package/dist-types/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +2 -1
- package/dist-types/commands/TagResourceCommand.d.ts +6 -4
- package/dist-types/commands/UpdateStorageLensGroupCommand.d.ts +4 -5
- package/dist-types/models/models_0.d.ts +219 -231
- package/dist-types/ts3.4/models/models_0.d.ts +20 -11
- package/package.json +1 -1
|
@@ -26,11 +26,13 @@ export interface TagResourceCommandOutput extends TagResourceResult, __MetadataB
|
|
|
26
26
|
* <p> Creates a new Amazon Web Services resource tag or updates an existing resource tag. You can add up to
|
|
27
27
|
* 50 Amazon Web Services resource tags for each S3 resource. </p>
|
|
28
28
|
* <p>To use this operation, you must have the permission to perform the
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
* <p>For information about S3 Tagging errors, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#S3TaggingErrorCodeList">List of Amazon S3
|
|
29
|
+
* <code>s3:TagResource</code> action. For more information about the required Storage Lens
|
|
30
|
+
* Groups permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions">Setting account permissions to use S3 Storage Lens groups</a>.</p>
|
|
31
|
+
* <p>For information about S3 Tagging errors, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#S3TaggingErrorCodeList">List of Amazon S3
|
|
32
|
+
* Tagging error codes</a>.</p>
|
|
32
33
|
* <note>
|
|
33
|
-
* <p>This operation is only supported for <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-lens-groups.html">S3 Storage Lens
|
|
34
|
+
* <p>This operation is only supported for <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage-lens-groups.html">S3 Storage Lens
|
|
35
|
+
* groups</a>.</p>
|
|
34
36
|
* </note>
|
|
35
37
|
* @example
|
|
36
38
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -23,13 +23,12 @@ export interface UpdateStorageLensGroupCommandOutput extends __MetadataBearer {
|
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
25
25
|
* @public
|
|
26
|
-
* <p>
|
|
27
|
-
* Updates the existing Storage Lens group.</p>
|
|
26
|
+
* <p> Updates the existing Storage Lens group.</p>
|
|
28
27
|
* <p>To use this operation, you must have the permission to perform the
|
|
29
|
-
*
|
|
30
|
-
*
|
|
28
|
+
* <code>s3:UpdateStorageLensGroup</code> action. For more information about the required
|
|
29
|
+
* Storage Lens Groups permissions, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/storage_lens_iam_permissions.html#storage_lens_groups_permissions">Setting account permissions to use S3 Storage Lens groups</a>.</p>
|
|
31
30
|
* <p>For information about Storage Lens groups errors, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#S3LensErrorCodeList">List of Amazon S3 Storage
|
|
32
|
-
*
|
|
31
|
+
* Lens error codes</a>.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
34
|
* ```javascript
|