@aws-sdk/client-s3-control 3.301.0 → 3.303.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.
@@ -3,16 +3,18 @@ import { S3ControlServiceException as __BaseException } from "./S3ControlService
3
3
  export interface AbortIncompleteMultipartUpload {
4
4
  DaysAfterInitiation?: number;
5
5
  }
6
- export declare enum OwnerOverride {
7
- Destination = "Destination",
8
- }
6
+ export declare const OwnerOverride: {
7
+ readonly Destination: "Destination";
8
+ };
9
+ export type OwnerOverride = (typeof OwnerOverride)[keyof typeof OwnerOverride];
9
10
  export interface AccessControlTranslation {
10
11
  Owner: OwnerOverride | string | undefined;
11
12
  }
12
- export declare enum NetworkOrigin {
13
- Internet = "Internet",
14
- VPC = "VPC",
15
- }
13
+ export declare const NetworkOrigin: {
14
+ readonly Internet: "Internet";
15
+ readonly VPC: "VPC";
16
+ };
17
+ export type NetworkOrigin = (typeof NetworkOrigin)[keyof typeof NetworkOrigin];
16
18
  export interface VpcConfiguration {
17
19
  VpcId: string | undefined;
18
20
  }
@@ -69,11 +71,13 @@ export interface AsyncErrorDetails {
69
71
  Resource?: string;
70
72
  RequestId?: string;
71
73
  }
