@aws-sdk/client-s3-control 3.52.0 → 3.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/S3ControlServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +179 -5
- package/dist-cjs/protocols/Aws_restXml.js +344 -850
- package/dist-es/index.js +1 -0
- package/dist-es/models/S3ControlServiceException.js +12 -0
- package/dist-es/models/models_0.js +163 -1
- package/dist-es/protocols/Aws_restXml.js +623 -763
- 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 +98 -37
- 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 +70 -37
- package/package.json +30 -30
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from S3Control service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class S3ControlServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -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
|
* <p>The container for abort incomplete multipart upload</p>
|
|
4
5
|
*/
|
|
@@ -667,16 +668,24 @@ export declare namespace CreateAccessPointForObjectLambdaResult {
|
|
|
667
668
|
* all users of the Outposts in this Region. Select a different name and try
|
|
668
669
|
* again.</p>
|
|
669
670
|
*/
|
|
670
|
-
export
|
|
671
|
-
name: "BucketAlreadyExists";
|
|
672
|
-
$fault: "client";
|
|
671
|
+
export declare class BucketAlreadyExists extends __BaseException {
|
|
672
|
+
readonly name: "BucketAlreadyExists";
|
|
673
|
+
readonly $fault: "client";
|
|
674
|
+
/**
|
|
675
|
+
* @internal
|
|
676
|
+
*/
|
|
677
|
+
constructor(opts: __ExceptionOptionType<BucketAlreadyExists, __BaseException>);
|
|
673
678
|
}
|
|
674
679
|
/**
|
|
675
680
|
* <p>The Outposts bucket you tried to create already exists, and you own it. </p>
|
|
676
681
|
*/
|
|
677
|
-
export
|
|
678
|
-
name: "BucketAlreadyOwnedByYou";
|
|
679
|
-
$fault: "client";
|
|
682
|
+
export declare class BucketAlreadyOwnedByYou extends __BaseException {
|
|
683
|
+
readonly name: "BucketAlreadyOwnedByYou";
|
|
684
|
+
readonly $fault: "client";
|
|
685
|
+
/**
|
|
686
|
+
* @internal
|
|
687
|
+
*/
|
|
688
|
+
constructor(opts: __ExceptionOptionType<BucketAlreadyOwnedByYou, __BaseException>);
|
|
680
689
|
}
|
|
681
690
|
export declare type BucketCannedACL = "authenticated-read" | "private" | "public-read" | "public-read-write";
|
|
682
691
|
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";
|
|
@@ -799,10 +808,14 @@ export declare namespace CreateBucketResult {
|
|
|
799
808
|
/**
|
|
800
809
|
* <p></p>
|
|
801
810
|
*/
|
|
802
|
-
export
|
|
803
|
-
name: "BadRequestException";
|
|
804
|
-
$fault: "client";
|
|
811
|
+
export declare class BadRequestException extends __BaseException {
|
|
812
|
+
readonly name: "BadRequestException";
|
|
813
|
+
readonly $fault: "client";
|
|
805
814
|
Message?: string;
|
|
815
|
+
/**
|
|
816
|
+
* @internal
|
|
817
|
+
*/
|
|
818
|
+
constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
|
|
806
819
|
}
|
|
807
820
|
/**
|
|
808
821
|
* <p>Contains the information required to locate a manifest object.</p>
|
|
@@ -1264,6 +1277,12 @@ export declare namespace S3SetObjectAclOperation {
|
|
|
1264
1277
|
*/
|
|
1265
1278
|
const filterSensitiveLog: (obj: S3SetObjectAclOperation) => any;
|
|
1266
1279
|
}
|
|
1280
|
+
export declare enum S3ChecksumAlgorithm {
|
|
1281
|
+
CRC32 = "CRC32",
|
|
1282
|
+
CRC32C = "CRC32C",
|
|
1283
|
+
SHA1 = "SHA1",
|
|
1284
|
+
SHA256 = "SHA256"
|
|
1285
|
+
}
|
|
1267
1286
|
export declare enum S3MetadataDirective {
|
|
1268
1287
|
COPY = "COPY",
|
|
1269
1288
|
REPLACE = "REPLACE"
|
|
@@ -1452,6 +1471,12 @@ export interface S3CopyObjectOperation {
|
|
|
1452
1471
|
* <i>bucket-level</i> settings for S3 Bucket Key.</p>
|
|
1453
1472
|
*/
|
|
1454
1473
|
BucketKeyEnabled?: boolean;
|
|
1474
|
+
/**
|
|
1475
|
+
* <p>Indicates the algorithm you want Amazon S3 to use to create the checksum. For more information
|
|
1476
|
+
* see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/CheckingObjectIntegrity.xml">
|
|
1477
|
+
* Checking object integrity</a> in the <i>Amazon S3 User Guide</i>.</p>
|
|
1478
|
+
*/
|
|
1479
|
+
ChecksumAlgorithm?: S3ChecksumAlgorithm | string;
|
|
1455
1480
|
}
|
|
1456
1481
|
export declare namespace S3CopyObjectOperation {
|
|
1457
1482
|
/**
|
|
@@ -1760,26 +1785,38 @@ export declare namespace CreateJobResult {
|
|
|
1760
1785
|
/**
|
|
1761
1786
|
* <p></p>
|
|
1762
1787
|
*/
|
|
1763
|
-
export
|
|
1764
|
-
name: "IdempotencyException";
|
|
1765
|
-
$fault: "client";
|
|
1788
|
+
export declare class IdempotencyException extends __BaseException {
|
|
1789
|
+
readonly name: "IdempotencyException";
|
|
1790
|
+
readonly $fault: "client";
|
|
1766
1791
|
Message?: string;
|
|
1792
|
+
/**
|
|
1793
|
+
* @internal
|
|
1794
|
+
*/
|
|
1795
|
+
constructor(opts: __ExceptionOptionType<IdempotencyException, __BaseException>);
|
|
1767
1796
|
}
|
|
1768
1797
|
/**
|
|
1769
1798
|
* <p></p>
|
|
1770
1799
|
*/
|
|
1771
|
-
export
|
|
1772
|
-
name: "InternalServiceException";
|
|
1773
|
-
$fault: "server";
|
|
1800
|
+
export declare class InternalServiceException extends __BaseException {
|
|
1801
|
+
readonly name: "InternalServiceException";
|
|
1802
|
+
readonly $fault: "server";
|
|
1774
1803
|
Message?: string;
|
|
1804
|
+
/**
|
|
1805
|
+
* @internal
|
|
1806
|
+
*/
|
|
1807
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
1775
1808
|
}
|
|
1776
1809
|
/**
|
|
1777
1810
|
* <p></p>
|
|
1778
1811
|
*/
|
|
1779
|
-
export
|
|
1780
|
-
name: "TooManyRequestsException";
|
|
1781
|
-
$fault: "client";
|
|
1812
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
1813
|
+
readonly name: "TooManyRequestsException";
|
|
1814
|
+
readonly $fault: "client";
|
|
1782
1815
|
Message?: string;
|
|
1816
|
+
/**
|
|
1817
|
+
* @internal
|
|
1818
|
+
*/
|
|
1819
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
1783
1820
|
}
|
|
1784
1821
|
export interface CreateMultiRegionAccessPointRequest {
|
|
1785
1822
|
/**
|
|
@@ -1983,10 +2020,14 @@ export declare namespace DeleteJobTaggingResult {
|
|
|
1983
2020
|
/**
|
|
1984
2021
|
* <p></p>
|
|
1985
2022
|
*/
|
|
1986
|
-
export
|
|
1987
|
-
name: "NotFoundException";
|
|
1988
|
-
$fault: "client";
|
|
2023
|
+
export declare class NotFoundException extends __BaseException {
|
|
2024
|
+
readonly name: "NotFoundException";
|
|
2025
|
+
readonly $fault: "client";
|
|
1989
2026
|
Message?: string;
|
|
2027
|
+
/**
|
|
2028
|
+
* @internal
|
|
2029
|
+
*/
|
|
2030
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
1990
2031
|
}
|
|
1991
2032
|
export interface DeleteMultiRegionAccessPointRequest {
|
|
1992
2033
|
/**
|
|
@@ -3223,10 +3264,14 @@ export declare namespace GetPublicAccessBlockRequest {
|
|
|
3223
3264
|
* against an account that doesn't have a <code>PublicAccessBlockConfiguration</code>
|
|
3224
3265
|
* set.</p>
|
|
3225
3266
|
*/
|
|
3226
|
-
export
|
|
3227
|
-
name: "NoSuchPublicAccessBlockConfiguration";
|
|
3228
|
-
$fault: "client";
|
|
3267
|
+
export declare class NoSuchPublicAccessBlockConfiguration extends __BaseException {
|
|
3268
|
+
readonly name: "NoSuchPublicAccessBlockConfiguration";
|
|
3269
|
+
readonly $fault: "client";
|
|
3229
3270
|
Message?: string;
|
|
3271
|
+
/**
|
|
3272
|
+
* @internal
|
|
3273
|
+
*/
|
|
3274
|
+
constructor(opts: __ExceptionOptionType<NoSuchPublicAccessBlockConfiguration, __BaseException>);
|
|
3230
3275
|
}
|
|
3231
3276
|
export interface GetStorageLensConfigurationRequest {
|
|
3232
3277
|
/**
|
|
@@ -3661,18 +3706,26 @@ export declare namespace ListAccessPointsForObjectLambdaResult {
|
|
|
3661
3706
|
/**
|
|
3662
3707
|
* <p></p>
|
|
3663
3708
|
*/
|
|
3664
|
-
export
|
|
3665
|
-
name: "InvalidNextTokenException";
|
|
3666
|
-
$fault: "client";
|
|
3709
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
3710
|
+
readonly name: "InvalidNextTokenException";
|
|
3711
|
+
readonly $fault: "client";
|
|
3667
3712
|
Message?: string;
|
|
3713
|
+
/**
|
|
3714
|
+
* @internal
|
|
3715
|
+
*/
|
|
3716
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
3668
3717
|
}
|
|
3669
3718
|
/**
|
|
3670
3719
|
* <p></p>
|
|
3671
3720
|
*/
|
|
3672
|
-
export
|
|
3673
|
-
name: "InvalidRequestException";
|
|
3674
|
-
$fault: "client";
|
|
3721
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
3722
|
+
readonly name: "InvalidRequestException";
|
|
3723
|
+
readonly $fault: "client";
|
|
3675
3724
|
Message?: string;
|
|
3725
|
+
/**
|
|
3726
|
+
* @internal
|
|
3727
|
+
*/
|
|
3728
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
3676
3729
|
}
|
|
3677
3730
|
export interface ListJobsRequest {
|
|
3678
3731
|
/**
|
|
@@ -4159,10 +4212,14 @@ export declare namespace PutJobTaggingResult {
|
|
|
4159
4212
|
/**
|
|
4160
4213
|
* <p>Amazon S3 throws this exception if you have too many tags in your tag set.</p>
|
|
4161
4214
|
*/
|
|
4162
|
-
export
|
|
4163
|
-
name: "TooManyTagsException";
|
|
4164
|
-
$fault: "client";
|
|
4215
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
4216
|
+
readonly name: "TooManyTagsException";
|
|
4217
|
+
readonly $fault: "client";
|
|
4165
4218
|
Message?: string;
|
|
4219
|
+
/**
|
|
4220
|
+
* @internal
|
|
4221
|
+
*/
|
|
4222
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
4166
4223
|
}
|
|
4167
4224
|
export interface PutMultiRegionAccessPointPolicyRequest {
|
|
4168
4225
|
/**
|
|
@@ -4313,10 +4370,14 @@ export declare namespace UpdateJobPriorityResult {
|
|
|
4313
4370
|
/**
|
|
4314
4371
|
* <p></p>
|
|
4315
4372
|
*/
|
|
4316
|
-
export
|
|
4317
|
-
name: "JobStatusException";
|
|
4318
|
-
$fault: "client";
|
|
4373
|
+
export declare class JobStatusException extends __BaseException {
|
|
4374
|
+
readonly name: "JobStatusException";
|
|
4375
|
+
readonly $fault: "client";
|
|
4319
4376
|
Message?: string;
|
|
4377
|
+
/**
|
|
4378
|
+
* @internal
|
|
4379
|
+
*/
|
|
4380
|
+
constructor(opts: __ExceptionOptionType<JobStatusException, __BaseException>);
|
|
4320
4381
|
}
|
|
4321
4382
|
export declare enum RequestedJobStatus {
|
|
4322
4383
|
Cancelled = "Cancelled",
|
|
@@ -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 {
|
|
@@ -691,6 +698,12 @@ export declare namespace S3SetObjectAclOperation {
|
|
|
691
698
|
|
|
692
699
|
const filterSensitiveLog: (obj: S3SetObjectAclOperation) => any;
|
|
693
700
|
}
|
|
701
|
+
export declare enum S3ChecksumAlgorithm {
|
|
702
|
+
CRC32 = "CRC32",
|
|
703
|
+
CRC32C = "CRC32C",
|
|
704
|
+
SHA1 = "SHA1",
|
|
705
|
+
SHA256 = "SHA256"
|
|
706
|
+
}
|
|
694
707
|
export declare enum S3MetadataDirective {
|
|
695
708
|
COPY = "COPY",
|
|
696
709
|
REPLACE = "REPLACE"
|
|
@@ -794,6 +807,8 @@ export interface S3CopyObjectOperation {
|
|
|
794
807
|
ObjectLockRetainUntilDate?: Date;
|
|
795
808
|
|
|
796
809
|
BucketKeyEnabled?: boolean;
|
|
810
|
+
|
|
811
|
+
ChecksumAlgorithm?: S3ChecksumAlgorithm | string;
|
|
797
812
|
}
|
|
798
813
|
export declare namespace S3CopyObjectOperation {
|
|
799
814
|
|
|
@@ -945,22 +960,28 @@ export declare namespace CreateJobResult {
|
|
|
945
960
|
const filterSensitiveLog: (obj: CreateJobResult) => any;
|
|
946
961
|
}
|
|
947
962
|
|
|
948
|
-
export
|
|
949
|
-
name: "IdempotencyException";
|
|
950
|
-
$fault: "client";
|
|
963
|
+
export declare class IdempotencyException extends __BaseException {
|
|
964
|
+
readonly name: "IdempotencyException";
|
|
965
|
+
readonly $fault: "client";
|
|
951
966
|
Message?: string;
|
|
967
|
+
|
|
968
|
+
constructor(opts: __ExceptionOptionType<IdempotencyException, __BaseException>);
|
|
952
969
|
}
|
|
953
970
|
|
|
954
|
-
export
|
|
955
|
-
name: "InternalServiceException";
|
|
956
|
-
$fault: "server";
|
|
971
|
+
export declare class InternalServiceException extends __BaseException {
|
|
972
|
+
readonly name: "InternalServiceException";
|
|
973
|
+
readonly $fault: "server";
|
|
957
974
|
Message?: string;
|
|
975
|
+
|
|
976
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
958
977
|
}
|
|
959
978
|
|
|
960
|
-
export
|
|
961
|
-
name: "TooManyRequestsException";
|
|
962
|
-
$fault: "client";
|
|
979
|
+
export declare class TooManyRequestsException extends __BaseException {
|
|
980
|
+
readonly name: "TooManyRequestsException";
|
|
981
|
+
readonly $fault: "client";
|
|
963
982
|
Message?: string;
|
|
983
|
+
|
|
984
|
+
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
964
985
|
}
|
|
965
986
|
export interface CreateMultiRegionAccessPointRequest {
|
|
966
987
|
|
|
@@ -1079,10 +1100,12 @@ export declare namespace DeleteJobTaggingResult {
|
|
|
1079
1100
|
const filterSensitiveLog: (obj: DeleteJobTaggingResult) => any;
|
|
1080
1101
|
}
|
|
1081
1102
|
|
|
1082
|
-
export
|
|
1083
|
-
name: "NotFoundException";
|
|
1084
|
-
$fault: "client";
|
|
1103
|
+
export declare class NotFoundException extends __BaseException {
|
|
1104
|
+
readonly name: "NotFoundException";
|
|
1105
|
+
readonly $fault: "client";
|
|
1085
1106
|
Message?: string;
|
|
1107
|
+
|
|
1108
|
+
constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
|
|
1086
1109
|
}
|
|
1087
1110
|
export interface DeleteMultiRegionAccessPointRequest {
|
|
1088
1111
|
|
|
@@ -1764,10 +1787,12 @@ export declare namespace GetPublicAccessBlockRequest {
|
|
|
1764
1787
|
const filterSensitiveLog: (obj: GetPublicAccessBlockRequest) => any;
|
|
1765
1788
|
}
|
|
1766
1789
|
|
|
1767
|
-
export
|
|
1768
|
-
name: "NoSuchPublicAccessBlockConfiguration";
|
|
1769
|
-
$fault: "client";
|
|
1790
|
+
export declare class NoSuchPublicAccessBlockConfiguration extends __BaseException {
|
|
1791
|
+
readonly name: "NoSuchPublicAccessBlockConfiguration";
|
|
1792
|
+
readonly $fault: "client";
|
|
1770
1793
|
Message?: string;
|
|
1794
|
+
|
|
1795
|
+
constructor(opts: __ExceptionOptionType<NoSuchPublicAccessBlockConfiguration, __BaseException>);
|
|
1771
1796
|
}
|
|
1772
1797
|
export interface GetStorageLensConfigurationRequest {
|
|
1773
1798
|
|
|
@@ -1996,16 +2021,20 @@ export declare namespace ListAccessPointsForObjectLambdaResult {
|
|
|
1996
2021
|
const filterSensitiveLog: (obj: ListAccessPointsForObjectLambdaResult) => any;
|
|
1997
2022
|
}
|
|
1998
2023
|
|
|
1999
|
-
export
|
|
2000
|
-
name: "InvalidNextTokenException";
|
|
2001
|
-
$fault: "client";
|
|
2024
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
2025
|
+
readonly name: "InvalidNextTokenException";
|
|
2026
|
+
readonly $fault: "client";
|
|
2002
2027
|
Message?: string;
|
|
2028
|
+
|
|
2029
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
2003
2030
|
}
|
|
2004
2031
|
|
|
2005
|
-
export
|
|
2006
|
-
name: "InvalidRequestException";
|
|
2007
|
-
$fault: "client";
|
|
2032
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
2033
|
+
readonly name: "InvalidRequestException";
|
|
2034
|
+
readonly $fault: "client";
|
|
2008
2035
|
Message?: string;
|
|
2036
|
+
|
|
2037
|
+
constructor(opts: __ExceptionOptionType<InvalidRequestException, __BaseException>);
|
|
2009
2038
|
}
|
|
2010
2039
|
export interface ListJobsRequest {
|
|
2011
2040
|
|
|
@@ -2274,10 +2303,12 @@ export declare namespace PutJobTaggingResult {
|
|
|
2274
2303
|
const filterSensitiveLog: (obj: PutJobTaggingResult) => any;
|
|
2275
2304
|
}
|
|
2276
2305
|
|
|
2277
|
-
export
|
|
2278
|
-
name: "TooManyTagsException";
|
|
2279
|
-
$fault: "client";
|
|
2306
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
2307
|
+
readonly name: "TooManyTagsException";
|
|
2308
|
+
readonly $fault: "client";
|
|
2280
2309
|
Message?: string;
|
|
2310
|
+
|
|
2311
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
2281
2312
|
}
|
|
2282
2313
|
export interface PutMultiRegionAccessPointPolicyRequest {
|
|
2283
2314
|
|
|
@@ -2364,10 +2395,12 @@ export declare namespace UpdateJobPriorityResult {
|
|
|
2364
2395
|
const filterSensitiveLog: (obj: UpdateJobPriorityResult) => any;
|
|
2365
2396
|
}
|
|
2366
2397
|
|
|
2367
|
-
export
|
|
2368
|
-
name: "JobStatusException";
|
|
2369
|
-
$fault: "client";
|
|
2398
|
+
export declare class JobStatusException extends __BaseException {
|
|
2399
|
+
readonly name: "JobStatusException";
|
|
2400
|
+
readonly $fault: "client";
|
|
2370
2401
|
Message?: string;
|
|
2402
|
+
|
|
2403
|
+
constructor(opts: __ExceptionOptionType<JobStatusException, __BaseException>);
|
|
2371
2404
|
}
|
|
2372
2405
|
export declare enum RequestedJobStatus {
|
|
2373
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.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",
|
|
@@ -20,39 +20,39 @@
|
|
|
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.
|
|
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.0",
|
|
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
48
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
49
49
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-body-length-browser": "3.52.0",
|
|
51
51
|
"@aws-sdk/util-body-length-node": "3.52.0",
|
|
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.
|
|
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
56
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
57
57
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
58
58
|
"@aws-sdk/xml-builder": "3.52.0",
|