@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.
@@ -13,10 +13,15 @@ export interface AbortIncompleteMultipartUpload {
13
13
  }
14
14
  /**
15
15
  * @public
16
+ * @enum
16
17
  */
17
- export declare enum OwnerOverride {
18
- Destination = "Destination"
19
- }
18
+ export declare const OwnerOverride: {
19
+ readonly Destination: "Destination";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type OwnerOverride = (typeof OwnerOverride)[keyof typeof OwnerOverride];
20
25
  /**
21
26
  * @public
22
27
  * <p>A container for information about access control for replicas.</p>
@@ -32,11 +37,16 @@ export interface AccessControlTranslation {
32
37
  }
33
38
  /**
34
39
  * @public
40
+ * @enum
35
41
  */
36
- export declare enum NetworkOrigin {
37
- Internet = "Internet",
38
- VPC = "VPC"
39
- }
42
+ export declare const NetworkOrigin: {
43
+ readonly Internet: "Internet";
44
+ readonly VPC: "VPC";
45
+ };
46
+ /**
47
+ * @public
48
+ */
49
+ export type NetworkOrigin = (typeof NetworkOrigin)[keyof typeof NetworkOrigin];
40
50
  /**
41
51
  * @public
42
52
  * <p>The virtual private cloud (VPC) configuration for an access point.</p>
@@ -268,12 +278,17 @@ export interface AsyncErrorDetails {
268
278
  }
269
279
  /**
270
280
  * @public
281
+ * @enum
271
282
  */
272
- export declare enum AsyncOperationName {
273
- CreateMultiRegionAccessPoint = "CreateMultiRegionAccessPoint",
274
- DeleteMultiRegionAccessPoint = "DeleteMultiRegionAccessPoint",
275
- PutMultiRegionAccessPointPolicy = "PutMultiRegionAccessPointPolicy"
276
- }
283
+ export declare const AsyncOperationName: {
284
+ readonly CreateMultiRegionAccessPoint: "CreateMultiRegionAccessPoint";
285
+ readonly DeleteMultiRegionAccessPoint: "DeleteMultiRegionAccessPoint";
286
+ readonly PutMultiRegionAccessPointPolicy: "PutMultiRegionAccessPointPolicy";
287
+ };
288
+ /**
289
+ * @public
290
+ */
291
+ export type AsyncOperationName = (typeof AsyncOperationName)[keyof typeof AsyncOperationName];
277
292
  /**
278
293
  * @public
279
294
  * <p>The <code>PublicAccessBlock</code> configuration that you want to apply to this Amazon S3
@@ -549,22 +564,32 @@ export interface CreateAccessPointResult {
549
564
  }
550
565
  /**
551
566
  * @public
567
+ * @enum
552
568
  */
553
- export declare enum ObjectLambdaAllowedFeature {
554
- GetObjectPartNumber = "GetObject-PartNumber",
555
- GetObjectRange = "GetObject-Range",
556
- HeadObjectPartNumber = "HeadObject-PartNumber",
557
- HeadObjectRange = "HeadObject-Range"
558
- }
569
+ export declare const ObjectLambdaAllowedFeature: {
570
+ readonly GetObjectPartNumber: "GetObject-PartNumber";
571
+ readonly GetObjectRange: "GetObject-Range";
572
+ readonly HeadObjectPartNumber: "HeadObject-PartNumber";
573
+ readonly HeadObjectRange: "HeadObject-Range";
574
+ };
559
575
  /**
560
576
  * @public
561
577
  */
562
- export declare enum ObjectLambdaTransformationConfigurationAction {
563
- GetObject = "GetObject",
564
- HeadObject = "HeadObject",
565
- ListObjects = "ListObjects",
566
- ListObjectsV2 = "ListObjectsV2"
567
- }
578
+ export type ObjectLambdaAllowedFeature = (typeof ObjectLambdaAllowedFeature)[keyof typeof ObjectLambdaAllowedFeature];
579
+ /**
580
+ * @public
581
+ * @enum
582
+ */
583
+ export declare const ObjectLambdaTransformationConfigurationAction: {
584
+ readonly GetObject: "GetObject";
585
+ readonly HeadObject: "HeadObject";
586
+ readonly ListObjects: "ListObjects";
587
+ readonly ListObjectsV2: "ListObjectsV2";
588
+ };
589
+ /**
590
+ * @public
591
+ */
592
+ export type ObjectLambdaTransformationConfigurationAction = (typeof ObjectLambdaTransformationConfigurationAction)[keyof typeof ObjectLambdaTransformationConfigurationAction];
568
593
  /**
569
594
  * @public
570
595
  * <p>A container for AwsLambdaTransformation.</p>
@@ -650,11 +675,16 @@ export interface CreateAccessPointForObjectLambdaRequest {
650
675
  }
651
676
  /**
652
677
  * @public
678
+ * @enum
653
679
  */
654
- export declare enum ObjectLambdaAccessPointAliasStatus {
655
- PROVISIONING = "PROVISIONING",
656
- READY = "READY"
657
- }
680
+ export declare const ObjectLambdaAccessPointAliasStatus: {
681
+ readonly PROVISIONING: "PROVISIONING";
682
+ readonly READY: "READY";
683
+ };
684
+ /**
685
+ * @public
686
+ */
687
+ export type ObjectLambdaAccessPointAliasStatus = (typeof ObjectLambdaAccessPointAliasStatus)[keyof typeof ObjectLambdaAccessPointAliasStatus];
658
688
  /**
659
689
  * @public
660
690
  * <p>The alias of an Object Lambda Access Point. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/olap-use.html#ol-access-points-alias">How to use a bucket-style alias for your S3 bucket
@@ -712,29 +742,39 @@ export declare class BucketAlreadyOwnedByYou extends __BaseException {
712
742
  }
713
743
  /**
714
744
  * @public
745
+ * @enum
715
746
  */
716
- export declare enum BucketCannedACL {
717
- authenticated_read = "authenticated-read",
718
- private = "private",
719
- public_read = "public-read",
720
- public_read_write = "public-read-write"
721
- }
747
+ export declare const BucketCannedACL: {
748
+ readonly authenticated_read: "authenticated-read";
749
+ readonly private: "private";
750
+ readonly public_read: "public-read";
751
+ readonly public_read_write: "public-read-write";
752
+ };
722
753
  /**
723
754
  * @public
724
755
  */
725
- export declare enum BucketLocationConstraint {
726
- EU = "EU",
727
- ap_northeast_1 = "ap-northeast-1",
728
- ap_south_1 = "ap-south-1",
729
- ap_southeast_1 = "ap-southeast-1",
730
- ap_southeast_2 = "ap-southeast-2",
731
- cn_north_1 = "cn-north-1",
732
- eu_central_1 = "eu-central-1",
733
- eu_west_1 = "eu-west-1",
734
- sa_east_1 = "sa-east-1",
735
- us_west_1 = "us-west-1",
736
- us_west_2 = "us-west-2"
737
- }
756
+ export type BucketCannedACL = (typeof BucketCannedACL)[keyof typeof BucketCannedACL];
757
+ /**
758
+ * @public
759
+ * @enum
760
+ */
761
+ export declare const BucketLocationConstraint: {
762
+ readonly EU: "EU";
763
+ readonly ap_northeast_1: "ap-northeast-1";
764
+ readonly ap_south_1: "ap-south-1";
765
+ readonly ap_southeast_1: "ap-southeast-1";
766
+ readonly ap_southeast_2: "ap-southeast-2";
767
+ readonly cn_north_1: "cn-north-1";
768
+ readonly eu_central_1: "eu-central-1";
769
+ readonly eu_west_1: "eu-west-1";
770
+ readonly sa_east_1: "sa-east-1";
771
+ readonly us_west_1: "us-west-1";
772
+ readonly us_west_2: "us-west-2";
773
+ };
774
+ /**
775
+ * @public
776
+ */
777
+ export type BucketLocationConstraint = (typeof BucketLocationConstraint)[keyof typeof BucketLocationConstraint];
738
778
  /**
739
779
  * @public
740
780
  * <p>The container for the bucket configuration.</p>
@@ -879,20 +919,30 @@ export interface JobManifestLocation {
879
919
  }
880
920
  /**
881
921
  * @public
922
+ * @enum
882
923
  */
883
- export declare enum JobManifestFieldName {
884
- Bucket = "Bucket",
885
- Ignore = "Ignore",
886
- Key = "Key",
887
- VersionId = "VersionId"
888
- }
924
+ export declare const JobManifestFieldName: {
925
+ readonly Bucket: "Bucket";
926
+ readonly Ignore: "Ignore";
927
+ readonly Key: "Key";
928
+ readonly VersionId: "VersionId";
929
+ };
889
930
  /**
890
931
  * @public
891
932
  */
892
- export declare enum JobManifestFormat {
893
- S3BatchOperations_CSV_20180820 = "S3BatchOperations_CSV_20180820",
894
- S3InventoryReport_CSV_20161130 = "S3InventoryReport_CSV_20161130"
895
- }
933
+ export type JobManifestFieldName = (typeof JobManifestFieldName)[keyof typeof JobManifestFieldName];
934
+ /**
935
+ * @public
936
+ * @enum
937
+ */
938
+ export declare const JobManifestFormat: {
939
+ readonly S3BatchOperations_CSV_20180820: "S3BatchOperations_CSV_20180820";
940
+ readonly S3InventoryReport_CSV_20161130: "S3InventoryReport_CSV_20161130";
941
+ };
942
+ /**
943
+ * @public
944
+ */
945
+ export type JobManifestFormat = (typeof JobManifestFormat)[keyof typeof JobManifestFormat];
896
946
  /**
897
947
  * @public
898
948
  * <p>Describes the format of a manifest. If the manifest is in CSV format, also describes the
@@ -926,13 +976,18 @@ export interface JobManifest {
926
976
  }
927
977
  /**
928
978
  * @public
979
+ * @enum
929
980
  */
930
- export declare enum ReplicationStatus {
931
- COMPLETED = "COMPLETED",
932
- FAILED = "FAILED",
933
- NONE = "NONE",
934
- REPLICA = "REPLICA"
935
- }
981
+ export declare const ReplicationStatus: {
982
+ readonly COMPLETED: "COMPLETED";
983
+ readonly FAILED: "FAILED";
984
+ readonly NONE: "NONE";
985
+ readonly REPLICA: "REPLICA";
986
+ };
987
+ /**
988
+ * @public
989
+ */
990
+ export type ReplicationStatus = (typeof ReplicationStatus)[keyof typeof ReplicationStatus];
936
991
  /**
937
992
  * @public
938
993
  * <p>The filter used to describe a set of objects for the job's manifest.</p>
@@ -993,10 +1048,15 @@ export interface GeneratedManifestEncryption {
993
1048
  }
994
1049
  /**
995
1050
  * @public
1051
+ * @enum
996
1052
  */
997
- export declare enum GeneratedManifestFormat {
998
- S3InventoryReport_CSV_20211130 = "S3InventoryReport_CSV_20211130"
999
- }
1053
+ export declare const GeneratedManifestFormat: {
1054
+ readonly S3InventoryReport_CSV_20211130: "S3InventoryReport_CSV_20211130";
1055
+ };
1056
+ /**
1057
+ * @public
1058
+ */
1059
+ export type GeneratedManifestFormat = (typeof GeneratedManifestFormat)[keyof typeof GeneratedManifestFormat];
1000
1060
  /**
1001
1061
  * @public
1002
1062
  * <p>Location details for where the generated manifest should be written.</p>
@@ -1105,11 +1165,16 @@ export interface S3DeleteObjectTaggingOperation {
1105
1165
  }
1106
1166
  /**
1107
1167
  * @public
1168
+ * @enum
1108
1169
  */
1109
- export declare enum S3GlacierJobTier {
1110
- BULK = "BULK",
1111
- STANDARD = "STANDARD"
1112
- }
1170
+ export declare const S3GlacierJobTier: {
1171
+ readonly BULK: "BULK";
1172
+ readonly STANDARD: "STANDARD";
1173
+ };
1174
+ /**
1175
+ * @public
1176
+ */
1177
+ export type S3GlacierJobTier = (typeof S3GlacierJobTier)[keyof typeof S3GlacierJobTier];
1113
1178
  /**
1114
1179
  * @public
1115
1180
  * <p>Contains the configuration parameters for
@@ -1145,12 +1210,17 @@ export interface S3InitiateRestoreObjectOperation {
1145
1210
  }
1146
1211
  /**
1147
1212
  * @public
1213
+ * @enum
1148
1214
  */
1149
- export declare enum S3GranteeTypeIdentifier {
1150
- CANONICAL = "id",
1151
- EMAIL_ADDRESS = "emailAddress",
1152
- GROUP = "uri"
1153
- }
1215
+ export declare const S3GranteeTypeIdentifier: {
1216
+ readonly CANONICAL: "id";
1217
+ readonly EMAIL_ADDRESS: "emailAddress";
1218
+ readonly GROUP: "uri";
1219
+ };
1220
+ /**
1221
+ * @public
1222
+ */
1223
+ export type S3GranteeTypeIdentifier = (typeof S3GranteeTypeIdentifier)[keyof typeof S3GranteeTypeIdentifier];
1154
1224
  /**
1155
1225
  * @public
1156
1226
  * <p></p>
@@ -1171,14 +1241,19 @@ export interface S3Grantee {
1171
1241
  }
1172
1242
  /**
1173
1243
  * @public
1244
+ * @enum
1174
1245
  */
1175
- export declare enum S3Permission {
1176
- FULL_CONTROL = "FULL_CONTROL",
1177
- READ = "READ",
1178
- READ_ACP = "READ_ACP",
1179
- WRITE = "WRITE",
1180
- WRITE_ACP = "WRITE_ACP"
1181
- }
1246
+ export declare const S3Permission: {
1247
+ readonly FULL_CONTROL: "FULL_CONTROL";
1248
+ readonly READ: "READ";
1249
+ readonly READ_ACP: "READ_ACP";
1250
+ readonly WRITE: "WRITE";
1251
+ readonly WRITE_ACP: "WRITE_ACP";
1252
+ };
1253
+ /**
1254
+ * @public
1255
+ */
1256
+ export type S3Permission = (typeof S3Permission)[keyof typeof S3Permission];
1182
1257
  /**
1183
1258
  * @public
1184
1259
  * <p></p>
@@ -1223,16 +1298,21 @@ export interface S3AccessControlList {
1223
1298
  }
1224
1299
  /**
1225
1300
  * @public
1301
+ * @enum
1226
1302
  */
1227
- export declare enum S3CannedAccessControlList {
1228
- AUTHENTICATED_READ = "authenticated-read",
1229
- AWS_EXEC_READ = "aws-exec-read",
1230
- BUCKET_OWNER_FULL_CONTROL = "bucket-owner-full-control",
1231
- BUCKET_OWNER_READ = "bucket-owner-read",
1232
- PRIVATE = "private",
1233
- PUBLIC_READ = "public-read",
1234
- PUBLIC_READ_WRITE = "public-read-write"
1235
- }
1303
+ export declare const S3CannedAccessControlList: {
1304
+ readonly AUTHENTICATED_READ: "authenticated-read";
1305
+ readonly AWS_EXEC_READ: "aws-exec-read";
1306
+ readonly BUCKET_OWNER_FULL_CONTROL: "bucket-owner-full-control";
1307
+ readonly BUCKET_OWNER_READ: "bucket-owner-read";
1308
+ readonly PRIVATE: "private";
1309
+ readonly PUBLIC_READ: "public-read";
1310
+ readonly PUBLIC_READ_WRITE: "public-read-write";
1311
+ };
1312
+ /**
1313
+ * @public
1314
+ */
1315
+ export type S3CannedAccessControlList = (typeof S3CannedAccessControlList)[keyof typeof S3CannedAccessControlList];
1236
1316
  /**
1237
1317
  * @public
1238
1318
  * <p></p>
@@ -1265,27 +1345,42 @@ export interface S3SetObjectAclOperation {
1265
1345
  }
1266
1346
  /**
1267
1347
  * @public
1348
+ * @enum
1268
1349
  */
1269
- export declare enum S3ChecksumAlgorithm {
1270
- CRC32 = "CRC32",
1271
- CRC32C = "CRC32C",
1272
- SHA1 = "SHA1",
1273
- SHA256 = "SHA256"
1274
- }
1350
+ export declare const S3ChecksumAlgorithm: {
1351
+ readonly CRC32: "CRC32";
1352
+ readonly CRC32C: "CRC32C";
1353
+ readonly SHA1: "SHA1";
1354
+ readonly SHA256: "SHA256";
1355
+ };
1275
1356
  /**
1276
1357
  * @public
1277
1358
  */
1278
- export declare enum S3MetadataDirective {
1279
- COPY = "COPY",
1280
- REPLACE = "REPLACE"
1281
- }
1359
+ export type S3ChecksumAlgorithm = (typeof S3ChecksumAlgorithm)[keyof typeof S3ChecksumAlgorithm];
1282
1360
  /**
1283
1361
  * @public
1362
+ * @enum
1284
1363
  */
1285
- export declare enum S3SSEAlgorithm {
1286
- AES256 = "AES256",
1287
- KMS = "KMS"
1288
- }
1364
+ export declare const S3MetadataDirective: {
1365
+ readonly COPY: "COPY";
1366
+ readonly REPLACE: "REPLACE";
1367
+ };
1368
+ /**
1369
+ * @public
1370
+ */
1371
+ export type S3MetadataDirective = (typeof S3MetadataDirective)[keyof typeof S3MetadataDirective];
1372
+ /**
1373
+ * @public
1374
+ * @enum
1375
+ */
1376
+ export declare const S3SSEAlgorithm: {
1377
+ readonly AES256: "AES256";
1378
+ readonly KMS: "KMS";
1379
+ };
1380
+ /**
1381
+ * @public
1382
+ */
1383
+ export type S3SSEAlgorithm = (typeof S3SSEAlgorithm)[keyof typeof S3SSEAlgorithm];
1289
1384
  /**
1290
1385
  * @public
1291
1386
  * <p></p>
@@ -1352,30 +1447,45 @@ export interface S3Tag {
1352
1447
  }
1353
1448
  /**
1354
1449
  * @public
1450
+ * @enum
1355
1451
  */
1356
- export declare enum S3ObjectLockLegalHoldStatus {
1357
- OFF = "OFF",
1358
- ON = "ON"
1359
- }
1452
+ export declare const S3ObjectLockLegalHoldStatus: {
1453
+ readonly OFF: "OFF";
1454
+ readonly ON: "ON";
1455
+ };
1360
1456
  /**
1361
1457
  * @public
1362
1458
  */
1363
- export declare enum S3ObjectLockMode {
1364
- COMPLIANCE = "COMPLIANCE",
1365
- GOVERNANCE = "GOVERNANCE"
1366
- }
1459
+ export type S3ObjectLockLegalHoldStatus = (typeof S3ObjectLockLegalHoldStatus)[keyof typeof S3ObjectLockLegalHoldStatus];
1367
1460
  /**
1368
1461
  * @public
1462
+ * @enum
1369
1463
  */
1370
- export declare enum S3StorageClass {
1371
- DEEP_ARCHIVE = "DEEP_ARCHIVE",
1372
- GLACIER = "GLACIER",
1373
- GLACIER_IR = "GLACIER_IR",
1374
- INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
1375
- ONEZONE_IA = "ONEZONE_IA",
1376
- STANDARD = "STANDARD",
1377
- STANDARD_IA = "STANDARD_IA"
1378
- }
1464
+ export declare const S3ObjectLockMode: {
1465
+ readonly COMPLIANCE: "COMPLIANCE";
1466
+ readonly GOVERNANCE: "GOVERNANCE";
1467
+ };
1468
+ /**
1469
+ * @public
1470
+ */
1471
+ export type S3ObjectLockMode = (typeof S3ObjectLockMode)[keyof typeof S3ObjectLockMode];
1472
+ /**
1473
+ * @public
1474
+ * @enum
1475
+ */
1476
+ export declare const S3StorageClass: {
1477
+ readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
1478
+ readonly GLACIER: "GLACIER";
1479
+ readonly GLACIER_IR: "GLACIER_IR";
1480
+ readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
1481
+ readonly ONEZONE_IA: "ONEZONE_IA";
1482
+ readonly STANDARD: "STANDARD";
1483
+ readonly STANDARD_IA: "STANDARD_IA";
1484
+ };
1485
+ /**
1486
+ * @public
1487
+ */
1488
+ export type S3StorageClass = (typeof S3StorageClass)[keyof typeof S3StorageClass];
1379
1489
  /**
1380
1490
  * @public
1381
1491
  * <p>Contains
@@ -1520,11 +1630,16 @@ export interface S3SetObjectLegalHoldOperation {
1520
1630
  }
1521
1631
  /**
1522
1632
  * @public
1633
+ * @enum
1523
1634
  */
1524
- export declare enum S3ObjectLockRetentionMode {
1525
- COMPLIANCE = "COMPLIANCE",
1526
- GOVERNANCE = "GOVERNANCE"
1527
- }
1635
+ export declare const S3ObjectLockRetentionMode: {
1636
+ readonly COMPLIANCE: "COMPLIANCE";
1637
+ readonly GOVERNANCE: "GOVERNANCE";
1638
+ };
1639
+ /**
1640
+ * @public
1641
+ */
1642
+ export type S3ObjectLockRetentionMode = (typeof S3ObjectLockRetentionMode)[keyof typeof S3ObjectLockRetentionMode];
1528
1643
  /**
1529
1644
  * @public
1530
1645
  * <p>Contains the S3 Object Lock retention mode to be applied to all objects in the
@@ -1655,17 +1770,27 @@ export interface JobOperation {
1655
1770
  }
1656
1771
  /**
1657
1772
  * @public
1773
+ * @enum
1658
1774
  */
1659
- export declare enum JobReportFormat {
1660
- Report_CSV_20180820 = "Report_CSV_20180820"
1661
- }
1775
+ export declare const JobReportFormat: {
1776
+ readonly Report_CSV_20180820: "Report_CSV_20180820";
1777
+ };
1662
1778
  /**
1663
1779
  * @public
1664
1780
  */
1665
- export declare enum JobReportScope {
1666
- AllTasks = "AllTasks",
1667
- FailedTasksOnly = "FailedTasksOnly"
1668
- }
1781
+ export type JobReportFormat = (typeof JobReportFormat)[keyof typeof JobReportFormat];
1782
+ /**
1783
+ * @public
1784
+ * @enum
1785
+ */
1786
+ export declare const JobReportScope: {
1787
+ readonly AllTasks: "AllTasks";
1788
+ readonly FailedTasksOnly: "FailedTasksOnly";
1789
+ };
1790
+ /**
1791
+ * @public
1792
+ */
1793
+ export type JobReportScope = (typeof JobReportScope)[keyof typeof JobReportScope];
1669
1794
  /**
1670
1795
  * @public
1671
1796
  * <p>Contains the configuration parameters for a job-completion report.</p>
@@ -2141,22 +2266,27 @@ export interface JobProgressSummary {
2141
2266
  }
2142
2267
  /**
2143
2268
  * @public
2269
+ * @enum
2144
2270
  */
2145
- export declare enum JobStatus {
2146
- Active = "Active",
2147
- Cancelled = "Cancelled",
2148
- Cancelling = "Cancelling",
2149
- Complete = "Complete",
2150
- Completing = "Completing",
2151
- Failed = "Failed",
2152
- Failing = "Failing",
2153
- New = "New",
2154
- Paused = "Paused",
2155
- Pausing = "Pausing",
2156
- Preparing = "Preparing",
2157
- Ready = "Ready",
2158
- Suspended = "Suspended"
2159
- }
2271
+ export declare const JobStatus: {
2272
+ readonly Active: "Active";
2273
+ readonly Cancelled: "Cancelled";
2274
+ readonly Cancelling: "Cancelling";
2275
+ readonly Complete: "Complete";
2276
+ readonly Completing: "Completing";
2277
+ readonly Failed: "Failed";
2278
+ readonly Failing: "Failing";
2279
+ readonly New: "New";
2280
+ readonly Paused: "Paused";
2281
+ readonly Pausing: "Pausing";
2282
+ readonly Preparing: "Preparing";
2283
+ readonly Ready: "Ready";
2284
+ readonly Suspended: "Suspended";
2285
+ };
2286
+ /**
2287
+ * @public
2288
+ */
2289
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
2160
2290
  /**
2161
2291
  * @public
2162
2292
  * <p>A container element for the job configuration and status information returned by a
@@ -2664,14 +2794,19 @@ export interface NoncurrentVersionExpiration {
2664
2794
  }
2665
2795
  /**
2666
2796
  * @public
2797
+ * @enum
2667
2798
  */
2668
- export declare enum TransitionStorageClass {
2669
- DEEP_ARCHIVE = "DEEP_ARCHIVE",
2670
- GLACIER = "GLACIER",
2671
- INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
2672
- ONEZONE_IA = "ONEZONE_IA",
2673
- STANDARD_IA = "STANDARD_IA"
2674
- }
2799
+ export declare const TransitionStorageClass: {
2800
+ readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
2801
+ readonly GLACIER: "GLACIER";
2802
+ readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
2803
+ readonly ONEZONE_IA: "ONEZONE_IA";
2804
+ readonly STANDARD_IA: "STANDARD_IA";
2805
+ };
2806
+ /**
2807
+ * @public
2808
+ */
2809
+ export type TransitionStorageClass = (typeof TransitionStorageClass)[keyof typeof TransitionStorageClass];
2675
2810
  /**
2676
2811
  * @public
2677
2812
  * <p>The container for the noncurrent version transition.</p>
@@ -2691,11 +2826,16 @@ export interface NoncurrentVersionTransition {
2691
2826
  }
2692
2827
  /**
2693
2828
  * @public
2829
+ * @enum
2694
2830
  */
2695
- export declare enum ExpirationStatus {
2696
- Disabled = "Disabled",
2697
- Enabled = "Enabled"
2698
- }
2831
+ export declare const ExpirationStatus: {
2832
+ readonly Disabled: "Disabled";
2833
+ readonly Enabled: "Enabled";
2834
+ };
2835
+ /**
2836
+ * @public
2837
+ */
2838
+ export type ExpirationStatus = (typeof ExpirationStatus)[keyof typeof ExpirationStatus];
2699
2839
  /**
2700
2840
  * @public
2701
2841
  * <p>Specifies when an object transitions to a specified storage class. For more information
@@ -2822,11 +2962,16 @@ export interface GetBucketReplicationRequest {
2822
2962
  }
2823
2963
  /**
2824
2964
  * @public
2965
+ * @enum
2825
2966
  */
2826
- export declare enum DeleteMarkerReplicationStatus {
2827
- Disabled = "Disabled",
2828
- Enabled = "Enabled"
2829
- }
2967
+ export declare const DeleteMarkerReplicationStatus: {
2968
+ readonly Disabled: "Disabled";
2969
+ readonly Enabled: "Enabled";
2970
+ };
2971
+ /**
2972
+ * @public
2973
+ */
2974
+ export type DeleteMarkerReplicationStatus = (typeof DeleteMarkerReplicationStatus)[keyof typeof DeleteMarkerReplicationStatus];
2830
2975
  /**
2831
2976
  * @public
2832
2977
  * <p>Specifies whether S3 on Outposts replicates delete markers. If you specify a
@@ -2880,11 +3025,16 @@ export interface ReplicationTimeValue {
2880
3025
  }
2881
3026
  /**
2882
3027
  * @public
3028
+ * @enum
2883
3029
  */
2884
- export declare enum MetricsStatus {
2885
- Disabled = "Disabled",
2886
- Enabled = "Enabled"
2887
- }
3030
+ export declare const MetricsStatus: {
3031
+ readonly Disabled: "Disabled";
3032
+ readonly Enabled: "Enabled";
3033
+ };
3034
+ /**
3035
+ * @public
3036
+ */
3037
+ export type MetricsStatus = (typeof MetricsStatus)[keyof typeof MetricsStatus];
2888
3038
  /**
2889
3039
  * @public
2890
3040
  * <p>A container that specifies replication metrics-related settings.</p>
@@ -2905,11 +3055,16 @@ export interface Metrics {
2905
3055
  }
2906
3056
  /**
2907
3057
  * @public
3058
+ * @enum
2908
3059
  */
2909
- export declare enum ReplicationTimeStatus {
2910
- Disabled = "Disabled",
2911
- Enabled = "Enabled"
2912
- }
3060
+ export declare const ReplicationTimeStatus: {
3061
+ readonly Disabled: "Disabled";
3062
+ readonly Enabled: "Enabled";
3063
+ };
3064
+ /**
3065
+ * @public
3066
+ */
3067
+ export type ReplicationTimeStatus = (typeof ReplicationTimeStatus)[keyof typeof ReplicationTimeStatus];
2913
3068
  /**
2914
3069
  * @public
2915
3070
  * <p>A container that specifies S3 Replication Time Control (S3 RTC) related information, including whether S3 RTC
@@ -2932,18 +3087,23 @@ export interface ReplicationTime {
2932
3087
  }
2933
3088
  /**
2934
3089
  * @public
3090
+ * @enum
2935
3091
  */
2936
- export declare enum ReplicationStorageClass {
2937
- DEEP_ARCHIVE = "DEEP_ARCHIVE",
2938
- GLACIER = "GLACIER",
2939
- GLACIER_IR = "GLACIER_IR",
2940
- INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
2941
- ONEZONE_IA = "ONEZONE_IA",
2942
- OUTPOSTS = "OUTPOSTS",
2943
- REDUCED_REDUNDANCY = "REDUCED_REDUNDANCY",
2944
- STANDARD = "STANDARD",
2945
- STANDARD_IA = "STANDARD_IA"
2946
- }
3092
+ export declare const ReplicationStorageClass: {
3093
+ readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
3094
+ readonly GLACIER: "GLACIER";
3095
+ readonly GLACIER_IR: "GLACIER_IR";
3096
+ readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
3097
+ readonly ONEZONE_IA: "ONEZONE_IA";
3098
+ readonly OUTPOSTS: "OUTPOSTS";
3099
+ readonly REDUCED_REDUNDANCY: "REDUCED_REDUNDANCY";
3100
+ readonly STANDARD: "STANDARD";
3101
+ readonly STANDARD_IA: "STANDARD_IA";
3102
+ };
3103
+ /**
3104
+ * @public
3105
+ */
3106
+ export type ReplicationStorageClass = (typeof ReplicationStorageClass)[keyof typeof ReplicationStorageClass];
2947
3107
  /**
2948
3108
  * @public
2949
3109
  * <p>Specifies information about the replication destination bucket and its settings for an
@@ -3003,11 +3163,16 @@ export interface Destination {
3003
3163
  }
3004
3164
  /**
3005
3165
  * @public
3166
+ * @enum
3006
3167
  */
3007
- export declare enum ExistingObjectReplicationStatus {
3008
- Disabled = "Disabled",
3009
- Enabled = "Enabled"
3010
- }
3168
+ export declare const ExistingObjectReplicationStatus: {
3169
+ readonly Disabled: "Disabled";
3170
+ readonly Enabled: "Enabled";
3171
+ };
3172
+ /**
3173
+ * @public
3174
+ */
3175
+ export type ExistingObjectReplicationStatus = (typeof ExistingObjectReplicationStatus)[keyof typeof ExistingObjectReplicationStatus];
3011
3176
  /**
3012
3177
  * @public
3013
3178
  * <p>An optional configuration to replicate existing source bucket objects. </p>
@@ -3089,11 +3254,16 @@ export interface ReplicationRuleFilter {
3089
3254
  }
3090
3255
  /**
3091
3256
  * @public
3257
+ * @enum
3092
3258
  */
3093
- export declare enum ReplicaModificationsStatus {
3094
- Disabled = "Disabled",
3095
- Enabled = "Enabled"
3096
- }
3259
+ export declare const ReplicaModificationsStatus: {
3260
+ readonly Disabled: "Disabled";
3261
+ readonly Enabled: "Enabled";
3262
+ };
3263
+ /**
3264
+ * @public
3265
+ */
3266
+ export type ReplicaModificationsStatus = (typeof ReplicaModificationsStatus)[keyof typeof ReplicaModificationsStatus];
3097
3267
  /**
3098
3268
  * @public
3099
3269
  * <p>A filter that you can use to specify whether replica modification sync is enabled.
@@ -3118,11 +3288,16 @@ export interface ReplicaModifications {
3118
3288
  }
3119
3289
  /**
3120
3290
  * @public
3291
+ * @enum
3121
3292
  */
3122
- export declare enum SseKmsEncryptedObjectsStatus {
3123
- Disabled = "Disabled",
3124
- Enabled = "Enabled"
3125
- }
3293
+ export declare const SseKmsEncryptedObjectsStatus: {
3294
+ readonly Disabled: "Disabled";
3295
+ readonly Enabled: "Enabled";
3296
+ };
3297
+ /**
3298
+ * @public
3299
+ */
3300
+ export type SseKmsEncryptedObjectsStatus = (typeof SseKmsEncryptedObjectsStatus)[keyof typeof SseKmsEncryptedObjectsStatus];
3126
3301
  /**
3127
3302
  * @public
3128
3303
  * <p>A container for filter information that you can use to select S3 objects that are
@@ -3173,11 +3348,16 @@ export interface SourceSelectionCriteria {
3173
3348
  }
3174
3349
  /**
3175
3350
  * @public
3351
+ * @enum
3176
3352
  */
3177
- export declare enum ReplicationRuleStatus {
3178
- Disabled = "Disabled",
3179
- Enabled = "Enabled"
3180
- }
3353
+ export declare const ReplicationRuleStatus: {
3354
+ readonly Disabled: "Disabled";
3355
+ readonly Enabled: "Enabled";
3356
+ };
3357
+ /**
3358
+ * @public
3359
+ */
3360
+ export type ReplicationRuleStatus = (typeof ReplicationRuleStatus)[keyof typeof ReplicationRuleStatus];
3181
3361
  /**
3182
3362
  * @public
3183
3363
  * <p>Specifies which S3 on Outposts objects to replicate and where to store the replicas.</p>
@@ -3322,18 +3502,28 @@ export interface GetBucketVersioningRequest {
3322
3502
  }
3323
3503
  /**
3324
3504
  * @public
3505
+ * @enum
3325
3506
  */
3326
- export declare enum MFADeleteStatus {
3327
- Disabled = "Disabled",
3328
- Enabled = "Enabled"
3329
- }
3507
+ export declare const MFADeleteStatus: {
3508
+ readonly Disabled: "Disabled";
3509
+ readonly Enabled: "Enabled";
3510
+ };
3330
3511
  /**
3331
3512
  * @public
3332
3513
  */
3333
- export declare enum BucketVersioningStatus {
3334
- Enabled = "Enabled",
3335
- Suspended = "Suspended"
3336
- }
3514
+ export type MFADeleteStatus = (typeof MFADeleteStatus)[keyof typeof MFADeleteStatus];
3515
+ /**
3516
+ * @public
3517
+ * @enum
3518
+ */
3519
+ export declare const BucketVersioningStatus: {
3520
+ readonly Enabled: "Enabled";
3521
+ readonly Suspended: "Suspended";
3522
+ };
3523
+ /**
3524
+ * @public
3525
+ */
3526
+ export type BucketVersioningStatus = (typeof BucketVersioningStatus)[keyof typeof BucketVersioningStatus];
3337
3527
  /**
3338
3528
  * @public
3339
3529
  */
@@ -3408,15 +3598,20 @@ export interface RegionReport {
3408
3598
  }
3409
3599
  /**
3410
3600
  * @public
3601
+ * @enum
3411
3602
  */
3412
- export declare enum MultiRegionAccessPointStatus {
3413
- CREATING = "CREATING",
3414
- DELETING = "DELETING",
3415
- INCONSISTENT_ACROSS_REGIONS = "INCONSISTENT_ACROSS_REGIONS",
3416
- PARTIALLY_CREATED = "PARTIALLY_CREATED",
3417
- PARTIALLY_DELETED = "PARTIALLY_DELETED",
3418
- READY = "READY"
3419
- }
3603
+ export declare const MultiRegionAccessPointStatus: {
3604
+ readonly CREATING: "CREATING";
3605
+ readonly DELETING: "DELETING";
3606
+ readonly INCONSISTENT_ACROSS_REGIONS: "INCONSISTENT_ACROSS_REGIONS";
3607
+ readonly PARTIALLY_CREATED: "PARTIALLY_CREATED";
3608
+ readonly PARTIALLY_DELETED: "PARTIALLY_DELETED";
3609
+ readonly READY: "READY";
3610
+ };
3611
+ /**
3612
+ * @public
3613
+ */
3614
+ export type MultiRegionAccessPointStatus = (typeof MultiRegionAccessPointStatus)[keyof typeof MultiRegionAccessPointStatus];
3420
3615
  /**
3421
3616
  * @public
3422
3617
  * <p>A collection of statuses for a Multi-Region Access Point in the various Regions it supports.</p>
@@ -3737,17 +3932,27 @@ export interface StorageLensDataExportEncryption {
3737
3932
  }
3738
3933
  /**
3739
3934
  * @public
3935
+ * @enum
3740
3936
  */
3741
- export declare enum Format {
3742
- CSV = "CSV",
3743
- Parquet = "Parquet"
3744
- }
3937
+ export declare const Format: {
3938
+ readonly CSV: "CSV";
3939
+ readonly Parquet: "Parquet";
3940
+ };
3745
3941
  /**
3746
3942
  * @public
3747
3943
  */
3748
- export declare enum OutputSchemaVersion {
3749
- V_1 = "V_1"
3750
- }
3944
+ export type Format = (typeof Format)[keyof typeof Format];
3945
+ /**
3946
+ * @public
3947
+ * @enum
3948
+ */
3949
+ export declare const OutputSchemaVersion: {
3950
+ readonly V_1: "V_1";
3951
+ };
3952
+ /**
3953
+ * @public
3954
+ */
3955
+ export type OutputSchemaVersion = (typeof OutputSchemaVersion)[keyof typeof OutputSchemaVersion];
3751
3956
  /**
3752
3957
  * @public
3753
3958
  * <p>A container for the bucket where the Amazon S3 Storage Lens metrics export files are
@@ -4076,18 +4281,23 @@ export interface ListJobsRequest {
4076
4281
  }
4077
4282
  /**
4078
4283
  * @public
4284
+ * @enum
4079
4285
  */
4080
- export declare enum OperationName {
4081
- LambdaInvoke = "LambdaInvoke",
4082
- S3DeleteObjectTagging = "S3DeleteObjectTagging",
4083
- S3InitiateRestoreObject = "S3InitiateRestoreObject",
4084
- S3PutObjectAcl = "S3PutObjectAcl",
4085
- S3PutObjectCopy = "S3PutObjectCopy",
4086
- S3PutObjectLegalHold = "S3PutObjectLegalHold",
4087
- S3PutObjectRetention = "S3PutObjectRetention",
4088
- S3PutObjectTagging = "S3PutObjectTagging",
4089
- S3ReplicateObject = "S3ReplicateObject"
4090
- }
4286
+ export declare const OperationName: {
4287
+ readonly LambdaInvoke: "LambdaInvoke";
4288
+ readonly S3DeleteObjectTagging: "S3DeleteObjectTagging";
4289
+ readonly S3InitiateRestoreObject: "S3InitiateRestoreObject";
4290
+ readonly S3PutObjectAcl: "S3PutObjectAcl";
4291
+ readonly S3PutObjectCopy: "S3PutObjectCopy";
4292
+ readonly S3PutObjectLegalHold: "S3PutObjectLegalHold";
4293
+ readonly S3PutObjectRetention: "S3PutObjectRetention";
4294
+ readonly S3PutObjectTagging: "S3PutObjectTagging";
4295
+ readonly S3ReplicateObject: "S3ReplicateObject";
4296
+ };
4297
+ /**
4298
+ * @public
4299
+ */
4300
+ export type OperationName = (typeof OperationName)[keyof typeof OperationName];
4091
4301
  /**
4092
4302
  * @public
4093
4303
  * <p>Contains the configuration and status information for a single job retrieved as part of
@@ -4458,11 +4668,16 @@ export interface PutBucketTaggingRequest {
4458
4668
  }
4459
4669
  /**
4460
4670
  * @public
4671
+ * @enum
4461
4672
  */
4462
- export declare enum MFADelete {
4463
- Disabled = "Disabled",
4464
- Enabled = "Enabled"
4465
- }
4673
+ export declare const MFADelete: {
4674
+ readonly Disabled: "Disabled";
4675
+ readonly Enabled: "Enabled";
4676
+ };
4677
+ /**
4678
+ * @public
4679
+ */
4680
+ export type MFADelete = (typeof MFADelete)[keyof typeof MFADelete];
4466
4681
  /**
4467
4682
  * @public
4468
4683
  * <p>Describes the versioning state of an Amazon S3 on Outposts bucket. For more information, see
@@ -4696,11 +4911,16 @@ export declare class JobStatusException extends __BaseException {
4696
4911
  }
4697
4912
  /**
4698
4913
  * @public
4914
+ * @enum
4699
4915
  */
4700
- export declare enum RequestedJobStatus {
4701
- Cancelled = "Cancelled",
4702
- Ready = "Ready"
4703
- }
4916
+ export declare const RequestedJobStatus: {
4917
+ readonly Cancelled: "Cancelled";
4918
+ readonly Ready: "Ready";
4919
+ };
4920
+ /**
4921
+ * @public
4922
+ */
4923
+ export type RequestedJobStatus = (typeof RequestedJobStatus)[keyof typeof RequestedJobStatus];
4704
4924
  /**
4705
4925
  * @public
4706
4926
  */