@aws-sdk/client-s3-control 3.703.0 → 3.704.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/index.js CHANGED
@@ -557,6 +557,7 @@ var S3CannedAccessControlList = {
557
557
  var S3ChecksumAlgorithm = {
558
558
  CRC32: "CRC32",
559
559
  CRC32C: "CRC32C",
560
+ CRC64NVME: "CRC64NVME",
560
561
  SHA1: "SHA1",
561
562
  SHA256: "SHA256"
562
563
  };
@@ -169,6 +169,7 @@ export const S3CannedAccessControlList = {
169
169
  export const S3ChecksumAlgorithm = {
170
170
  CRC32: "CRC32",
171
171
  CRC32C: "CRC32C",
172
+ CRC64NVME: "CRC64NVME",
172
173
  SHA1: "SHA1",
173
174
  SHA256: "SHA256",
174
175
  };
@@ -130,7 +130,7 @@ declare const CreateJobCommand_base: {
130
130
  * ObjectLockMode: "COMPLIANCE" || "GOVERNANCE",
131
131
  * ObjectLockRetainUntilDate: new Date("TIMESTAMP"),
132
132
  * BucketKeyEnabled: true || false,
133
- * ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256",
133
+ * ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
134
134
  * },
135
135
  * S3PutObjectAcl: { // S3SetObjectAclOperation
136
136
  * AccessControlPolicy: { // S3AccessControlPolicy
@@ -144,7 +144,7 @@ declare const DescribeJobCommand_base: {
144
144
  * // ObjectLockMode: "COMPLIANCE" || "GOVERNANCE",
145
145
  * // ObjectLockRetainUntilDate: new Date("TIMESTAMP"),
146
146
  * // BucketKeyEnabled: true || false,
147
- * // ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256",
147
+ * // ChecksumAlgorithm: "CRC32" || "CRC32C" || "SHA1" || "SHA256" || "CRC64NVME",
148
148
  * // },
149
149
  * // S3PutObjectAcl: { // S3SetObjectAclOperation
150
150
  * // AccessControlPolicy: { // S3AccessControlPolicy
@@ -2139,6 +2139,7 @@ export interface S3SetObjectAclOperation {
2139
2139
  export declare const S3ChecksumAlgorithm: {
2140
2140
  readonly CRC32: "CRC32";
2141
2141
  readonly CRC32C: "CRC32C";
2142
+ readonly CRC64NVME: "CRC64NVME";
2142
2143
  readonly SHA1: "SHA1";
2143
2144
  readonly SHA256: "SHA256";
2144
2145
  };
@@ -2309,12 +2310,8 @@ export interface S3CopyObjectOperation {
2309
2310
  * <li>
2310
2311
  * <p>
2311
2312
  * <b>Directory buckets</b> - For example, to copy objects to a directory bucket named
2312
- * <code>destinationBucket</code> in the Availability Zone identified by the AZ ID <code>usw2-az1</code>, set the <code>TargetResource</code> property to
2313
- * <code>arn:aws:s3express:<i>region</i>:<i>account_id</i>:/bucket/<i>destination_bucket_base_name</i>--<i>usw2-az1</i>--x-s3</code>. A directory bucket as a destination bucket can be in Availability Zone or Local Zone. </p>
2314
- * <note>
2315
- * <p>Copying objects across different Amazon Web Services Regions isn't supported when the source or destination bucket is in Amazon Web Services Local Zones. The source and destination buckets must have the same parent Amazon Web Services Region. Otherwise,
2316
- * you get an HTTP <code>400 Bad Request</code> error with the error code <code>InvalidRequest</code>.</p>
2317
- * </note>
2313
+ * <code>destinationBucket</code> in the Availability Zone; identified by the AZ ID <code>usw2-az1</code>, set the <code>TargetResource</code> property to
2314
+ * <code>arn:aws:s3express:<i>region</i>:<i>account_id</i>:/bucket/<i>destination_bucket_base_name</i>--<i>usw2-az1</i>--x-s3</code>.</p>
2318
2315
  * </li>
2319
2316
  * </ul>
2320
2317
  * @public
@@ -573,6 +573,7 @@ export interface S3SetObjectAclOperation {
573
573
  export declare const S3ChecksumAlgorithm: {
574
574
  readonly CRC32: "CRC32";
575
575
  readonly CRC32C: "CRC32C";
576
+ readonly CRC64NVME: "CRC64NVME";
576
577
  readonly SHA1: "SHA1";
577
578
  readonly SHA256: "SHA256";
578
579
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3-control",
3
3
  "description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native",
4
- "version": "3.703.0",
4
+ "version": "3.704.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-s3-control",