@aws-sdk/client-s3-control 3.51.0 → 3.53.1
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/CHANGELOG.md +31 -0
- package/README.md +1 -4
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/S3ControlServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +263 -4
- package/dist-cjs/protocols/Aws_restXml.js +658 -850
- package/dist-es/index.js +1 -0
- package/dist-es/models/S3ControlServiceException.js +12 -0
- package/dist-es/models/models_0.js +230 -4
- package/dist-es/protocols/Aws_restXml.js +980 -806
- package/dist-types/S3Control.d.ts +297 -283
- package/dist-types/S3ControlClient.d.ts +1 -4
- package/dist-types/commands/CreateAccessPointCommand.d.ts +7 -7
- package/dist-types/commands/CreateAccessPointForObjectLambdaCommand.d.ts +4 -3
- package/dist-types/commands/CreateBucketCommand.d.ts +14 -9
- package/dist-types/commands/CreateJobCommand.d.ts +3 -4
- package/dist-types/commands/CreateMultiRegionAccessPointCommand.d.ts +9 -10
- package/dist-types/commands/DeleteAccessPointForObjectLambdaCommand.d.ts +2 -1
- package/dist-types/commands/DeleteAccessPointPolicyForObjectLambdaCommand.d.ts +2 -1
- package/dist-types/commands/DeleteBucketCommand.d.ts +5 -6
- package/dist-types/commands/DeleteBucketLifecycleConfigurationCommand.d.ts +8 -7
- package/dist-types/commands/DeleteBucketPolicyCommand.d.ts +13 -12
- package/dist-types/commands/DeleteBucketTaggingCommand.d.ts +7 -8
- package/dist-types/commands/DeleteJobTaggingCommand.d.ts +3 -2
- package/dist-types/commands/DeleteMultiRegionAccessPointCommand.d.ts +7 -8
- package/dist-types/commands/DeleteStorageLensConfigurationCommand.d.ts +6 -7
- package/dist-types/commands/DeleteStorageLensConfigurationTaggingCommand.d.ts +7 -7
- package/dist-types/commands/DescribeJobCommand.d.ts +1 -2
- package/dist-types/commands/DescribeMultiRegionAccessPointOperationCommand.d.ts +2 -3
- package/dist-types/commands/GetAccessPointConfigurationForObjectLambdaCommand.d.ts +2 -1
- package/dist-types/commands/GetAccessPointPolicyForObjectLambdaCommand.d.ts +2 -1
- package/dist-types/commands/GetAccessPointPolicyStatusCommand.d.ts +3 -1
- package/dist-types/commands/GetBucketCommand.d.ts +10 -12
- package/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +12 -10
- package/dist-types/commands/GetBucketPolicyCommand.d.ts +17 -12
- package/dist-types/commands/GetBucketTaggingCommand.d.ts +7 -7
- package/dist-types/commands/GetMultiRegionAccessPointCommand.d.ts +3 -4
- package/dist-types/commands/GetMultiRegionAccessPointPolicyCommand.d.ts +5 -5
- package/dist-types/commands/GetMultiRegionAccessPointPolicyStatusCommand.d.ts +6 -6
- package/dist-types/commands/GetPublicAccessBlockCommand.d.ts +2 -2
- package/dist-types/commands/GetStorageLensConfigurationCommand.d.ts +5 -7
- package/dist-types/commands/GetStorageLensConfigurationTaggingCommand.d.ts +7 -6
- package/dist-types/commands/ListAccessPointsCommand.d.ts +4 -4
- package/dist-types/commands/ListAccessPointsForObjectLambdaCommand.d.ts +5 -5
- package/dist-types/commands/ListJobsCommand.d.ts +1 -1
- package/dist-types/commands/ListMultiRegionAccessPointsCommand.d.ts +6 -7
- package/dist-types/commands/ListStorageLensConfigurationsCommand.d.ts +7 -7
- package/dist-types/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +2 -1
- package/dist-types/commands/PutAccessPointPolicyCommand.d.ts +3 -2
- package/dist-types/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +3 -3
- package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +9 -7
- package/dist-types/commands/PutBucketPolicyCommand.d.ts +14 -11
- package/dist-types/commands/PutBucketTaggingCommand.d.ts +22 -20
- package/dist-types/commands/PutJobTaggingCommand.d.ts +16 -14
- package/dist-types/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +7 -7
- package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +4 -3
- package/dist-types/commands/PutStorageLensConfigurationCommand.d.ts +3 -4
- package/dist-types/commands/PutStorageLensConfigurationTaggingCommand.d.ts +7 -8
- package/dist-types/commands/UpdateJobPriorityCommand.d.ts +1 -2
- package/dist-types/commands/UpdateJobStatusCommand.d.ts +1 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/S3ControlServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +668 -302
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/S3ControlServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +219 -39
- package/package.json +39 -39
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class S3ControlServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { S3ControlServiceException as __BaseException } from "./S3ControlServiceException";
|
|
2
3
|
|
|
3
4
|
export interface AbortIncompleteMultipartUpload {
|
|
4
5
|
|
|
@@ -358,14 +359,18 @@ export declare namespace CreateAccessPointForObjectLambdaResult {
|
|
|
358
359
|
const filterSensitiveLog: (obj: CreateAccessPointForObjectLambdaResult) => any;
|
|
359
360
|
}
|
|
360
361
|
|
|
361
|
-
export
|
|
362
|
-
name: "BucketAlreadyExists";
|
|
363
|
-
$fault: "client";
|
|
362
|
+
export declare class BucketAlreadyExists extends __BaseException {
|
|
363
|
+
readonly name: "BucketAlreadyExists";
|
|
364
|
+
readonly $fault: "client";
|
|
365
|
+
|
|
366
|
+
constructor(opts: __ExceptionOptionType<BucketAlreadyExists, __BaseException>);
|
|
364
367
|
}
|
|
365
368
|
|
|
366
|
-
export
|
|
367
|
-
name: "BucketAlreadyOwnedByYou";
|
|
368
|
-
$fault: "client";
|
|
369
|
+
export declare class BucketAlreadyOwnedByYou extends __BaseException {
|
|
370
|
+
readonly name: "BucketAlreadyOwnedByYou";
|
|
371
|
+
readonly $fault: "client";
|
|
372
|
+
|
|
373
|
+
constructor(opts: __ExceptionOptionType<BucketAlreadyOwnedByYou, __BaseException>);
|
|
369
374
|
}
|
|
370
375
|
export declare type BucketCannedACL = "authenticated-read" | "private" | "public-read" | "public-read-write";
|
|
371
376
|
export declare type BucketLocationConstraint = "EU" | "ap-northeast-1" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "cn-north-1" | "eu-central-1" | "eu-west-1" | "sa-east-1" | "us-west-1" | "us-west-2";
|
|
@@ -415,10 +420,12 @@ export declare namespace CreateBucketResult {
|
|
|
415
420
|
const filterSensitiveLog: (obj: CreateBucketResult) => any;
|
|
416
421
|
}
|
|
417
422
|
|
|
418
|
-
export
|
|
419
|
-
name: "BadRequestException";
|
|
420
|
-
$fault: "client";
|
|
423
|
+
export declare class BadRequestException extends __BaseException {
|
|
424
|
+
readonly name: "BadRequestException";
|
|
425
|
+
readonly $fault: "client";
|
|
421
426
|
Message?: string;
|
|
427
|
+
|
|
428
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
422
429
|
}
|
|
423
430
|
|
|
424
431
|
export interface JobManifestLocation {
|
|
@@ -465,6 +472,114 @@ export declare namespace JobManifest {
|
|
|
465
472
|
|
|
466
473
|
const filterSensitiveLog: (obj: JobManifest) => any;
|
|
467
474
|
}
|
|
475
|
+
export declare enum ReplicationStatus {
|
|
476
|
+
COMPLETED = "COMPLETED",
|
|
477
|
+
FAILED = "FAILED",
|
|
478
|
+
NONE = "NONE",
|
|
479
|
+
REPLICA = "REPLICA"
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
export interface JobManifestGeneratorFilter {
|
|
483
|
+
|
|
484
|
+
EligibleForReplication?: boolean;
|
|
485
|
+
|
|
486
|
+
CreatedAfter?: Date;
|
|
487
|
+
|
|
488
|
+
CreatedBefore?: Date;
|
|
489
|
+
|
|
490
|
+
ObjectReplicationStatuses?: (ReplicationStatus | string)[];
|
|
491
|
+
}
|
|
492
|
+
export declare namespace JobManifestGeneratorFilter {
|
|
493
|
+
|
|
494
|
+
const filterSensitiveLog: (obj: JobManifestGeneratorFilter) => any;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
export interface SSEKMSEncryption {
|
|
498
|
+
|
|
499
|
+
KeyId: string | undefined;
|
|
500
|
+
}
|
|
501
|
+
export declare namespace SSEKMSEncryption {
|
|
502
|
+
|
|
503
|
+
const filterSensitiveLog: (obj: SSEKMSEncryption) => any;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
export interface SSES3Encryption {
|
|
507
|
+
}
|
|
508
|
+
export declare namespace SSES3Encryption {
|
|
509
|
+
|
|
510
|
+
const filterSensitiveLog: (obj: SSES3Encryption) => any;
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
export interface GeneratedManifestEncryption {
|
|
514
|
+
|
|
515
|
+
SSES3?: SSES3Encryption;
|
|
516
|
+
|
|
517
|
+
SSEKMS?: SSEKMSEncryption;
|
|
518
|
+
}
|
|
519
|
+
export declare namespace GeneratedManifestEncryption {
|
|
520
|
+
|
|
521
|
+
const filterSensitiveLog: (obj: GeneratedManifestEncryption) => any;
|
|
522
|
+
}
|
|
523
|
+
export declare enum GeneratedManifestFormat {
|
|
524
|
+
S3InventoryReport_CSV_20211130 = "S3InventoryReport_CSV_20211130"
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
export interface S3ManifestOutputLocation {
|
|
528
|
+
|
|
529
|
+
ExpectedManifestBucketOwner?: string;
|
|
530
|
+
|
|
531
|
+
Bucket: string | undefined;
|
|
532
|
+
|
|
533
|
+
ManifestPrefix?: string;
|
|
534
|
+
|
|
535
|
+
ManifestEncryption?: GeneratedManifestEncryption;
|
|
536
|
+
|
|
537
|
+
ManifestFormat: GeneratedManifestFormat | string | undefined;
|
|
538
|
+
}
|
|
539
|
+
export declare namespace S3ManifestOutputLocation {
|
|
540
|
+
|
|
541
|
+
const filterSensitiveLog: (obj: S3ManifestOutputLocation) => any;
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
export interface S3JobManifestGenerator {
|
|
545
|
+
|
|
546
|
+
ExpectedBucketOwner?: string;
|
|
547
|
+
|
|
548
|
+
SourceBucket: string | undefined;
|
|
549
|
+
|
|
550
|
+
ManifestOutputLocation?: S3ManifestOutputLocation;
|
|
551
|
+
|
|
552
|
+
Filter?: JobManifestGeneratorFilter;
|
|
553
|
+
|
|
554
|
+
EnableManifestOutput: boolean | undefined;
|
|
555
|
+
}
|
|
556
|
+
export declare namespace S3JobManifestGenerator {
|
|
557
|
+
|
|
558
|
+
const filterSensitiveLog: (obj: S3JobManifestGenerator) => any;
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
export declare type JobManifestGenerator = JobManifestGenerator.S3JobManifestGeneratorMember | JobManifestGenerator.$UnknownMember;
|
|
562
|
+
export declare namespace JobManifestGenerator {
|
|
563
|
+
|
|
564
|
+
interface S3JobManifestGeneratorMember {
|
|
565
|
+
S3JobManifestGenerator: S3JobManifestGenerator;
|
|
566
|
+
$unknown?: never;
|
|
567
|
+
}
|
|
568
|
+
interface $UnknownMember {
|
|
569
|
+
S3JobManifestGenerator?: never;
|
|
570
|
+
$unknown: [
|
|
571
|
+
string,
|
|
572
|
+
any
|
|
573
|
+
];
|
|
574
|
+
}
|
|
575
|
+
interface Visitor<T> {
|
|
576
|
+
S3JobManifestGenerator: (value: S3JobManifestGenerator) => T;
|
|
577
|
+
_: (name: string, value: any) => T;
|
|
578
|
+
}
|
|
579
|
+
const visit: <T>(value: JobManifestGenerator, visitor: Visitor<T>) => T;
|
|
580
|
+
|
|
581
|
+
const filterSensitiveLog: (obj: JobManifestGenerator) => any;
|
|
582
|
+
}
|
|
468
583
|
|
|
469
584
|
export interface LambdaInvokeOperation {
|
|
470
585
|
|
|
@@ -583,6 +698,12 @@ export declare namespace S3SetObjectAclOperation {
|
|
|
583
698
|
|
|
584
699
|
const filterSensitiveLog: (obj: S3SetObjectAclOperation) => any;
|
|
585
700
|
}
|
|
701
|
+
export declare enum S3ChecksumAlgorithm {
|
|
702
|
+
CRC32 = "CRC32",
|
|
703
|
+
CRC32C = "CRC32C",
|
|
704
|
+
SHA1 = "SHA1",
|
|
705
|
+
SHA256 = "SHA256"
|
|
706
|
+
}
|
|
586
707
|
export declare enum S3MetadataDirective {
|
|
587
708
|
COPY = "COPY",
|
|
588
709
|
REPLACE = "REPLACE"
|
|
@@ -644,6 +765,7 @@ export declare enum S3ObjectLockMode {
|
|
|
644
765
|
export declare enum S3StorageClass {
|
|
645
766
|
DEEP_ARCHIVE = "DEEP_ARCHIVE",
|
|
646
767
|
GLACIER = "GLACIER",
|
|
768
|
+
GLACIER_IR = "GLACIER_IR",
|
|
647
769
|
INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
|
|
648
770
|
ONEZONE_IA = "ONEZONE_IA",
|
|
649
771
|
STANDARD = "STANDARD",
|
|
@@ -685,6 +807,8 @@ export interface S3CopyObjectOperation {
|
|
|
685
807
|
ObjectLockRetainUntilDate?: Date;
|
|
686
808
|
|
|
687
809
|
BucketKeyEnabled?: boolean;
|
|
810
|
+
|
|
811
|
+
ChecksumAlgorithm?: S3ChecksumAlgorithm | string;
|
|
688
812
|
}
|
|
689
813
|
export declare namespace S3CopyObjectOperation {
|
|
690
814
|
|
|
@@ -744,6 +868,13 @@ export declare namespace S3SetObjectTaggingOperation {
|
|
|
744
868
|
const filterSensitiveLog: (obj: S3SetObjectTaggingOperation) => any;
|
|
745
869
|
}
|
|
746
870
|
|
|
871
|
+
export interface S3ReplicateObjectOperation {
|
|
872
|
+
}
|
|
873
|
+
export declare namespace S3ReplicateObjectOperation {
|
|
874
|
+
|
|
875
|
+
const filterSensitiveLog: (obj: S3ReplicateObjectOperation) => any;
|
|
876
|
+
}
|
|
877
|
+
|
|
747
878
|
export interface JobOperation {
|
|
748
879
|
|
|
749
880
|
LambdaInvoke?: LambdaInvokeOperation;
|
|
@@ -761,6 +892,8 @@ export interface JobOperation {
|
|
|
761
892
|
S3PutObjectLegalHold?: S3SetObjectLegalHoldOperation;
|
|
762
893
|
|
|
763
894
|
S3PutObjectRetention?: S3SetObjectRetentionOperation;
|
|
895
|
+
|
|
896
|
+
S3ReplicateObject?: S3ReplicateObjectOperation;
|
|
764
897
|
}
|
|
765
898
|
export declare namespace JobOperation {
|
|
766
899
|
|
|
@@ -802,7 +935,7 @@ export interface CreateJobRequest {
|
|
|
802
935
|
|
|
803
936
|
ClientRequestToken?: string;
|
|
804
937
|
|
|
805
|
-
Manifest
|
|
938
|
+
Manifest?: JobManifest;
|
|
806
939
|
|
|
807
940
|
Description?: string;
|
|
808
941
|
|
|
@@ -811,6 +944,8 @@ export interface CreateJobRequest {
|
|
|
811
944
|
RoleArn: string | undefined;
|
|
812
945
|
|
|
813
946
|
Tags?: S3Tag[];
|
|
947
|
+
|
|
948
|
+
ManifestGenerator?: JobManifestGenerator;
|
|
814
949
|
}
|
|
815
950
|
export declare namespace CreateJobRequest {
|
|
816
951
|
|
|
@@ -825,22 +960,28 @@ export declare namespace CreateJobResult {
|
|
|
825
960
|
const filterSensitiveLog: (obj: CreateJobResult) => any;
|
|
826
961
|
}
|
|
827
962
|
|
|
828
|
-
export
|
|
829
|
-
name: "IdempotencyException";
|
|
830
|
-
$fault: "client";
|
|
963
|
+
export declare class IdempotencyException extends __BaseException {
|
|
964
|
+
readonly name: "IdempotencyException";
|
|
965
|
+
readonly $fault: "client";
|
|
831
966
|
Message?: string;
|
|
967
|
+
|
|
968
|
+
constructor(opts: __ExceptionOptionType<IdempotencyException, __BaseException>);
|
|
832
969
|
}
|
|
833
970
|
|
|
834
|
-
export
|
|
835
|
-
name: "InternalServiceException";
|
|
836
|
-
$fault: "server";
|
|
971
|
+
export declare class InternalServiceException extends __BaseException {
|
|
972
|
+
readonly name: "InternalServiceException";
|
|
973
|
+
readonly $fault: "server";
|
|
837
974
|
Message?: string;
|
|
975
|
+
|
|
976
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
838
977
|
}
|
|
839
978
|
|
|
840
|
-
export
|
|
841
|
-
name: "TooManyRequestsException";
|
|
842
|
-
$fault: "client";
|
|
979
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
980
|
+
readonly name: "TooManyRequestsException";
|
|
981
|
+
readonly $fault: "client";
|
|
843
982
|
Message?: string;
|
|
983
|
+
|
|
984
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
844
985
|
}
|
|
845
986
|
export interface CreateMultiRegionAccessPointRequest {
|
|
846
987
|
|
|
@@ -959,10 +1100,12 @@ export declare namespace DeleteJobTaggingResult {
|
|
|
959
1100
|
const filterSensitiveLog: (obj: DeleteJobTaggingResult) => any;
|
|
960
1101
|
}
|
|
961
1102
|
|
|
962
|
-
export
|
|
963
|
-
name: "NotFoundException";
|
|
964
|
-
$fault: "client";
|
|
1103
|
+
export declare class NotFoundException extends __BaseException {
|
|
1104
|
+
readonly name: "NotFoundException";
|
|
1105
|
+
readonly $fault: "client";
|
|
965
1106
|
Message?: string;
|
|
1107
|
+
|
|
1108
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
966
1109
|
}
|
|
967
1110
|
export interface DeleteMultiRegionAccessPointRequest {
|
|
968
1111
|
|
|
@@ -1040,6 +1183,26 @@ export declare namespace JobFailure {
|
|
|
1040
1183
|
const filterSensitiveLog: (obj: JobFailure) => any;
|
|
1041
1184
|
}
|
|
1042
1185
|
|
|
1186
|
+
export interface S3GeneratedManifestDescriptor {
|
|
1187
|
+
|
|
1188
|
+
Format?: GeneratedManifestFormat | string;
|
|
1189
|
+
|
|
1190
|
+
Location?: JobManifestLocation;
|
|
1191
|
+
}
|
|
1192
|
+
export declare namespace S3GeneratedManifestDescriptor {
|
|
1193
|
+
|
|
1194
|
+
const filterSensitiveLog: (obj: S3GeneratedManifestDescriptor) => any;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
export interface JobTimers {
|
|
1198
|
+
|
|
1199
|
+
ElapsedTimeInActiveSeconds?: number;
|
|
1200
|
+
}
|
|
1201
|
+
export declare namespace JobTimers {
|
|
1202
|
+
|
|
1203
|
+
const filterSensitiveLog: (obj: JobTimers) => any;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1043
1206
|
export interface JobProgressSummary {
|
|
1044
1207
|
|
|
1045
1208
|
TotalNumberOfTasks?: number;
|
|
@@ -1047,6 +1210,8 @@ export interface JobProgressSummary {
|
|
|
1047
1210
|
NumberOfTasksSucceeded?: number;
|
|
1048
1211
|
|
|
1049
1212
|
NumberOfTasksFailed?: number;
|
|
1213
|
+
|
|
1214
|
+
Timers?: JobTimers;
|
|
1050
1215
|
}
|
|
1051
1216
|
export declare namespace JobProgressSummary {
|
|
1052
1217
|
|
|
@@ -1103,6 +1268,10 @@ export interface JobDescriptor {
|
|
|
1103
1268
|
SuspendedDate?: Date;
|
|
1104
1269
|
|
|
1105
1270
|
SuspendedCause?: string;
|
|
1271
|
+
|
|
1272
|
+
ManifestGenerator?: JobManifestGenerator;
|
|
1273
|
+
|
|
1274
|
+
GeneratedManifestDescriptor?: S3GeneratedManifestDescriptor;
|
|
1106
1275
|
}
|
|
1107
1276
|
export declare namespace JobDescriptor {
|
|
1108
1277
|
|
|
@@ -1618,10 +1787,12 @@ export declare namespace GetPublicAccessBlockRequest {
|
|
|
1618
1787
|
const filterSensitiveLog: (obj: GetPublicAccessBlockRequest) => any;
|
|
1619
1788
|
}
|
|
1620
1789
|
|
|
1621
|
-
export
|
|
1622
|
-
name: "NoSuchPublicAccessBlockConfiguration";
|
|
1623
|
-
$fault: "client";
|
|
1790
|
+
export declare class NoSuchPublicAccessBlockConfiguration extends __BaseException {
|
|
1791
|
+
readonly name: "NoSuchPublicAccessBlockConfiguration";
|
|
1792
|
+
readonly $fault: "client";
|
|
1624
1793
|
Message?: string;
|
|
1794
|
+
|
|
1795
|
+
constructor(opts: __ExceptionOptionType<NoSuchPublicAccessBlockConfiguration, __BaseException>);
|
|
1625
1796
|
}
|
|
1626
1797
|
export interface GetStorageLensConfigurationRequest {
|
|
1627
1798
|
|
|
@@ -1850,16 +2021,20 @@ export declare namespace ListAccessPointsForObjectLambdaResult {
|
|
|
1850
2021
|
const filterSensitiveLog: (obj: ListAccessPointsForObjectLambdaResult) => any;
|
|
1851
2022
|
}
|
|
1852
2023
|
|
|
1853
|
-
export
|
|
1854
|
-
name: "InvalidNextTokenException";
|
|
1855
|
-
$fault: "client";
|
|
2024
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
2025
|
+
readonly name: "InvalidNextTokenException";
|
|
2026
|
+
readonly $fault: "client";
|
|
1856
2027
|
Message?: string;
|
|
2028
|
+
|
|
2029
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
1857
2030
|
}
|
|
1858
2031
|
|
|
1859
|
-
export
|
|
1860
|
-
name: "InvalidRequestException";
|
|
1861
|
-
$fault: "client";
|
|
2032
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
2033
|
+
readonly name: "InvalidRequestException";
|
|
2034
|
+
readonly $fault: "client";
|
|
1862
2035
|
Message?: string;
|
|
2036
|
+
|
|
2037
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
1863
2038
|
}
|
|
1864
2039
|
export interface ListJobsRequest {
|
|
1865
2040
|
|
|
@@ -1883,7 +2058,8 @@ export declare enum OperationName {
|
|
|
1883
2058
|
S3PutObjectCopy = "S3PutObjectCopy",
|
|
1884
2059
|
S3PutObjectLegalHold = "S3PutObjectLegalHold",
|
|
1885
2060
|
S3PutObjectRetention = "S3PutObjectRetention",
|
|
1886
|
-
S3PutObjectTagging = "S3PutObjectTagging"
|
|
2061
|
+
S3PutObjectTagging = "S3PutObjectTagging",
|
|
2062
|
+
S3ReplicateObject = "S3ReplicateObject"
|
|
1887
2063
|
}
|
|
1888
2064
|
|
|
1889
2065
|
export interface JobListDescriptor {
|
|
@@ -2127,10 +2303,12 @@ export declare namespace PutJobTaggingResult {
|
|
|
2127
2303
|
const filterSensitiveLog: (obj: PutJobTaggingResult) => any;
|
|
2128
2304
|
}
|
|
2129
2305
|
|
|
2130
|
-
export
|
|
2131
|
-
name: "TooManyTagsException";
|
|
2132
|
-
$fault: "client";
|
|
2306
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
2307
|
+
readonly name: "TooManyTagsException";
|
|
2308
|
+
readonly $fault: "client";
|
|
2133
2309
|
Message?: string;
|
|
2310
|
+
|
|
2311
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
2134
2312
|
}
|
|
2135
2313
|
export interface PutMultiRegionAccessPointPolicyRequest {
|
|
2136
2314
|
|
|
@@ -2217,10 +2395,12 @@ export declare namespace UpdateJobPriorityResult {
|
|
|
2217
2395
|
const filterSensitiveLog: (obj: UpdateJobPriorityResult) => any;
|
|
2218
2396
|
}
|
|
2219
2397
|
|
|
2220
|
-
export
|
|
2221
|
-
name: "JobStatusException";
|
|
2222
|
-
$fault: "client";
|
|
2398
|
+
export declare class JobStatusException extends __BaseException {
|
|
2399
|
+
readonly name: "JobStatusException";
|
|
2400
|
+
readonly $fault: "client";
|
|
2223
2401
|
Message?: string;
|
|
2402
|
+
|
|
2403
|
+
constructor(opts: __ExceptionOptionType<JobStatusException, __BaseException>);
|
|
2224
2404
|
}
|
|
2225
2405
|
export declare enum RequestedJobStatus {
|
|
2226
2406
|
Cancelled = "Cancelled",
|
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.53.1",
|
|
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",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"build:es": "tsc -p tsconfig.es.json",
|
|
10
10
|
"build:types": "tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "rimraf ./dist-*",
|
|
12
|
+
"clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
|
|
13
13
|
"test": "yarn test:unit",
|
|
14
14
|
"test:unit": "ts-mocha test/**/*.spec.ts"
|
|
15
15
|
},
|
|
@@ -20,49 +20,49 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-blob-browser": "3.
|
|
28
|
-
"@aws-sdk/hash-node": "3.
|
|
29
|
-
"@aws-sdk/hash-stream-node": "3.
|
|
30
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
31
|
-
"@aws-sdk/md5-js": "3.
|
|
32
|
-
"@aws-sdk/middleware-apply-body-checksum": "3.
|
|
33
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
34
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
35
|
-
"@aws-sdk/middleware-logger": "3.
|
|
36
|
-
"@aws-sdk/middleware-retry": "3.
|
|
37
|
-
"@aws-sdk/middleware-sdk-s3-control": "3.
|
|
38
|
-
"@aws-sdk/middleware-serde": "3.
|
|
39
|
-
"@aws-sdk/middleware-signing": "3.
|
|
40
|
-
"@aws-sdk/middleware-stack": "3.
|
|
41
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
42
|
-
"@aws-sdk/node-config-provider": "3.
|
|
43
|
-
"@aws-sdk/node-http-handler": "3.
|
|
44
|
-
"@aws-sdk/protocol-http": "3.
|
|
45
|
-
"@aws-sdk/smithy-client": "3.
|
|
46
|
-
"@aws-sdk/types": "3.
|
|
47
|
-
"@aws-sdk/url-parser": "3.
|
|
48
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
49
|
-
"@aws-sdk/util-base64-node": "3.
|
|
50
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
51
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
52
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
53
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
54
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
56
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
57
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
58
|
-
"@aws-sdk/xml-builder": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.53.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.53.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.53.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.53.0",
|
|
27
|
+
"@aws-sdk/hash-blob-browser": "3.53.0",
|
|
28
|
+
"@aws-sdk/hash-node": "3.53.0",
|
|
29
|
+
"@aws-sdk/hash-stream-node": "3.53.1",
|
|
30
|
+
"@aws-sdk/invalid-dependency": "3.53.0",
|
|
31
|
+
"@aws-sdk/md5-js": "3.53.0",
|
|
32
|
+
"@aws-sdk/middleware-apply-body-checksum": "3.53.0",
|
|
33
|
+
"@aws-sdk/middleware-content-length": "3.53.0",
|
|
34
|
+
"@aws-sdk/middleware-host-header": "3.53.0",
|
|
35
|
+
"@aws-sdk/middleware-logger": "3.53.0",
|
|
36
|
+
"@aws-sdk/middleware-retry": "3.53.0",
|
|
37
|
+
"@aws-sdk/middleware-sdk-s3-control": "3.53.0",
|
|
38
|
+
"@aws-sdk/middleware-serde": "3.53.0",
|
|
39
|
+
"@aws-sdk/middleware-signing": "3.53.0",
|
|
40
|
+
"@aws-sdk/middleware-stack": "3.53.0",
|
|
41
|
+
"@aws-sdk/middleware-user-agent": "3.53.0",
|
|
42
|
+
"@aws-sdk/node-config-provider": "3.53.0",
|
|
43
|
+
"@aws-sdk/node-http-handler": "3.53.0",
|
|
44
|
+
"@aws-sdk/protocol-http": "3.53.0",
|
|
45
|
+
"@aws-sdk/smithy-client": "3.53.0",
|
|
46
|
+
"@aws-sdk/types": "3.53.0",
|
|
47
|
+
"@aws-sdk/url-parser": "3.53.0",
|
|
48
|
+
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
49
|
+
"@aws-sdk/util-base64-node": "3.52.0",
|
|
50
|
+
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
51
|
+
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
52
|
+
"@aws-sdk/util-defaults-mode-browser": "3.53.0",
|
|
53
|
+
"@aws-sdk/util-defaults-mode-node": "3.53.0",
|
|
54
|
+
"@aws-sdk/util-user-agent-browser": "3.53.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-node": "3.53.0",
|
|
56
|
+
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
57
|
+
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
58
|
+
"@aws-sdk/xml-builder": "3.52.0",
|
|
59
59
|
"entities": "2.2.0",
|
|
60
60
|
"fast-xml-parser": "3.19.0",
|
|
61
61
|
"tslib": "^2.3.0",
|
|
62
62
|
"uuid": "^8.3.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
65
|
+
"@aws-sdk/service-client-documentation-generator": "3.52.0",
|
|
66
66
|
"@tsconfig/recommended": "1.0.1",
|
|
67
67
|
"@types/mocha": "^8.0.4",
|
|
68
68
|
"@types/node": "^12.7.5",
|