@aws-sdk/client-s3-control 3.452.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 +2 -2
|
@@ -307,6 +307,22 @@ export interface JobManifest {
|
|
|
307
307
|
Spec: JobManifestSpec | undefined;
|
|
308
308
|
Location: JobManifestLocation | undefined;
|
|
309
309
|
}
|
|
310
|
+
export interface KeyNameConstraint {
|
|
311
|
+
MatchAnyPrefix?: string[];
|
|
312
|
+
MatchAnySuffix?: string[];
|
|
313
|
+
MatchAnySubstring?: string[];
|
|
314
|
+
}
|
|
315
|
+
export declare const S3StorageClass: {
|
|
316
|
+
readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
|
|
317
|
+
readonly GLACIER: "GLACIER";
|
|
318
|
+
readonly GLACIER_IR: "GLACIER_IR";
|
|
319
|
+
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
320
|
+
readonly ONEZONE_IA: "ONEZONE_IA";
|
|
321
|
+
readonly STANDARD: "STANDARD";
|
|
322
|
+
readonly STANDARD_IA: "STANDARD_IA";
|
|
323
|
+
};
|
|
324
|
+
export type S3StorageClass =
|
|
325
|
+
(typeof S3StorageClass)[keyof typeof S3StorageClass];
|
|
310
326
|
export declare const ReplicationStatus: {
|
|
311
327
|
readonly COMPLETED: "COMPLETED";
|
|
312
328
|
readonly FAILED: "FAILED";
|
|
@@ -320,6 +336,10 @@ export interface JobManifestGeneratorFilter {
|
|
|
320
336
|
CreatedAfter?: Date;
|
|
321
337
|
CreatedBefore?: Date;
|
|
322
338
|
ObjectReplicationStatuses?: ReplicationStatus[];
|
|
339
|
+
KeyNameConstraint?: KeyNameConstraint;
|
|
340
|
+
ObjectSizeGreaterThanBytes?: number;
|
|
341
|
+
ObjectSizeLessThanBytes?: number;
|
|
342
|
+
MatchAnyStorageClass?: S3StorageClass[];
|
|
323
343
|
}
|
|
324
344
|
export interface SSEKMSEncryption {
|
|
325
345
|
KeyId: string | undefined;
|
|
@@ -479,17 +499,6 @@ export declare const S3ObjectLockMode: {
|
|
|
479
499
|
};
|
|
480
500
|
export type S3ObjectLockMode =
|
|
481
501
|
(typeof S3ObjectLockMode)[keyof typeof S3ObjectLockMode];
|
|
482
|
-
export declare const S3StorageClass: {
|
|
483
|
-
readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
|
|
484
|
-
readonly GLACIER: "GLACIER";
|
|
485
|
-
readonly GLACIER_IR: "GLACIER_IR";
|
|
486
|
-
readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
|
|
487
|
-
readonly ONEZONE_IA: "ONEZONE_IA";
|
|
488
|
-
readonly STANDARD: "STANDARD";
|
|
489
|
-
readonly STANDARD_IA: "STANDARD_IA";
|
|
490
|
-
};
|
|
491
|
-
export type S3StorageClass =
|
|
492
|
-
(typeof S3StorageClass)[keyof typeof S3StorageClass];
|
|
493
502
|
export interface S3CopyObjectOperation {
|
|
494
503
|
TargetResource?: string;
|
|
495
504
|
CannedAccessControlList?: S3CannedAccessControlList;
|
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.
|
|
4
|
+
"version": "3.457.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
26
|
-
"@aws-sdk/client-sts": "3.
|
|
26
|
+
"@aws-sdk/client-sts": "3.454.0",
|
|
27
27
|
"@aws-sdk/core": "3.451.0",
|
|
28
28
|
"@aws-sdk/credential-provider-node": "3.451.0",
|
|
29
29
|
"@aws-sdk/middleware-host-header": "3.451.0",
|