@aws-sdk/client-s3-control 3.52.0 → 3.54.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 +28 -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/S3ControlClient.d.ts +2 -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 +98 -37
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/S3ControlClient.d.ts +2 -2
- 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/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +32 -32
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,34 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-s3-control
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [3.53.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.0...v3.53.1) (2022-02-25)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-s3-control
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
28
|
+
* **clients:** update clients as of 2022/02/24 ([#3361](https://github.com/aws/aws-sdk-js-v3/issues/3361)) ([ec3cc1e](https://github.com/aws/aws-sdk-js-v3/commit/ec3cc1eacd4010797a3a9eec2b0cc1a55e531ea9))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
6
34
|
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
7
35
|
|
|
8
36
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.S3ControlServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./S3Control"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./S3ControlClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var S3ControlServiceException_1 = require("./models/S3ControlServiceException");
|
|
11
|
+
Object.defineProperty(exports, "S3ControlServiceException", { enumerable: true, get: function () { return S3ControlServiceException_1.S3ControlServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.S3ControlServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class S3ControlServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, S3ControlServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.S3ControlServiceException = S3ControlServiceException;
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.UpdateJobStatusResult = exports.UpdateJobStatusRequest = exports.RequestedJobStatus = exports.UpdateJobPriorityResult = exports.UpdateJobPriorityRequest = exports.PutStorageLensConfigurationTaggingResult = exports.PutStorageLensConfigurationTaggingRequest = exports.PutStorageLensConfigurationRequest = exports.PutPublicAccessBlockRequest = exports.PutMultiRegionAccessPointPolicyResult = void 0;
|
|
3
|
+
exports.S3ManifestOutputLocation = exports.GeneratedManifestFormat = exports.GeneratedManifestEncryption = exports.SSES3Encryption = exports.SSEKMSEncryption = exports.JobManifestGeneratorFilter = exports.ReplicationStatus = exports.JobManifest = exports.JobManifestSpec = exports.JobManifestFormat = exports.JobManifestFieldName = exports.JobManifestLocation = exports.BadRequestException = exports.CreateBucketResult = exports.CreateBucketRequest = exports.CreateBucketConfiguration = exports.BucketAlreadyOwnedByYou = exports.BucketAlreadyExists = exports.CreateAccessPointForObjectLambdaResult = exports.CreateAccessPointForObjectLambdaRequest = exports.ObjectLambdaConfiguration = exports.ObjectLambdaTransformationConfiguration = exports.ObjectLambdaContentTransformation = exports.ObjectLambdaTransformationConfigurationAction = exports.ObjectLambdaAllowedFeature = exports.CreateAccessPointResult = exports.CreateAccessPointRequest = exports.AwsLambdaTransformation = exports.AsyncOperation = exports.AsyncResponseDetails = exports.MultiRegionAccessPointsAsyncResponse = exports.MultiRegionAccessPointRegionalResponse = exports.AsyncRequestParameters = exports.PutMultiRegionAccessPointPolicyInput = exports.DeleteMultiRegionAccessPointInput = exports.CreateMultiRegionAccessPointInput = exports.Region = exports.PublicAccessBlockConfiguration = exports.AsyncOperationName = exports.AsyncErrorDetails = exports.AccountLevel = exports.BucketLevel = exports.PrefixLevel = exports.PrefixLevelStorageMetrics = exports.SelectionCriteria = exports.ActivityMetrics = exports.AccessPoint = exports.VpcConfiguration = exports.NetworkOrigin = exports.AbortIncompleteMultipartUpload = void 0;
|
|
4
|
+
exports.DeleteBucketTaggingRequest = exports.DeleteBucketPolicyRequest = exports.DeleteBucketLifecycleConfigurationRequest = exports.DeleteBucketRequest = exports.DeleteAccessPointPolicyForObjectLambdaRequest = exports.DeleteAccessPointPolicyRequest = exports.DeleteAccessPointForObjectLambdaRequest = exports.DeleteAccessPointRequest = exports.CreateMultiRegionAccessPointResult = exports.CreateMultiRegionAccessPointRequest = exports.TooManyRequestsException = exports.InternalServiceException = exports.IdempotencyException = exports.CreateJobResult = exports.CreateJobRequest = exports.JobReport = exports.JobReportScope = exports.JobReportFormat = exports.JobOperation = exports.S3ReplicateObjectOperation = exports.S3SetObjectTaggingOperation = exports.S3SetObjectRetentionOperation = exports.S3Retention = exports.S3ObjectLockRetentionMode = exports.S3SetObjectLegalHoldOperation = exports.S3ObjectLockLegalHold = exports.S3CopyObjectOperation = exports.S3StorageClass = exports.S3ObjectLockMode = exports.S3ObjectLockLegalHoldStatus = exports.S3Tag = exports.S3ObjectMetadata = exports.S3SSEAlgorithm = exports.S3MetadataDirective = exports.S3ChecksumAlgorithm = exports.S3SetObjectAclOperation = exports.S3AccessControlPolicy = exports.S3CannedAccessControlList = exports.S3AccessControlList = exports.S3ObjectOwner = exports.S3Grant = exports.S3Permission = exports.S3Grantee = exports.S3GranteeTypeIdentifier = exports.S3InitiateRestoreObjectOperation = exports.S3GlacierJobTier = exports.S3DeleteObjectTaggingOperation = exports.LambdaInvokeOperation = exports.JobManifestGenerator = exports.S3JobManifestGenerator = void 0;
|
|
5
|
+
exports.GetJobTaggingRequest = exports.GetBucketTaggingResult = exports.GetBucketTaggingRequest = exports.GetBucketPolicyResult = exports.GetBucketPolicyRequest = exports.GetBucketLifecycleConfigurationResult = exports.LifecycleRule = exports.Transition = exports.NoncurrentVersionTransition = exports.NoncurrentVersionExpiration = exports.LifecycleRuleFilter = exports.LifecycleRuleAndOperator = exports.LifecycleExpiration = exports.GetBucketLifecycleConfigurationRequest = exports.GetBucketResult = exports.GetBucketRequest = exports.GetAccessPointPolicyStatusForObjectLambdaResult = exports.GetAccessPointPolicyStatusForObjectLambdaRequest = exports.GetAccessPointPolicyStatusResult = exports.PolicyStatus = exports.GetAccessPointPolicyStatusRequest = exports.GetAccessPointPolicyForObjectLambdaResult = exports.GetAccessPointPolicyForObjectLambdaRequest = exports.GetAccessPointPolicyResult = exports.GetAccessPointPolicyRequest = exports.GetAccessPointForObjectLambdaResult = exports.GetAccessPointForObjectLambdaRequest = exports.GetAccessPointConfigurationForObjectLambdaResult = exports.GetAccessPointConfigurationForObjectLambdaRequest = exports.GetAccessPointResult = exports.GetAccessPointRequest = exports.DescribeMultiRegionAccessPointOperationResult = exports.DescribeMultiRegionAccessPointOperationRequest = exports.DescribeJobResult = exports.JobDescriptor = exports.JobStatus = exports.JobProgressSummary = exports.JobTimers = exports.S3GeneratedManifestDescriptor = exports.JobFailure = exports.DescribeJobRequest = exports.DeleteStorageLensConfigurationTaggingResult = exports.DeleteStorageLensConfigurationTaggingRequest = exports.DeleteStorageLensConfigurationRequest = exports.DeletePublicAccessBlockRequest = exports.DeleteMultiRegionAccessPointResult = exports.DeleteMultiRegionAccessPointRequest = exports.NotFoundException = exports.DeleteJobTaggingResult = exports.DeleteJobTaggingRequest = void 0;
|
|
6
|
+
exports.ListStorageLensConfigurationsResult = exports.ListStorageLensConfigurationEntry = exports.ListStorageLensConfigurationsRequest = exports.ListRegionalBucketsResult = exports.RegionalBucket = exports.ListRegionalBucketsRequest = exports.ListMultiRegionAccessPointsResult = exports.ListMultiRegionAccessPointsRequest = exports.ListJobsResult = exports.JobListDescriptor = exports.OperationName = exports.ListJobsRequest = exports.InvalidRequestException = exports.InvalidNextTokenException = exports.ListAccessPointsForObjectLambdaResult = exports.ObjectLambdaAccessPoint = exports.ListAccessPointsForObjectLambdaRequest = exports.ListAccessPointsResult = exports.ListAccessPointsRequest = exports.GetStorageLensConfigurationTaggingResult = exports.StorageLensTag = exports.GetStorageLensConfigurationTaggingRequest = exports.GetStorageLensConfigurationResult = exports.StorageLensConfiguration = exports.Include = exports._Exclude = exports.StorageLensDataExport = exports.S3BucketDestination = exports.StorageLensDataExportEncryption = exports.SSES3 = exports.SSEKMS = exports.CloudWatchMetrics = exports.StorageLensAwsOrg = exports.GetStorageLensConfigurationRequest = exports.NoSuchPublicAccessBlockConfiguration = exports.GetPublicAccessBlockRequest = exports.GetPublicAccessBlockOutput = exports.GetMultiRegionAccessPointPolicyStatusResult = exports.GetMultiRegionAccessPointPolicyStatusRequest = exports.GetMultiRegionAccessPointPolicyResult = exports.MultiRegionAccessPointPolicyDocument = exports.ProposedMultiRegionAccessPointPolicy = exports.EstablishedMultiRegionAccessPointPolicy = exports.GetMultiRegionAccessPointPolicyRequest = exports.GetMultiRegionAccessPointResult = exports.MultiRegionAccessPointReport = exports.MultiRegionAccessPointStatus = exports.RegionReport = exports.GetMultiRegionAccessPointRequest = exports.GetJobTaggingResult = void 0;
|
|
7
|
+
exports.UpdateJobStatusResult = exports.UpdateJobStatusRequest = exports.RequestedJobStatus = exports.JobStatusException = exports.UpdateJobPriorityResult = exports.UpdateJobPriorityRequest = exports.PutStorageLensConfigurationTaggingResult = exports.PutStorageLensConfigurationTaggingRequest = exports.PutStorageLensConfigurationRequest = exports.PutPublicAccessBlockRequest = exports.PutMultiRegionAccessPointPolicyResult = exports.PutMultiRegionAccessPointPolicyRequest = exports.TooManyTagsException = exports.PutJobTaggingResult = exports.PutJobTaggingRequest = exports.PutBucketTaggingRequest = exports.Tagging = exports.PutBucketPolicyRequest = exports.PutBucketLifecycleConfigurationRequest = exports.LifecycleConfiguration = exports.PutAccessPointPolicyForObjectLambdaRequest = exports.PutAccessPointPolicyRequest = exports.PutAccessPointConfigurationForObjectLambdaRequest = void 0;
|
|
8
|
+
const S3ControlServiceException_1 = require("./S3ControlServiceException");
|
|
8
9
|
var AbortIncompleteMultipartUpload;
|
|
9
10
|
(function (AbortIncompleteMultipartUpload) {
|
|
10
11
|
AbortIncompleteMultipartUpload.filterSensitiveLog = (obj) => ({
|
|
@@ -208,6 +209,32 @@ var CreateAccessPointForObjectLambdaResult;
|
|
|
208
209
|
...obj,
|
|
209
210
|
});
|
|
210
211
|
})(CreateAccessPointForObjectLambdaResult = exports.CreateAccessPointForObjectLambdaResult || (exports.CreateAccessPointForObjectLambdaResult = {}));
|
|
212
|
+
class BucketAlreadyExists extends S3ControlServiceException_1.S3ControlServiceException {
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "BucketAlreadyExists",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
this.name = "BucketAlreadyExists";
|
|
220
|
+
this.$fault = "client";
|
|
221
|
+
Object.setPrototypeOf(this, BucketAlreadyExists.prototype);
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
exports.BucketAlreadyExists = BucketAlreadyExists;
|
|
225
|
+
class BucketAlreadyOwnedByYou extends S3ControlServiceException_1.S3ControlServiceException {
|
|
226
|
+
constructor(opts) {
|
|
227
|
+
super({
|
|
228
|
+
name: "BucketAlreadyOwnedByYou",
|
|
229
|
+
$fault: "client",
|
|
230
|
+
...opts,
|
|
231
|
+
});
|
|
232
|
+
this.name = "BucketAlreadyOwnedByYou";
|
|
233
|
+
this.$fault = "client";
|
|
234
|
+
Object.setPrototypeOf(this, BucketAlreadyOwnedByYou.prototype);
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
exports.BucketAlreadyOwnedByYou = BucketAlreadyOwnedByYou;
|
|
211
238
|
var CreateBucketConfiguration;
|
|
212
239
|
(function (CreateBucketConfiguration) {
|
|
213
240
|
CreateBucketConfiguration.filterSensitiveLog = (obj) => ({
|
|
@@ -226,6 +253,20 @@ var CreateBucketResult;
|
|
|
226
253
|
...obj,
|
|
227
254
|
});
|
|
228
255
|
})(CreateBucketResult = exports.CreateBucketResult || (exports.CreateBucketResult = {}));
|
|
256
|
+
class BadRequestException extends S3ControlServiceException_1.S3ControlServiceException {
|
|
257
|
+
constructor(opts) {
|
|
258
|
+
super({
|
|
259
|
+
name: "BadRequestException",
|
|
260
|
+
$fault: "client",
|
|
261
|
+
...opts,
|
|
262
|
+
});
|
|
263
|
+
this.name = "BadRequestException";
|
|
264
|
+
this.$fault = "client";
|
|
265
|
+
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
266
|
+
this.Message = opts.Message;
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
exports.BadRequestException = BadRequestException;
|
|
229
270
|
var JobManifestLocation;
|
|
230
271
|
(function (JobManifestLocation) {
|
|
231
272
|
JobManifestLocation.filterSensitiveLog = (obj) => ({
|
|
@@ -400,6 +441,13 @@ var S3SetObjectAclOperation;
|
|
|
400
441
|
...obj,
|
|
401
442
|
});
|
|
402
443
|
})(S3SetObjectAclOperation = exports.S3SetObjectAclOperation || (exports.S3SetObjectAclOperation = {}));
|
|
444
|
+
var S3ChecksumAlgorithm;
|
|
445
|
+
(function (S3ChecksumAlgorithm) {
|
|
446
|
+
S3ChecksumAlgorithm["CRC32"] = "CRC32";
|
|
447
|
+
S3ChecksumAlgorithm["CRC32C"] = "CRC32C";
|
|
448
|
+
S3ChecksumAlgorithm["SHA1"] = "SHA1";
|
|
449
|
+
S3ChecksumAlgorithm["SHA256"] = "SHA256";
|
|
450
|
+
})(S3ChecksumAlgorithm = exports.S3ChecksumAlgorithm || (exports.S3ChecksumAlgorithm = {}));
|
|
403
451
|
var S3MetadataDirective;
|
|
404
452
|
(function (S3MetadataDirective) {
|
|
405
453
|
S3MetadataDirective["COPY"] = "COPY";
|
|
@@ -523,6 +571,48 @@ var CreateJobResult;
|
|
|
523
571
|
...obj,
|
|
524
572
|
});
|
|
525
573
|
})(CreateJobResult = exports.CreateJobResult || (exports.CreateJobResult = {}));
|
|
574
|
+
class IdempotencyException extends S3ControlServiceException_1.S3ControlServiceException {
|
|
575
|
+
constructor(opts) {
|
|
576
|
+
super({
|
|
577
|
+
name: "IdempotencyException",
|
|
578
|
+
$fault: "client",
|
|
579
|
+
...opts,
|
|
580
|
+
});
|
|
581
|
+
this.name = "IdempotencyException";
|
|
582
|
+
this.$fault = "client";
|
|
583
|
+
Object.setPrototypeOf(this, IdempotencyException.prototype);
|
|
584
|
+
this.Message = opts.Message;
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
exports.IdempotencyException = IdempotencyException;
|
|
588
|
+
class InternalServiceException extends S3ControlServiceException_1.S3ControlServiceException {
|
|
589
|
+
constructor(opts) {
|
|
590
|
+
super({
|
|
591
|
+
name: "InternalServiceException",
|
|
592
|
+
$fault: "server",
|
|
593
|
+
...opts,
|
|
594
|
+
});
|
|
595
|
+
this.name = "InternalServiceException";
|
|
596
|
+
this.$fault = "server";
|
|
597
|
+
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
598
|
+
this.Message = opts.Message;
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
exports.InternalServiceException = InternalServiceException;
|
|
602
|
+
class TooManyRequestsException extends S3ControlServiceException_1.S3ControlServiceException {
|
|
603
|
+
constructor(opts) {
|
|
604
|
+
super({
|
|
605
|
+
name: "TooManyRequestsException",
|
|
606
|
+
$fault: "client",
|
|
607
|
+
...opts,
|
|
608
|
+
});
|
|
609
|
+
this.name = "TooManyRequestsException";
|
|
610
|
+
this.$fault = "client";
|
|
611
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
612
|
+
this.Message = opts.Message;
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
526
616
|
var CreateMultiRegionAccessPointRequest;
|
|
527
617
|
(function (CreateMultiRegionAccessPointRequest) {
|
|
528
618
|
CreateMultiRegionAccessPointRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -595,6 +685,20 @@ var DeleteJobTaggingResult;
|
|
|
595
685
|
...obj,
|
|
596
686
|
});
|
|
597
687
|
})(DeleteJobTaggingResult = exports.DeleteJobTaggingResult || (exports.DeleteJobTaggingResult = {}));
|
|
688
|
+
class NotFoundException extends S3ControlServiceException_1.S3ControlServiceException {
|
|
689
|
+
constructor(opts) {
|
|
690
|
+
super({
|
|
691
|
+
name: "NotFoundException",
|
|
692
|
+
$fault: "client",
|
|
693
|
+
...opts,
|
|
694
|
+
});
|
|
695
|
+
this.name = "NotFoundException";
|
|
696
|
+
this.$fault = "client";
|
|
697
|
+
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
698
|
+
this.Message = opts.Message;
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
exports.NotFoundException = NotFoundException;
|
|
598
702
|
var DeleteMultiRegionAccessPointRequest;
|
|
599
703
|
(function (DeleteMultiRegionAccessPointRequest) {
|
|
600
704
|
DeleteMultiRegionAccessPointRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -983,6 +1087,20 @@ var GetPublicAccessBlockRequest;
|
|
|
983
1087
|
...obj,
|
|
984
1088
|
});
|
|
985
1089
|
})(GetPublicAccessBlockRequest = exports.GetPublicAccessBlockRequest || (exports.GetPublicAccessBlockRequest = {}));
|
|
1090
|
+
class NoSuchPublicAccessBlockConfiguration extends S3ControlServiceException_1.S3ControlServiceException {
|
|
1091
|
+
constructor(opts) {
|
|
1092
|
+
super({
|
|
1093
|
+
name: "NoSuchPublicAccessBlockConfiguration",
|
|
1094
|
+
$fault: "client",
|
|
1095
|
+
...opts,
|
|
1096
|
+
});
|
|
1097
|
+
this.name = "NoSuchPublicAccessBlockConfiguration";
|
|
1098
|
+
this.$fault = "client";
|
|
1099
|
+
Object.setPrototypeOf(this, NoSuchPublicAccessBlockConfiguration.prototype);
|
|
1100
|
+
this.Message = opts.Message;
|
|
1101
|
+
}
|
|
1102
|
+
}
|
|
1103
|
+
exports.NoSuchPublicAccessBlockConfiguration = NoSuchPublicAccessBlockConfiguration;
|
|
986
1104
|
var GetStorageLensConfigurationRequest;
|
|
987
1105
|
(function (GetStorageLensConfigurationRequest) {
|
|
988
1106
|
GetStorageLensConfigurationRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -1103,6 +1221,34 @@ var ListAccessPointsForObjectLambdaResult;
|
|
|
1103
1221
|
...obj,
|
|
1104
1222
|
});
|
|
1105
1223
|
})(ListAccessPointsForObjectLambdaResult = exports.ListAccessPointsForObjectLambdaResult || (exports.ListAccessPointsForObjectLambdaResult = {}));
|
|
1224
|
+
class InvalidNextTokenException extends S3ControlServiceException_1.S3ControlServiceException {
|
|
1225
|
+
constructor(opts) {
|
|
1226
|
+
super({
|
|
1227
|
+
name: "InvalidNextTokenException",
|
|
1228
|
+
$fault: "client",
|
|
1229
|
+
...opts,
|
|
1230
|
+
});
|
|
1231
|
+
this.name = "InvalidNextTokenException";
|
|
1232
|
+
this.$fault = "client";
|
|
1233
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
1234
|
+
this.Message = opts.Message;
|
|
1235
|
+
}
|
|
1236
|
+
}
|
|
1237
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
1238
|
+
class InvalidRequestException extends S3ControlServiceException_1.S3ControlServiceException {
|
|
1239
|
+
constructor(opts) {
|
|
1240
|
+
super({
|
|
1241
|
+
name: "InvalidRequestException",
|
|
1242
|
+
$fault: "client",
|
|
1243
|
+
...opts,
|
|
1244
|
+
});
|
|
1245
|
+
this.name = "InvalidRequestException";
|
|
1246
|
+
this.$fault = "client";
|
|
1247
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
1248
|
+
this.Message = opts.Message;
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
1106
1252
|
var ListJobsRequest;
|
|
1107
1253
|
(function (ListJobsRequest) {
|
|
1108
1254
|
ListJobsRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -1242,6 +1388,20 @@ var PutJobTaggingResult;
|
|
|
1242
1388
|
...obj,
|
|
1243
1389
|
});
|
|
1244
1390
|
})(PutJobTaggingResult = exports.PutJobTaggingResult || (exports.PutJobTaggingResult = {}));
|
|
1391
|
+
class TooManyTagsException extends S3ControlServiceException_1.S3ControlServiceException {
|
|
1392
|
+
constructor(opts) {
|
|
1393
|
+
super({
|
|
1394
|
+
name: "TooManyTagsException",
|
|
1395
|
+
$fault: "client",
|
|
1396
|
+
...opts,
|
|
1397
|
+
});
|
|
1398
|
+
this.name = "TooManyTagsException";
|
|
1399
|
+
this.$fault = "client";
|
|
1400
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
1401
|
+
this.Message = opts.Message;
|
|
1402
|
+
}
|
|
1403
|
+
}
|
|
1404
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
1245
1405
|
var PutMultiRegionAccessPointPolicyRequest;
|
|
1246
1406
|
(function (PutMultiRegionAccessPointPolicyRequest) {
|
|
1247
1407
|
PutMultiRegionAccessPointPolicyRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -1290,6 +1450,20 @@ var UpdateJobPriorityResult;
|
|
|
1290
1450
|
...obj,
|
|
1291
1451
|
});
|
|
1292
1452
|
})(UpdateJobPriorityResult = exports.UpdateJobPriorityResult || (exports.UpdateJobPriorityResult = {}));
|
|
1453
|
+
class JobStatusException extends S3ControlServiceException_1.S3ControlServiceException {
|
|
1454
|
+
constructor(opts) {
|
|
1455
|
+
super({
|
|
1456
|
+
name: "JobStatusException",
|
|
1457
|
+
$fault: "client",
|
|
1458
|
+
...opts,
|
|
1459
|
+
});
|
|
1460
|
+
this.name = "JobStatusException";
|
|
1461
|
+
this.$fault = "client";
|
|
1462
|
+
Object.setPrototypeOf(this, JobStatusException.prototype);
|
|
1463
|
+
this.Message = opts.Message;
|
|
1464
|
+
}
|
|
1465
|
+
}
|
|
1466
|
+
exports.JobStatusException = JobStatusException;
|
|
1293
1467
|
var RequestedJobStatus;
|
|
1294
1468
|
(function (RequestedJobStatus) {
|
|
1295
1469
|
RequestedJobStatus["Cancelled"] = "Cancelled";
|