72
- export declare enum AsyncOperationName {
73
- CreateMultiRegionAccessPoint = "CreateMultiRegionAccessPoint",
74
- DeleteMultiRegionAccessPoint = "DeleteMultiRegionAccessPoint",
75
- PutMultiRegionAccessPointPolicy = "PutMultiRegionAccessPointPolicy",
76
- }
74
+ export declare const AsyncOperationName: {
75
+ readonly CreateMultiRegionAccessPoint: "CreateMultiRegionAccessPoint";
76
+ readonly DeleteMultiRegionAccessPoint: "DeleteMultiRegionAccessPoint";
77
+ readonly PutMultiRegionAccessPointPolicy: "PutMultiRegionAccessPointPolicy";
78
+ };
79
+ export type AsyncOperationName =
80
+ (typeof AsyncOperationName)[keyof typeof AsyncOperationName];
77
81
  export interface PublicAccessBlockConfiguration {
78
82
  BlockPublicAcls?: boolean;
79
83
  IgnorePublicAcls?: boolean;
@@ -136,18 +140,22 @@ export interface CreateAccessPointResult {
136
140
  AccessPointArn?: string;
137
141
  Alias?: string;
138
142
  }
139
- export declare enum ObjectLambdaAllowedFeature {
140
- GetObjectPartNumber = "GetObject-PartNumber",
141
- GetObjectRange = "GetObject-Range",
142
- HeadObjectPartNumber = "HeadObject-PartNumber",
143
- HeadObjectRange = "HeadObject-Range",
144
- }
145
- export declare enum ObjectLambdaTransformationConfigurationAction {
146
- GetObject = "GetObject",
147
- HeadObject = "HeadObject",
148
- ListObjects = "ListObjects",
149
- ListObjectsV2 = "ListObjectsV2",
150
- }
143
+ export declare const ObjectLambdaAllowedFeature: {
144
+ readonly GetObjectPartNumber: "GetObject-PartNumber";
145
+ readonly GetObjectRange: "GetObject-Range";
146
+ readonly HeadObjectPartNumber: "HeadObject-PartNumber";
147
+ readonly HeadObjectRange: "HeadObject-Range";
148
+ };
149
+ export type ObjectLambdaAllowedFeature =
150
+ (typeof ObjectLambdaAllowedFeature)[keyof typeof ObjectLambdaAllowedFeature];
151
+ export declare const ObjectLambdaTransformationConfigurationAction: {
152
+ readonly GetObject: "GetObject";
153
+ readonly HeadObject: "HeadObject";
154
+ readonly ListObjects: "ListObjects";
155
+ readonly ListObjectsV2: "ListObjectsV2";
156
+ };
157
+ export type ObjectLambdaTransformationConfigurationAction =
158
+ (typeof ObjectLambdaTransformationConfigurationAction)[keyof typeof ObjectLambdaTransformationConfigurationAction];
151
159
  export type ObjectLambdaContentTransformation =
152
160
  | ObjectLambdaContentTransformation.AwsLambdaMember
153
161
  | ObjectLambdaContentTransformation.$UnknownMember;
@@ -188,10 +196,12 @@ export interface CreateAccessPointForObjectLambdaRequest {
188
196
  Name: string | undefined;
189
197
  Configuration: ObjectLambdaConfiguration | undefined;
190
198
  }
191
- export declare enum ObjectLambdaAccessPointAliasStatus {
192
- PROVISIONING = "PROVISIONING",
193
- READY = "READY",
194
- }
199
+ export declare const ObjectLambdaAccessPointAliasStatus: {
200
+ readonly PROVISIONING: "PROVISIONING";
201
+ readonly READY: "READY";
202
+ };
203
+ export type ObjectLambdaAccessPointAliasStatus =
204
+ (typeof ObjectLambdaAccessPointAliasStatus)[keyof typeof ObjectLambdaAccessPointAliasStatus];
195
205
  export interface ObjectLambdaAccessPointAlias {
196
206
  Value?: string;
197
207
  Status?: ObjectLambdaAccessPointAliasStatus | string;
@@ -214,25 +224,29 @@ export declare class BucketAlreadyOwnedByYou extends __BaseException {
214
224
  opts: __ExceptionOptionType<BucketAlreadyOwnedByYou, __BaseException>
215
225
  );
216
226
  }
217
- export declare enum BucketCannedACL {
218
- authenticated_read = "authenticated-read",
219
- private = "private",
220
- public_read = "public-read",
221
- public_read_write = "public-read-write",
222
- }
223
- export declare enum BucketLocationConstraint {
224
- EU = "EU",
225
- ap_northeast_1 = "ap-northeast-1",
226
- ap_south_1 = "ap-south-1",
227
- ap_southeast_1 = "ap-southeast-1",
228
- ap_southeast_2 = "ap-southeast-2",
229
- cn_north_1 = "cn-north-1",
230
- eu_central_1 = "eu-central-1",
231
- eu_west_1 = "eu-west-1",
232
- sa_east_1 = "sa-east-1",
233
- us_west_1 = "us-west-1",
234
- us_west_2 = "us-west-2",
235
- }
227
+ export declare const BucketCannedACL: {
228
+ readonly authenticated_read: "authenticated-read";
229
+ readonly private: "private";
230
+ readonly public_read: "public-read";
231
+ readonly public_read_write: "public-read-write";
232
+ };
233
+ export type BucketCannedACL =
234
+ (typeof BucketCannedACL)[keyof typeof BucketCannedACL];
235
+ export declare const BucketLocationConstraint: {
236
+ readonly EU: "EU";
237
+ readonly ap_northeast_1: "ap-northeast-1";
238
+ readonly ap_south_1: "ap-south-1";
239
+ readonly ap_southeast_1: "ap-southeast-1";
240
+ readonly ap_southeast_2: "ap-southeast-2";
241
+ readonly cn_north_1: "cn-north-1";
242
+ readonly eu_central_1: "eu-central-1";
243
+ readonly eu_west_1: "eu-west-1";
244
+ readonly sa_east_1: "sa-east-1";
245
+ readonly us_west_1: "us-west-1";
246
+ readonly us_west_2: "us-west-2";
247
+ };
248
+ export type BucketLocationConstraint =
249
+ (typeof BucketLocationConstraint)[keyof typeof BucketLocationConstraint];
236
250
  export interface CreateBucketConfiguration {
237
251
  LocationConstraint?: BucketLocationConstraint | string;
238
252
  }
@@ -265,16 +279,20 @@ export interface JobManifestLocation {
265
279
  ObjectVersionId?: string;
266
280
  ETag: string | undefined;
267
281
  }
268
- export declare enum JobManifestFieldName {
269
- Bucket = "Bucket",
270
- Ignore = "Ignore",
271
- Key = "Key",
272
- VersionId = "VersionId",
273
- }
274
- export declare enum JobManifestFormat {
275
- S3BatchOperations_CSV_20180820 = "S3BatchOperations_CSV_20180820",
276
- S3InventoryReport_CSV_20161130 = "S3InventoryReport_CSV_20161130",
277
- }
282
+ export declare const JobManifestFieldName: {
283
+ readonly Bucket: "Bucket";
284
+ readonly Ignore: "Ignore";
285
+ readonly Key: "Key";
286
+ readonly VersionId: "VersionId";
287
+ };
288
+ export type JobManifestFieldName =
289
+ (typeof JobManifestFieldName)[keyof typeof JobManifestFieldName];
290
+ export declare const JobManifestFormat: {
291
+ readonly S3BatchOperations_CSV_20180820: "S3BatchOperations_CSV_20180820";
292
+ readonly S3InventoryReport_CSV_20161130: "S3InventoryReport_CSV_20161130";
293
+ };
294
+ export type JobManifestFormat =
295
+ (typeof JobManifestFormat)[keyof typeof JobManifestFormat];
278
296
  export interface JobManifestSpec {
279
297
  Format: JobManifestFormat | string | undefined;
280
298
  Fields?: (JobManifestFieldName | string)[];
@@ -283,12 +301,14 @@ export interface JobManifest {
283
301
  Spec: JobManifestSpec | undefined;
284
302
  Location: JobManifestLocation | undefined;
285
303
  }
286
- export declare enum ReplicationStatus {
287
- COMPLETED = "COMPLETED",
288
- FAILED = "FAILED",
289
- NONE = "NONE",
290
- REPLICA = "REPLICA",
291
- }
304
+ export declare const ReplicationStatus: {
305
+ readonly COMPLETED: "COMPLETED";
306
+ readonly FAILED: "FAILED";
307
+ readonly NONE: "NONE";
308
+ readonly REPLICA: "REPLICA";
309
+ };
310
+ export type ReplicationStatus =
311
+ (typeof ReplicationStatus)[keyof typeof ReplicationStatus];
292
312
  export interface JobManifestGeneratorFilter {
293
313
  EligibleForReplication?: boolean;
294
314
  CreatedAfter?: Date;
@@ -303,9 +323,11 @@ export interface GeneratedManifestEncryption {
303
323
  SSES3?: SSES3Encryption;
304
324
  SSEKMS?: SSEKMSEncryption;
305
325
  }
306
- export declare enum GeneratedManifestFormat {
307
- S3InventoryReport_CSV_20211130 = "S3InventoryReport_CSV_20211130",
308
- }
326
+ export declare const GeneratedManifestFormat: {
327
+ readonly S3InventoryReport_CSV_20211130: "S3InventoryReport_CSV_20211130";
328
+ };
329
+ export type GeneratedManifestFormat =
330
+ (typeof GeneratedManifestFormat)[keyof typeof GeneratedManifestFormat];
309
331
  export interface S3ManifestOutputLocation {
310
332
  ExpectedManifestBucketOwner?: string;
311
333
  Bucket: string | undefined;
@@ -342,31 +364,36 @@ export interface LambdaInvokeOperation {
342
364
  FunctionArn?: string;
343
365
  }
344
366
  export interface S3DeleteObjectTaggingOperation {}
345
- export declare enum S3GlacierJobTier {
346
- BULK = "BULK",
347
- STANDARD = "STANDARD",
348
- }
367
+ export declare const S3GlacierJobTier: {
368
+ readonly BULK: "BULK";
369
+ readonly STANDARD: "STANDARD";
370
+ };
371
+ export type S3GlacierJobTier =
372
+ (typeof S3GlacierJobTier)[keyof typeof S3GlacierJobTier];
349
373
  export interface S3InitiateRestoreObjectOperation {
350
374
  ExpirationInDays?: number;
351
375
  GlacierJobTier?: S3GlacierJobTier | string;
352
376
  }
353
- export declare enum S3GranteeTypeIdentifier {
354
- CANONICAL = "id",
355
- EMAIL_ADDRESS = "emailAddress",
356
- GROUP = "uri",
357
- }
377
+ export declare const S3GranteeTypeIdentifier: {
378
+ readonly CANONICAL: "id";
379
+ readonly EMAIL_ADDRESS: "emailAddress";
380
+ readonly GROUP: "uri";
381
+ };
382
+ export type S3GranteeTypeIdentifier =
383
+ (typeof S3GranteeTypeIdentifier)[keyof typeof S3GranteeTypeIdentifier];
358
384
  export interface S3Grantee {
359
385
  TypeIdentifier?: S3GranteeTypeIdentifier | string;
360
386
  Identifier?: string;
361
387
  DisplayName?: string;
362
388
  }
363
- export declare enum S3Permission {
364
- FULL_CONTROL = "FULL_CONTROL",
365
- READ = "READ",
366
- READ_ACP = "READ_ACP",
367
- WRITE = "WRITE",
368
- WRITE_ACP = "WRITE_ACP",
369
- }
389
+ export declare const S3Permission: {
390
+ readonly FULL_CONTROL: "FULL_CONTROL";
391
+ readonly READ: "READ";
392
+ readonly READ_ACP: "READ_ACP";
393
+ readonly WRITE: "WRITE";
394
+ readonly WRITE_ACP: "WRITE_ACP";
395
+ };
396
+ export type S3Permission = (typeof S3Permission)[keyof typeof S3Permission];
370
397
  export interface S3Grant {
371
398
  Grantee?: S3Grantee;
372
399
  Permission?: S3Permission | string;
@@ -379,15 +406,17 @@ export interface S3AccessControlList {
379
406
  Owner: S3ObjectOwner | undefined;
380
407
  Grants?: S3Grant[];
381
408
  }
382
- export declare enum S3CannedAccessControlList {
383
- AUTHENTICATED_READ = "authenticated-read",
384
- AWS_EXEC_READ = "aws-exec-read",
385
- BUCKET_OWNER_FULL_CONTROL = "bucket-owner-full-control",
386
- BUCKET_OWNER_READ = "bucket-owner-read",
387
- PRIVATE = "private",
388
- PUBLIC_READ = "public-read",
389
- PUBLIC_READ_WRITE = "public-read-write",
390
- }
409
+ export declare const S3CannedAccessControlList: {
410
+ readonly AUTHENTICATED_READ: "authenticated-read";
411
+ readonly AWS_EXEC_READ: "aws-exec-read";
412
+ readonly BUCKET_OWNER_FULL_CONTROL: "bucket-owner-full-control";
413
+ readonly BUCKET_OWNER_READ: "bucket-owner-read";
414
+ readonly PRIVATE: "private";
415
+ readonly PUBLIC_READ: "public-read";
416
+ readonly PUBLIC_READ_WRITE: "public-read-write";
417
+ };
418
+ export type S3CannedAccessControlList =
419
+ (typeof S3CannedAccessControlList)[keyof typeof S3CannedAccessControlList];
391
420
  export interface S3AccessControlPolicy {
392
421
  AccessControlList?: S3AccessControlList;
393
422
  CannedAccessControlList?: S3CannedAccessControlList | string;
@@ -395,20 +424,26 @@ export interface S3AccessControlPolicy {
395
424
  export interface S3SetObjectAclOperation {
396
425
  AccessControlPolicy?: S3AccessControlPolicy;
397
426
  }
398
- export declare enum S3ChecksumAlgorithm {
399
- CRC32 = "CRC32",
400
- CRC32C = "CRC32C",
401
- SHA1 = "SHA1",
402
- SHA256 = "SHA256",
403
- }
404
- export declare enum S3MetadataDirective {
405
- COPY = "COPY",
406
- REPLACE = "REPLACE",
407
- }
408
- export declare enum S3SSEAlgorithm {
409
- AES256 = "AES256",
410
- KMS = "KMS",
411
- }
427
+ export declare const S3ChecksumAlgorithm: {
428
+ readonly CRC32: "CRC32";
429
+ readonly CRC32C: "CRC32C";
430
+ readonly SHA1: "SHA1";
431
+ readonly SHA256: "SHA256";
432
+ };
433
+ export type S3ChecksumAlgorithm =
434
+ (typeof S3ChecksumAlgorithm)[keyof typeof S3ChecksumAlgorithm];
435
+ export declare const S3MetadataDirective: {
436
+ readonly COPY: "COPY";
437
+ readonly REPLACE: "REPLACE";
438
+ };
439
+ export type S3MetadataDirective =
440
+ (typeof S3MetadataDirective)[keyof typeof S3MetadataDirective];
441
+ export declare const S3SSEAlgorithm: {
442
+ readonly AES256: "AES256";
443
+ readonly KMS: "KMS";
444
+ };
445
+ export type S3SSEAlgorithm =
446
+ (typeof S3SSEAlgorithm)[keyof typeof S3SSEAlgorithm];
412
447
  export interface S3ObjectMetadata {
413
448
  CacheControl?: string;
414
449
  ContentDisposition?: string;
@@ -426,23 +461,29 @@ export interface S3Tag {
426
461
  Key: string | undefined;
427
462
  Value: string | undefined;
428
463
  }
429
- export declare enum S3ObjectLockLegalHoldStatus {
430
- OFF = "OFF",
431
- ON = "ON",
432
- }
433
- export declare enum S3ObjectLockMode {
434
- COMPLIANCE = "COMPLIANCE",
435
- GOVERNANCE = "GOVERNANCE",
436
- }
437
- export declare enum S3StorageClass {
438
- DEEP_ARCHIVE = "DEEP_ARCHIVE",
439
- GLACIER = "GLACIER",
440
- GLACIER_IR = "GLACIER_IR",
441
- INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
442
- ONEZONE_IA = "ONEZONE_IA",
443
- STANDARD = "STANDARD",
444
- STANDARD_IA = "STANDARD_IA",
445
- }
464
+ export declare const S3ObjectLockLegalHoldStatus: {
465
+ readonly OFF: "OFF";
466
+ readonly ON: "ON";
467
+ };
468
+ export type S3ObjectLockLegalHoldStatus =
469
+ (typeof S3ObjectLockLegalHoldStatus)[keyof typeof S3ObjectLockLegalHoldStatus];
470
+ export declare const S3ObjectLockMode: {
471
+ readonly COMPLIANCE: "COMPLIANCE";
472
+ readonly GOVERNANCE: "GOVERNANCE";
473
+ };
474
+ export type S3ObjectLockMode =
475
+ (typeof S3ObjectLockMode)[keyof typeof S3ObjectLockMode];
476
+ export declare const S3StorageClass: {
477
+ readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
478
+ readonly GLACIER: "GLACIER";
479
+ readonly GLACIER_IR: "GLACIER_IR";
480
+ readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
481
+ readonly ONEZONE_IA: "ONEZONE_IA";
482
+ readonly STANDARD: "STANDARD";
483
+ readonly STANDARD_IA: "STANDARD_IA";
484
+ };
485
+ export type S3StorageClass =
486
+ (typeof S3StorageClass)[keyof typeof S3StorageClass];
446
487
  export interface S3CopyObjectOperation {
447
488
  TargetResource?: string;
448
489
  CannedAccessControlList?: S3CannedAccessControlList | string;
@@ -469,10 +510,12 @@ export interface S3ObjectLockLegalHold {
469
510
  export interface S3SetObjectLegalHoldOperation {
470
511
  LegalHold: S3ObjectLockLegalHold | undefined;
471
512
  }
472
- export declare enum S3ObjectLockRetentionMode {
473
- COMPLIANCE = "COMPLIANCE",
474
- GOVERNANCE = "GOVERNANCE",
475
- }
513
+ export declare const S3ObjectLockRetentionMode: {
514
+ readonly COMPLIANCE: "COMPLIANCE";
515
+ readonly GOVERNANCE: "GOVERNANCE";
516
+ };
517
+ export type S3ObjectLockRetentionMode =
518
+ (typeof S3ObjectLockRetentionMode)[keyof typeof S3ObjectLockRetentionMode];
476
519
  export interface S3Retention {
477
520
  RetainUntilDate?: Date;
478
521
  Mode?: S3ObjectLockRetentionMode | string;
@@ -496,13 +539,17 @@ export interface JobOperation {
496
539
  S3PutObjectRetention?: S3SetObjectRetentionOperation;
497
540
  S3ReplicateObject?: S3ReplicateObjectOperation;
498
541
  }
499
- export declare enum JobReportFormat {
500
- Report_CSV_20180820 = "Report_CSV_20180820",
501
- }
502
- export declare enum JobReportScope {
503
- AllTasks = "AllTasks",
504
- FailedTasksOnly = "FailedTasksOnly",
505
- }
542
+ export declare const JobReportFormat: {
543
+ readonly Report_CSV_20180820: "Report_CSV_20180820";
544
+ };
545
+ export type JobReportFormat =
546
+ (typeof JobReportFormat)[keyof typeof JobReportFormat];
547
+ export declare const JobReportScope: {
548
+ readonly AllTasks: "AllTasks";
549
+ readonly FailedTasksOnly: "FailedTasksOnly";
550
+ };
551
+ export type JobReportScope =
552
+ (typeof JobReportScope)[keyof typeof JobReportScope];
506
553
  export interface JobReport {
507
554
  Bucket?: string;
508
555
  Format?: JobReportFormat | string;
@@ -646,21 +693,22 @@ export interface JobProgressSummary {
646
693
  NumberOfTasksFailed?: number;
647
694
  Timers?: JobTimers;
648
695
  }
649
- export declare enum JobStatus {
650
- Active = "Active",
651
- Cancelled = "Cancelled",
652
- Cancelling = "Cancelling",
653
- Complete = "Complete",
654
- Completing = "Completing",
655
- Failed = "Failed",
656
- Failing = "Failing",
657
- New = "New",
658
- Paused = "Paused",
659
- Pausing = "Pausing",
660
- Preparing = "Preparing",
661
- Ready = "Ready",
662
- Suspended = "Suspended",
663
- }
696
+ export declare const JobStatus: {
697
+ readonly Active: "Active";
698
+ readonly Cancelled: "Cancelled";
699
+ readonly Cancelling: "Cancelling";
700
+ readonly Complete: "Complete";
701
+ readonly Completing: "Completing";
702
+ readonly Failed: "Failed";
703
+ readonly Failing: "Failing";
704
+ readonly New: "New";
705
+ readonly Paused: "Paused";
706
+ readonly Pausing: "Pausing";
707
+ readonly Preparing: "Preparing";
708
+ readonly Ready: "Ready";
709
+ readonly Suspended: "Suspended";
710
+ };
711
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
664
712
  export interface JobDescriptor {
665
713
  JobId?: string;
666
714
  ConfirmationRequired?: boolean;
@@ -791,21 +839,25 @@ export interface NoncurrentVersionExpiration {
791
839
  NoncurrentDays?: number;
792
840
  NewerNoncurrentVersions?: number;
793
841
  }
794
- export declare enum TransitionStorageClass {
795
- DEEP_ARCHIVE = "DEEP_ARCHIVE",
796
- GLACIER = "GLACIER",
797
- INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
798
- ONEZONE_IA = "ONEZONE_IA",
799
- STANDARD_IA = "STANDARD_IA",
800
- }
842
+ export declare const TransitionStorageClass: {
843
+ readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
844
+ readonly GLACIER: "GLACIER";
845
+ readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
846
+ readonly ONEZONE_IA: "ONEZONE_IA";
847
+ readonly STANDARD_IA: "STANDARD_IA";
848
+ };
849
+ export type TransitionStorageClass =
850
+ (typeof TransitionStorageClass)[keyof typeof TransitionStorageClass];
801
851
  export interface NoncurrentVersionTransition {
802
852
  NoncurrentDays?: number;
803
853
  StorageClass?: TransitionStorageClass | string;
804
854
  }
805
- export declare enum ExpirationStatus {
806
- Disabled = "Disabled",
807
- Enabled = "Enabled",
808
- }
855
+ export declare const ExpirationStatus: {
856
+ readonly Disabled: "Disabled";
857
+ readonly Enabled: "Enabled";
858
+ };
859
+ export type ExpirationStatus =
860
+ (typeof ExpirationStatus)[keyof typeof ExpirationStatus];
809
861
  export interface Transition {
810
862
  Date?: Date;
811
863
  Days?: number;
@@ -835,10 +887,12 @@ export interface GetBucketReplicationRequest {
835
887
  AccountId?: string;
836
888
  Bucket: string | undefined;
837
889
  }
838
- export declare enum DeleteMarkerReplicationStatus {
839
- Disabled = "Disabled",
840
- Enabled = "Enabled",
841
- }
890
+ export declare const DeleteMarkerReplicationStatus: {
891
+ readonly Disabled: "Disabled";
892
+ readonly Enabled: "Enabled";
893
+ };
894
+ export type DeleteMarkerReplicationStatus =
895
+ (typeof DeleteMarkerReplicationStatus)[keyof typeof DeleteMarkerReplicationStatus];
842
896
  export interface DeleteMarkerReplication {
843
897
  Status: DeleteMarkerReplicationStatus | string | undefined;
844
898
  }
@@ -848,33 +902,38 @@ export interface EncryptionConfiguration {
848
902
  export interface ReplicationTimeValue {
849
903
  Minutes?: number;
850
904
  }
851
- export declare enum MetricsStatus {
852
- Disabled = "Disabled",
853
- Enabled = "Enabled",
854
- }
905
+ export declare const MetricsStatus: {
906
+ readonly Disabled: "Disabled";
907
+ readonly Enabled: "Enabled";
908
+ };
909
+ export type MetricsStatus = (typeof MetricsStatus)[keyof typeof MetricsStatus];
855
910
  export interface Metrics {
856
911
  Status: MetricsStatus | string | undefined;
857
912
  EventThreshold?: ReplicationTimeValue;
858
913
  }
859
- export declare enum ReplicationTimeStatus {
860
- Disabled = "Disabled",
861
- Enabled = "Enabled",
862
- }
914
+ export declare const ReplicationTimeStatus: {
915
+ readonly Disabled: "Disabled";
916
+ readonly Enabled: "Enabled";
917
+ };
918
+ export type ReplicationTimeStatus =
919
+ (typeof ReplicationTimeStatus)[keyof typeof ReplicationTimeStatus];
863
920
  export interface ReplicationTime {
864
921
  Status: ReplicationTimeStatus | string | undefined;
865
922
  Time: ReplicationTimeValue | undefined;
866
923
  }
867
- export declare enum ReplicationStorageClass {
868
- DEEP_ARCHIVE = "DEEP_ARCHIVE",
869
- GLACIER = "GLACIER",
870
- GLACIER_IR = "GLACIER_IR",
871
- INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
872
- ONEZONE_IA = "ONEZONE_IA",
873
- OUTPOSTS = "OUTPOSTS",
874
- REDUCED_REDUNDANCY = "REDUCED_REDUNDANCY",
875
- STANDARD = "STANDARD",
876
- STANDARD_IA = "STANDARD_IA",
877
- }
924
+ export declare const ReplicationStorageClass: {
925
+ readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
926
+ readonly GLACIER: "GLACIER";
927
+ readonly GLACIER_IR: "GLACIER_IR";
928
+ readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
929
+ readonly ONEZONE_IA: "ONEZONE_IA";
930
+ readonly OUTPOSTS: "OUTPOSTS";
931
+ readonly REDUCED_REDUNDANCY: "REDUCED_REDUNDANCY";
932
+ readonly STANDARD: "STANDARD";
933
+ readonly STANDARD_IA: "STANDARD_IA";
934
+ };
935
+ export type ReplicationStorageClass =
936
+ (typeof ReplicationStorageClass)[keyof typeof ReplicationStorageClass];
878
937
  export interface Destination {
879
938
  Account?: string;
880
939
  Bucket: string | undefined;
@@ -884,10 +943,12 @@ export interface Destination {
884
943
  Metrics?: Metrics;
885
944
  StorageClass?: ReplicationStorageClass | string;
886
945
  }
887
- export declare enum ExistingObjectReplicationStatus {
888
- Disabled = "Disabled",
889
- Enabled = "Enabled",
890
- }
946
+ export declare const ExistingObjectReplicationStatus: {
947
+ readonly Disabled: "Disabled";
948
+ readonly Enabled: "Enabled";
949
+ };
950
+ export type ExistingObjectReplicationStatus =
951
+ (typeof ExistingObjectReplicationStatus)[keyof typeof ExistingObjectReplicationStatus];
891
952
  export interface ExistingObjectReplication {
892
953
  Status: ExistingObjectReplicationStatus | string | undefined;
893
954
  }
@@ -900,17 +961,21 @@ export interface ReplicationRuleFilter {
900
961
  Tag?: S3Tag;
901
962
  And?: ReplicationRuleAndOperator;
902
963
  }
903
- export declare enum ReplicaModificationsStatus {
904
- Disabled = "Disabled",
905
- Enabled = "Enabled",
906
- }
964
+ export declare const ReplicaModificationsStatus: {
965
+ readonly Disabled: "Disabled";
966
+ readonly Enabled: "Enabled";
967
+ };
968
+ export type ReplicaModificationsStatus =
969
+ (typeof ReplicaModificationsStatus)[keyof typeof ReplicaModificationsStatus];
907
970
  export interface ReplicaModifications {
908
971
  Status: ReplicaModificationsStatus | string | undefined;
909
972
  }
910
- export declare enum SseKmsEncryptedObjectsStatus {
911
- Disabled = "Disabled",
912
- Enabled = "Enabled",
913
- }
973
+ export declare const SseKmsEncryptedObjectsStatus: {
974
+ readonly Disabled: "Disabled";
975
+ readonly Enabled: "Enabled";
976
+ };
977
+ export type SseKmsEncryptedObjectsStatus =
978
+ (typeof SseKmsEncryptedObjectsStatus)[keyof typeof SseKmsEncryptedObjectsStatus];
914
979
  export interface SseKmsEncryptedObjects {
915
980
  Status: SseKmsEncryptedObjectsStatus | string | undefined;
916
981
  }
@@ -918,10 +983,12 @@ export interface SourceSelectionCriteria {
918
983
  SseKmsEncryptedObjects?: SseKmsEncryptedObjects;
919
984
  ReplicaModifications?: ReplicaModifications;
920
985
  }
921
- export declare enum ReplicationRuleStatus {
922
- Disabled = "Disabled",
923
- Enabled = "Enabled",
924
- }
986
+ export declare const ReplicationRuleStatus: {
987
+ readonly Disabled: "Disabled";
988
+ readonly Enabled: "Enabled";
989
+ };
990
+ export type ReplicationRuleStatus =
991
+ (typeof ReplicationRuleStatus)[keyof typeof ReplicationRuleStatus];
925
992
  export interface ReplicationRule {
926
993
  ID?: string;
927
994
  Priority?: number;
@@ -952,14 +1019,18 @@ export interface GetBucketVersioningRequest {
952
1019
  AccountId?: string;
953
1020
  Bucket: string | undefined;
954
1021
  }
955
- export declare enum MFADeleteStatus {
956
- Disabled = "Disabled",
957
- Enabled = "Enabled",
958
- }
959
- export declare enum BucketVersioningStatus {
960
- Enabled = "Enabled",
961
- Suspended = "Suspended",
962
- }
1022
+ export declare const MFADeleteStatus: {
1023
+ readonly Disabled: "Disabled";
1024
+ readonly Enabled: "Enabled";
1025
+ };
1026
+ export type MFADeleteStatus =
1027
+ (typeof MFADeleteStatus)[keyof typeof MFADeleteStatus];
1028
+ export declare const BucketVersioningStatus: {
1029
+ readonly Enabled: "Enabled";
1030
+ readonly Suspended: "Suspended";
1031
+ };
1032
+ export type BucketVersioningStatus =
1033
+ (typeof BucketVersioningStatus)[keyof typeof BucketVersioningStatus];
963
1034
  export interface GetBucketVersioningResult {
964
1035
  Status?: BucketVersioningStatus | string;
965
1036
  MFADelete?: MFADeleteStatus | string;
@@ -980,14 +1051,16 @@ export interface RegionReport {
980
1051
  Region?: string;
981
1052
  BucketAccountId?: string;
982
1053
  }
983
- export declare enum MultiRegionAccessPointStatus {
984
- CREATING = "CREATING",
985
- DELETING = "DELETING",
986
- INCONSISTENT_ACROSS_REGIONS = "INCONSISTENT_ACROSS_REGIONS",
987
- PARTIALLY_CREATED = "PARTIALLY_CREATED",
988
- PARTIALLY_DELETED = "PARTIALLY_DELETED",
989
- READY = "READY",
990
- }
1054
+ export declare const MultiRegionAccessPointStatus: {
1055
+ readonly CREATING: "CREATING";
1056
+ readonly DELETING: "DELETING";
1057
+ readonly INCONSISTENT_ACROSS_REGIONS: "INCONSISTENT_ACROSS_REGIONS";
1058
+ readonly PARTIALLY_CREATED: "PARTIALLY_CREATED";
1059
+ readonly PARTIALLY_DELETED: "PARTIALLY_DELETED";
1060
+ readonly READY: "READY";
1061
+ };
1062
+ export type MultiRegionAccessPointStatus =
1063
+ (typeof MultiRegionAccessPointStatus)[keyof typeof MultiRegionAccessPointStatus];
991
1064
  export interface MultiRegionAccessPointReport {
992
1065
  Name?: string;
993
1066
  Alias?: string;
@@ -1071,13 +1144,16 @@ export interface StorageLensDataExportEncryption {
1071
1144
  SSES3?: SSES3;
1072
1145
  SSEKMS?: SSEKMS;
1073
1146
  }
1074
- export declare enum Format {
1075
- CSV = "CSV",
1076
- Parquet = "Parquet",
1077
- }
1078
- export declare enum OutputSchemaVersion {
1079
- V_1 = "V_1",
1080
- }
1147
+ export declare const Format: {
1148
+ readonly CSV: "CSV";
1149
+ readonly Parquet: "Parquet";
1150
+ };
1151
+ export type Format = (typeof Format)[keyof typeof Format];
1152
+ export declare const OutputSchemaVersion: {
1153
+ readonly V_1: "V_1";
1154
+ };
1155
+ export type OutputSchemaVersion =
1156
+ (typeof OutputSchemaVersion)[keyof typeof OutputSchemaVersion];
1081
1157
  export interface S3BucketDestination {
1082
1158
  Format: Format | string | undefined;
1083
1159
  OutputSchemaVersion: OutputSchemaVersion | string | undefined;
@@ -1168,17 +1244,18 @@ export interface ListJobsRequest {
1168
1244
  NextToken?: string;
1169
1245
  MaxResults?: number;
1170
1246
  }
1171
- export declare enum OperationName {
1172
- LambdaInvoke = "LambdaInvoke",
1173
- S3DeleteObjectTagging = "S3DeleteObjectTagging",
1174
- S3InitiateRestoreObject = "S3InitiateRestoreObject",
1175
- S3PutObjectAcl = "S3PutObjectAcl",
1176
- S3PutObjectCopy = "S3PutObjectCopy",
1177
- S3PutObjectLegalHold = "S3PutObjectLegalHold",
1178
- S3PutObjectRetention = "S3PutObjectRetention",
1179
- S3PutObjectTagging = "S3PutObjectTagging",
1180
- S3ReplicateObject = "S3ReplicateObject",
1181
- }
1247
+ export declare const OperationName: {
1248
+ readonly LambdaInvoke: "LambdaInvoke";
1249
+ readonly S3DeleteObjectTagging: "S3DeleteObjectTagging";
1250
+ readonly S3InitiateRestoreObject: "S3InitiateRestoreObject";
1251
+ readonly S3PutObjectAcl: "S3PutObjectAcl";
1252
+ readonly S3PutObjectCopy: "S3PutObjectCopy";
1253
+ readonly S3PutObjectLegalHold: "S3PutObjectLegalHold";
1254
+ readonly S3PutObjectRetention: "S3PutObjectRetention";
1255
+ readonly S3PutObjectTagging: "S3PutObjectTagging";
1256
+ readonly S3ReplicateObject: "S3ReplicateObject";
1257
+ };
1258
+ export type OperationName = (typeof OperationName)[keyof typeof OperationName];
1182
1259
  export interface JobListDescriptor {
1183
1260
  JobId?: string;
1184
1261
  Description?: string;
@@ -1275,10 +1352,11 @@ export interface PutBucketTaggingRequest {
1275
1352
  Bucket: string | undefined;
1276
1353
  Tagging: Tagging | undefined;
1277
1354
  }
1278
- export declare enum MFADelete {
1279
- Disabled = "Disabled",
1280
- Enabled = "Enabled",
1281
- }
1355
+ export declare const MFADelete: {
1356
+ readonly Disabled: "Disabled";
1357
+ readonly Enabled: "Enabled";
1358
+ };
1359
+ export type MFADelete = (typeof MFADelete)[keyof typeof MFADelete];
1282
1360
  export interface VersioningConfiguration {
1283
1361
  MFADelete?: MFADelete | string;
1284
1362
  Status?: BucketVersioningStatus | string;
@@ -1348,10 +1426,12 @@ export declare class JobStatusException extends __BaseException {
1348
1426
  Message?: string;
1349
1427
  constructor(opts: __ExceptionOptionType<JobStatusException, __BaseException>);
1350
1428
  }
1351
- export declare enum RequestedJobStatus {
1352
- Cancelled = "Cancelled",
1353
- Ready = "Ready",
1354
- }
1429
+ export declare const RequestedJobStatus: {
1430
+ readonly Cancelled: "Cancelled";
1431
+ readonly Ready: "Ready";
1432
+ };
1433
+ export type RequestedJobStatus =
1434
+ (typeof RequestedJobStatus)[keyof typeof RequestedJobStatus];
1355
1435
  export interface UpdateJobStatusRequest {
1356
1436
  AccountId?: string;
1357
1437
  JobId: string | undefined;