@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.
@@ -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.452.0",
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.451.0",
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",