@aws-sdk/client-cloudfront 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 +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/CloudFrontServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +1673 -4
- package/dist-cjs/models/models_1.js +117 -4
- package/dist-cjs/protocols/Aws_restXml.js +1685 -5116
- package/dist-es/index.js +1 -0
- package/dist-es/models/CloudFrontServiceException.js +12 -0
- package/dist-es/models/models_0.js +1549 -1
- package/dist-es/models/models_1.js +106 -1
- package/dist-es/protocols/Aws_restXml.js +2718 -5611
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/CloudFrontServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +835 -358
- package/dist-types/models/models_1.d.ts +58 -25
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/CloudFrontServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +32 -19
- package/dist-types/ts3.4/models/models_1.d.ts +42 -25
- package/package.json +26 -26
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { __assign } from "tslib";
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
2
2
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { CloudFrontServiceException as __BaseException } from "./CloudFrontServiceException";
|
|
3
4
|
export var ResponseHeadersPolicyAccessControlAllowMethodsValues;
|
|
4
5
|
(function (ResponseHeadersPolicyAccessControlAllowMethodsValues) {
|
|
5
6
|
ResponseHeadersPolicyAccessControlAllowMethodsValues["ALL"] = "ALL";
|
|
@@ -11,6 +12,19 @@ export var ResponseHeadersPolicyAccessControlAllowMethodsValues;
|
|
|
11
12
|
ResponseHeadersPolicyAccessControlAllowMethodsValues["POST"] = "POST";
|
|
12
13
|
ResponseHeadersPolicyAccessControlAllowMethodsValues["PUT"] = "PUT";
|
|
13
14
|
})(ResponseHeadersPolicyAccessControlAllowMethodsValues || (ResponseHeadersPolicyAccessControlAllowMethodsValues = {}));
|
|
15
|
+
var AccessDenied = (function (_super) {
|
|
16
|
+
__extends(AccessDenied, _super);
|
|
17
|
+
function AccessDenied(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "AccessDenied", $fault: "client" }, opts)) || this;
|
|
19
|
+
_this.name = "AccessDenied";
|
|
20
|
+
_this.$fault = "client";
|
|
21
|
+
Object.setPrototypeOf(_this, AccessDenied.prototype);
|
|
22
|
+
_this.Message = opts.Message;
|
|
23
|
+
return _this;
|
|
24
|
+
}
|
|
25
|
+
return AccessDenied;
|
|
26
|
+
}(__BaseException));
|
|
27
|
+
export { AccessDenied };
|
|
14
28
|
export var KeyPairIds;
|
|
15
29
|
(function (KeyPairIds) {
|
|
16
30
|
KeyPairIds.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -51,6 +65,71 @@ export var AssociateAliasRequest;
|
|
|
51
65
|
(function (AssociateAliasRequest) {
|
|
52
66
|
AssociateAliasRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
53
67
|
})(AssociateAliasRequest || (AssociateAliasRequest = {}));
|
|
68
|
+
var IllegalUpdate = (function (_super) {
|
|
69
|
+
__extends(IllegalUpdate, _super);
|
|
70
|
+
function IllegalUpdate(opts) {
|
|
71
|
+
var _this = _super.call(this, __assign({ name: "IllegalUpdate", $fault: "client" }, opts)) || this;
|
|
72
|
+
_this.name = "IllegalUpdate";
|
|
73
|
+
_this.$fault = "client";
|
|
74
|
+
Object.setPrototypeOf(_this, IllegalUpdate.prototype);
|
|
75
|
+
_this.Message = opts.Message;
|
|
76
|
+
return _this;
|
|
77
|
+
}
|
|
78
|
+
return IllegalUpdate;
|
|
79
|
+
}(__BaseException));
|
|
80
|
+
export { IllegalUpdate };
|
|
81
|
+
var InvalidArgument = (function (_super) {
|
|
82
|
+
__extends(InvalidArgument, _super);
|
|
83
|
+
function InvalidArgument(opts) {
|
|
84
|
+
var _this = _super.call(this, __assign({ name: "InvalidArgument", $fault: "client" }, opts)) || this;
|
|
85
|
+
_this.name = "InvalidArgument";
|
|
86
|
+
_this.$fault = "client";
|
|
87
|
+
Object.setPrototypeOf(_this, InvalidArgument.prototype);
|
|
88
|
+
_this.Message = opts.Message;
|
|
89
|
+
return _this;
|
|
90
|
+
}
|
|
91
|
+
return InvalidArgument;
|
|
92
|
+
}(__BaseException));
|
|
93
|
+
export { InvalidArgument };
|
|
94
|
+
var NoSuchDistribution = (function (_super) {
|
|
95
|
+
__extends(NoSuchDistribution, _super);
|
|
96
|
+
function NoSuchDistribution(opts) {
|
|
97
|
+
var _this = _super.call(this, __assign({ name: "NoSuchDistribution", $fault: "client" }, opts)) || this;
|
|
98
|
+
_this.name = "NoSuchDistribution";
|
|
99
|
+
_this.$fault = "client";
|
|
100
|
+
Object.setPrototypeOf(_this, NoSuchDistribution.prototype);
|
|
101
|
+
_this.Message = opts.Message;
|
|
102
|
+
return _this;
|
|
103
|
+
}
|
|
104
|
+
return NoSuchDistribution;
|
|
105
|
+
}(__BaseException));
|
|
106
|
+
export { NoSuchDistribution };
|
|
107
|
+
var TooManyDistributionCNAMEs = (function (_super) {
|
|
108
|
+
__extends(TooManyDistributionCNAMEs, _super);
|
|
109
|
+
function TooManyDistributionCNAMEs(opts) {
|
|
110
|
+
var _this = _super.call(this, __assign({ name: "TooManyDistributionCNAMEs", $fault: "client" }, opts)) || this;
|
|
111
|
+
_this.name = "TooManyDistributionCNAMEs";
|
|
112
|
+
_this.$fault = "client";
|
|
113
|
+
Object.setPrototypeOf(_this, TooManyDistributionCNAMEs.prototype);
|
|
114
|
+
_this.Message = opts.Message;
|
|
115
|
+
return _this;
|
|
116
|
+
}
|
|
117
|
+
return TooManyDistributionCNAMEs;
|
|
118
|
+
}(__BaseException));
|
|
119
|
+
export { TooManyDistributionCNAMEs };
|
|
120
|
+
var BatchTooLarge = (function (_super) {
|
|
121
|
+
__extends(BatchTooLarge, _super);
|
|
122
|
+
function BatchTooLarge(opts) {
|
|
123
|
+
var _this = _super.call(this, __assign({ name: "BatchTooLarge", $fault: "client" }, opts)) || this;
|
|
124
|
+
_this.name = "BatchTooLarge";
|
|
125
|
+
_this.$fault = "client";
|
|
126
|
+
Object.setPrototypeOf(_this, BatchTooLarge.prototype);
|
|
127
|
+
_this.Message = opts.Message;
|
|
128
|
+
return _this;
|
|
129
|
+
}
|
|
130
|
+
return BatchTooLarge;
|
|
131
|
+
}(__BaseException));
|
|
132
|
+
export { BatchTooLarge };
|
|
54
133
|
export var CookieNames;
|
|
55
134
|
(function (CookieNames) {
|
|
56
135
|
CookieNames.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -131,6 +210,32 @@ export var CachePolicy;
|
|
|
131
210
|
(function (CachePolicy) {
|
|
132
211
|
CachePolicy.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
133
212
|
})(CachePolicy || (CachePolicy = {}));
|
|
213
|
+
var CachePolicyAlreadyExists = (function (_super) {
|
|
214
|
+
__extends(CachePolicyAlreadyExists, _super);
|
|
215
|
+
function CachePolicyAlreadyExists(opts) {
|
|
216
|
+
var _this = _super.call(this, __assign({ name: "CachePolicyAlreadyExists", $fault: "client" }, opts)) || this;
|
|
217
|
+
_this.name = "CachePolicyAlreadyExists";
|
|
218
|
+
_this.$fault = "client";
|
|
219
|
+
Object.setPrototypeOf(_this, CachePolicyAlreadyExists.prototype);
|
|
220
|
+
_this.Message = opts.Message;
|
|
221
|
+
return _this;
|
|
222
|
+
}
|
|
223
|
+
return CachePolicyAlreadyExists;
|
|
224
|
+
}(__BaseException));
|
|
225
|
+
export { CachePolicyAlreadyExists };
|
|
226
|
+
var CachePolicyInUse = (function (_super) {
|
|
227
|
+
__extends(CachePolicyInUse, _super);
|
|
228
|
+
function CachePolicyInUse(opts) {
|
|
229
|
+
var _this = _super.call(this, __assign({ name: "CachePolicyInUse", $fault: "client" }, opts)) || this;
|
|
230
|
+
_this.name = "CachePolicyInUse";
|
|
231
|
+
_this.$fault = "client";
|
|
232
|
+
Object.setPrototypeOf(_this, CachePolicyInUse.prototype);
|
|
233
|
+
_this.Message = opts.Message;
|
|
234
|
+
return _this;
|
|
235
|
+
}
|
|
236
|
+
return CachePolicyInUse;
|
|
237
|
+
}(__BaseException));
|
|
238
|
+
export { CachePolicyInUse };
|
|
134
239
|
export var CachePolicySummary;
|
|
135
240
|
(function (CachePolicySummary) {
|
|
136
241
|
CachePolicySummary.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -139,6 +244,19 @@ export var CachePolicyList;
|
|
|
139
244
|
(function (CachePolicyList) {
|
|
140
245
|
CachePolicyList.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
246
|
})(CachePolicyList || (CachePolicyList = {}));
|
|
247
|
+
var CannotChangeImmutablePublicKeyFields = (function (_super) {
|
|
248
|
+
__extends(CannotChangeImmutablePublicKeyFields, _super);
|
|
249
|
+
function CannotChangeImmutablePublicKeyFields(opts) {
|
|
250
|
+
var _this = _super.call(this, __assign({ name: "CannotChangeImmutablePublicKeyFields", $fault: "client" }, opts)) || this;
|
|
251
|
+
_this.name = "CannotChangeImmutablePublicKeyFields";
|
|
252
|
+
_this.$fault = "client";
|
|
253
|
+
Object.setPrototypeOf(_this, CannotChangeImmutablePublicKeyFields.prototype);
|
|
254
|
+
_this.Message = opts.Message;
|
|
255
|
+
return _this;
|
|
256
|
+
}
|
|
257
|
+
return CannotChangeImmutablePublicKeyFields;
|
|
258
|
+
}(__BaseException));
|
|
259
|
+
export { CannotChangeImmutablePublicKeyFields };
|
|
142
260
|
export var CreateCachePolicyRequest;
|
|
143
261
|
(function (CreateCachePolicyRequest) {
|
|
144
262
|
CreateCachePolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -147,6 +265,84 @@ export var CreateCachePolicyResult;
|
|
|
147
265
|
(function (CreateCachePolicyResult) {
|
|
148
266
|
CreateCachePolicyResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
267
|
})(CreateCachePolicyResult || (CreateCachePolicyResult = {}));
|
|
268
|
+
var InconsistentQuantities = (function (_super) {
|
|
269
|
+
__extends(InconsistentQuantities, _super);
|
|
270
|
+
function InconsistentQuantities(opts) {
|
|
271
|
+
var _this = _super.call(this, __assign({ name: "InconsistentQuantities", $fault: "client" }, opts)) || this;
|
|
272
|
+
_this.name = "InconsistentQuantities";
|
|
273
|
+
_this.$fault = "client";
|
|
274
|
+
Object.setPrototypeOf(_this, InconsistentQuantities.prototype);
|
|
275
|
+
_this.Message = opts.Message;
|
|
276
|
+
return _this;
|
|
277
|
+
}
|
|
278
|
+
return InconsistentQuantities;
|
|
279
|
+
}(__BaseException));
|
|
280
|
+
export { InconsistentQuantities };
|
|
281
|
+
var TooManyCachePolicies = (function (_super) {
|
|
282
|
+
__extends(TooManyCachePolicies, _super);
|
|
283
|
+
function TooManyCachePolicies(opts) {
|
|
284
|
+
var _this = _super.call(this, __assign({ name: "TooManyCachePolicies", $fault: "client" }, opts)) || this;
|
|
285
|
+
_this.name = "TooManyCachePolicies";
|
|
286
|
+
_this.$fault = "client";
|
|
287
|
+
Object.setPrototypeOf(_this, TooManyCachePolicies.prototype);
|
|
288
|
+
_this.Message = opts.Message;
|
|
289
|
+
return _this;
|
|
290
|
+
}
|
|
291
|
+
return TooManyCachePolicies;
|
|
292
|
+
}(__BaseException));
|
|
293
|
+
export { TooManyCachePolicies };
|
|
294
|
+
var TooManyCookiesInCachePolicy = (function (_super) {
|
|
295
|
+
__extends(TooManyCookiesInCachePolicy, _super);
|
|
296
|
+
function TooManyCookiesInCachePolicy(opts) {
|
|
297
|
+
var _this = _super.call(this, __assign({ name: "TooManyCookiesInCachePolicy", $fault: "client" }, opts)) || this;
|
|
298
|
+
_this.name = "TooManyCookiesInCachePolicy";
|
|
299
|
+
_this.$fault = "client";
|
|
300
|
+
Object.setPrototypeOf(_this, TooManyCookiesInCachePolicy.prototype);
|
|
301
|
+
_this.Message = opts.Message;
|
|
302
|
+
return _this;
|
|
303
|
+
}
|
|
304
|
+
return TooManyCookiesInCachePolicy;
|
|
305
|
+
}(__BaseException));
|
|
306
|
+
export { TooManyCookiesInCachePolicy };
|
|
307
|
+
var TooManyHeadersInCachePolicy = (function (_super) {
|
|
308
|
+
__extends(TooManyHeadersInCachePolicy, _super);
|
|
309
|
+
function TooManyHeadersInCachePolicy(opts) {
|
|
310
|
+
var _this = _super.call(this, __assign({ name: "TooManyHeadersInCachePolicy", $fault: "client" }, opts)) || this;
|
|
311
|
+
_this.name = "TooManyHeadersInCachePolicy";
|
|
312
|
+
_this.$fault = "client";
|
|
313
|
+
Object.setPrototypeOf(_this, TooManyHeadersInCachePolicy.prototype);
|
|
314
|
+
_this.Message = opts.Message;
|
|
315
|
+
return _this;
|
|
316
|
+
}
|
|
317
|
+
return TooManyHeadersInCachePolicy;
|
|
318
|
+
}(__BaseException));
|
|
319
|
+
export { TooManyHeadersInCachePolicy };
|
|
320
|
+
var TooManyQueryStringsInCachePolicy = (function (_super) {
|
|
321
|
+
__extends(TooManyQueryStringsInCachePolicy, _super);
|
|
322
|
+
function TooManyQueryStringsInCachePolicy(opts) {
|
|
323
|
+
var _this = _super.call(this, __assign({ name: "TooManyQueryStringsInCachePolicy", $fault: "client" }, opts)) || this;
|
|
324
|
+
_this.name = "TooManyQueryStringsInCachePolicy";
|
|
325
|
+
_this.$fault = "client";
|
|
326
|
+
Object.setPrototypeOf(_this, TooManyQueryStringsInCachePolicy.prototype);
|
|
327
|
+
_this.Message = opts.Message;
|
|
328
|
+
return _this;
|
|
329
|
+
}
|
|
330
|
+
return TooManyQueryStringsInCachePolicy;
|
|
331
|
+
}(__BaseException));
|
|
332
|
+
export { TooManyQueryStringsInCachePolicy };
|
|
333
|
+
var CloudFrontOriginAccessIdentityAlreadyExists = (function (_super) {
|
|
334
|
+
__extends(CloudFrontOriginAccessIdentityAlreadyExists, _super);
|
|
335
|
+
function CloudFrontOriginAccessIdentityAlreadyExists(opts) {
|
|
336
|
+
var _this = _super.call(this, __assign({ name: "CloudFrontOriginAccessIdentityAlreadyExists", $fault: "client" }, opts)) || this;
|
|
337
|
+
_this.name = "CloudFrontOriginAccessIdentityAlreadyExists";
|
|
338
|
+
_this.$fault = "client";
|
|
339
|
+
Object.setPrototypeOf(_this, CloudFrontOriginAccessIdentityAlreadyExists.prototype);
|
|
340
|
+
_this.Message = opts.Message;
|
|
341
|
+
return _this;
|
|
342
|
+
}
|
|
343
|
+
return CloudFrontOriginAccessIdentityAlreadyExists;
|
|
344
|
+
}(__BaseException));
|
|
345
|
+
export { CloudFrontOriginAccessIdentityAlreadyExists };
|
|
150
346
|
export var CloudFrontOriginAccessIdentityConfig;
|
|
151
347
|
(function (CloudFrontOriginAccessIdentityConfig) {
|
|
152
348
|
CloudFrontOriginAccessIdentityConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -163,6 +359,45 @@ export var CreateCloudFrontOriginAccessIdentityResult;
|
|
|
163
359
|
(function (CreateCloudFrontOriginAccessIdentityResult) {
|
|
164
360
|
CreateCloudFrontOriginAccessIdentityResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
361
|
})(CreateCloudFrontOriginAccessIdentityResult || (CreateCloudFrontOriginAccessIdentityResult = {}));
|
|
362
|
+
var MissingBody = (function (_super) {
|
|
363
|
+
__extends(MissingBody, _super);
|
|
364
|
+
function MissingBody(opts) {
|
|
365
|
+
var _this = _super.call(this, __assign({ name: "MissingBody", $fault: "client" }, opts)) || this;
|
|
366
|
+
_this.name = "MissingBody";
|
|
367
|
+
_this.$fault = "client";
|
|
368
|
+
Object.setPrototypeOf(_this, MissingBody.prototype);
|
|
369
|
+
_this.Message = opts.Message;
|
|
370
|
+
return _this;
|
|
371
|
+
}
|
|
372
|
+
return MissingBody;
|
|
373
|
+
}(__BaseException));
|
|
374
|
+
export { MissingBody };
|
|
375
|
+
var TooManyCloudFrontOriginAccessIdentities = (function (_super) {
|
|
376
|
+
__extends(TooManyCloudFrontOriginAccessIdentities, _super);
|
|
377
|
+
function TooManyCloudFrontOriginAccessIdentities(opts) {
|
|
378
|
+
var _this = _super.call(this, __assign({ name: "TooManyCloudFrontOriginAccessIdentities", $fault: "client" }, opts)) || this;
|
|
379
|
+
_this.name = "TooManyCloudFrontOriginAccessIdentities";
|
|
380
|
+
_this.$fault = "client";
|
|
381
|
+
Object.setPrototypeOf(_this, TooManyCloudFrontOriginAccessIdentities.prototype);
|
|
382
|
+
_this.Message = opts.Message;
|
|
383
|
+
return _this;
|
|
384
|
+
}
|
|
385
|
+
return TooManyCloudFrontOriginAccessIdentities;
|
|
386
|
+
}(__BaseException));
|
|
387
|
+
export { TooManyCloudFrontOriginAccessIdentities };
|
|
388
|
+
var CNAMEAlreadyExists = (function (_super) {
|
|
389
|
+
__extends(CNAMEAlreadyExists, _super);
|
|
390
|
+
function CNAMEAlreadyExists(opts) {
|
|
391
|
+
var _this = _super.call(this, __assign({ name: "CNAMEAlreadyExists", $fault: "client" }, opts)) || this;
|
|
392
|
+
_this.name = "CNAMEAlreadyExists";
|
|
393
|
+
_this.$fault = "client";
|
|
394
|
+
Object.setPrototypeOf(_this, CNAMEAlreadyExists.prototype);
|
|
395
|
+
_this.Message = opts.Message;
|
|
396
|
+
return _this;
|
|
397
|
+
}
|
|
398
|
+
return CNAMEAlreadyExists;
|
|
399
|
+
}(__BaseException));
|
|
400
|
+
export { CNAMEAlreadyExists };
|
|
166
401
|
export var CustomErrorResponse;
|
|
167
402
|
(function (CustomErrorResponse) {
|
|
168
403
|
CustomErrorResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -267,6 +502,695 @@ export var CreateDistributionResult;
|
|
|
267
502
|
(function (CreateDistributionResult) {
|
|
268
503
|
CreateDistributionResult.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Distribution && { Distribution: Distribution.filterSensitiveLog(obj.Distribution) }))); };
|
|
269
504
|
})(CreateDistributionResult || (CreateDistributionResult = {}));
|
|
505
|
+
var DistributionAlreadyExists = (function (_super) {
|
|
506
|
+
__extends(DistributionAlreadyExists, _super);
|
|
507
|
+
function DistributionAlreadyExists(opts) {
|
|
508
|
+
var _this = _super.call(this, __assign({ name: "DistributionAlreadyExists", $fault: "client" }, opts)) || this;
|
|
509
|
+
_this.name = "DistributionAlreadyExists";
|
|
510
|
+
_this.$fault = "client";
|
|
511
|
+
Object.setPrototypeOf(_this, DistributionAlreadyExists.prototype);
|
|
512
|
+
_this.Message = opts.Message;
|
|
513
|
+
return _this;
|
|
514
|
+
}
|
|
515
|
+
return DistributionAlreadyExists;
|
|
516
|
+
}(__BaseException));
|
|
517
|
+
export { DistributionAlreadyExists };
|
|
518
|
+
var IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior = (function (_super) {
|
|
519
|
+
__extends(IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior, _super);
|
|
520
|
+
function IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior(opts) {
|
|
521
|
+
var _this = _super.call(this, __assign({ name: "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior", $fault: "client" }, opts)) || this;
|
|
522
|
+
_this.name = "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior";
|
|
523
|
+
_this.$fault = "client";
|
|
524
|
+
Object.setPrototypeOf(_this, IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior.prototype);
|
|
525
|
+
_this.Message = opts.Message;
|
|
526
|
+
return _this;
|
|
527
|
+
}
|
|
528
|
+
return IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior;
|
|
529
|
+
}(__BaseException));
|
|
530
|
+
export { IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior };
|
|
531
|
+
var InvalidDefaultRootObject = (function (_super) {
|
|
532
|
+
__extends(InvalidDefaultRootObject, _super);
|
|
533
|
+
function InvalidDefaultRootObject(opts) {
|
|
534
|
+
var _this = _super.call(this, __assign({ name: "InvalidDefaultRootObject", $fault: "client" }, opts)) || this;
|
|
535
|
+
_this.name = "InvalidDefaultRootObject";
|
|
536
|
+
_this.$fault = "client";
|
|
537
|
+
Object.setPrototypeOf(_this, InvalidDefaultRootObject.prototype);
|
|
538
|
+
_this.Message = opts.Message;
|
|
539
|
+
return _this;
|
|
540
|
+
}
|
|
541
|
+
return InvalidDefaultRootObject;
|
|
542
|
+
}(__BaseException));
|
|
543
|
+
export { InvalidDefaultRootObject };
|
|
544
|
+
var InvalidErrorCode = (function (_super) {
|
|
545
|
+
__extends(InvalidErrorCode, _super);
|
|
546
|
+
function InvalidErrorCode(opts) {
|
|
547
|
+
var _this = _super.call(this, __assign({ name: "InvalidErrorCode", $fault: "client" }, opts)) || this;
|
|
548
|
+
_this.name = "InvalidErrorCode";
|
|
549
|
+
_this.$fault = "client";
|
|
550
|
+
Object.setPrototypeOf(_this, InvalidErrorCode.prototype);
|
|
551
|
+
_this.Message = opts.Message;
|
|
552
|
+
return _this;
|
|
553
|
+
}
|
|
554
|
+
return InvalidErrorCode;
|
|
555
|
+
}(__BaseException));
|
|
556
|
+
export { InvalidErrorCode };
|
|
557
|
+
var InvalidForwardCookies = (function (_super) {
|
|
558
|
+
__extends(InvalidForwardCookies, _super);
|
|
559
|
+
function InvalidForwardCookies(opts) {
|
|
560
|
+
var _this = _super.call(this, __assign({ name: "InvalidForwardCookies", $fault: "client" }, opts)) || this;
|
|
561
|
+
_this.name = "InvalidForwardCookies";
|
|
562
|
+
_this.$fault = "client";
|
|
563
|
+
Object.setPrototypeOf(_this, InvalidForwardCookies.prototype);
|
|
564
|
+
_this.Message = opts.Message;
|
|
565
|
+
return _this;
|
|
566
|
+
}
|
|
567
|
+
return InvalidForwardCookies;
|
|
568
|
+
}(__BaseException));
|
|
569
|
+
export { InvalidForwardCookies };
|
|
570
|
+
var InvalidFunctionAssociation = (function (_super) {
|
|
571
|
+
__extends(InvalidFunctionAssociation, _super);
|
|
572
|
+
function InvalidFunctionAssociation(opts) {
|
|
573
|
+
var _this = _super.call(this, __assign({ name: "InvalidFunctionAssociation", $fault: "client" }, opts)) || this;
|
|
574
|
+
_this.name = "InvalidFunctionAssociation";
|
|
575
|
+
_this.$fault = "client";
|
|
576
|
+
Object.setPrototypeOf(_this, InvalidFunctionAssociation.prototype);
|
|
577
|
+
_this.Message = opts.Message;
|
|
578
|
+
return _this;
|
|
579
|
+
}
|
|
580
|
+
return InvalidFunctionAssociation;
|
|
581
|
+
}(__BaseException));
|
|
582
|
+
export { InvalidFunctionAssociation };
|
|
583
|
+
var InvalidGeoRestrictionParameter = (function (_super) {
|
|
584
|
+
__extends(InvalidGeoRestrictionParameter, _super);
|
|
585
|
+
function InvalidGeoRestrictionParameter(opts) {
|
|
586
|
+
var _this = _super.call(this, __assign({ name: "InvalidGeoRestrictionParameter", $fault: "client" }, opts)) || this;
|
|
587
|
+
_this.name = "InvalidGeoRestrictionParameter";
|
|
588
|
+
_this.$fault = "client";
|
|
589
|
+
Object.setPrototypeOf(_this, InvalidGeoRestrictionParameter.prototype);
|
|
590
|
+
_this.Message = opts.Message;
|
|
591
|
+
return _this;
|
|
592
|
+
}
|
|
593
|
+
return InvalidGeoRestrictionParameter;
|
|
594
|
+
}(__BaseException));
|
|
595
|
+
export { InvalidGeoRestrictionParameter };
|
|
596
|
+
var InvalidHeadersForS3Origin = (function (_super) {
|
|
597
|
+
__extends(InvalidHeadersForS3Origin, _super);
|
|
598
|
+
function InvalidHeadersForS3Origin(opts) {
|
|
599
|
+
var _this = _super.call(this, __assign({ name: "InvalidHeadersForS3Origin", $fault: "client" }, opts)) || this;
|
|
600
|
+
_this.name = "InvalidHeadersForS3Origin";
|
|
601
|
+
_this.$fault = "client";
|
|
602
|
+
Object.setPrototypeOf(_this, InvalidHeadersForS3Origin.prototype);
|
|
603
|
+
_this.Message = opts.Message;
|
|
604
|
+
return _this;
|
|
605
|
+
}
|
|
606
|
+
return InvalidHeadersForS3Origin;
|
|
607
|
+
}(__BaseException));
|
|
608
|
+
export { InvalidHeadersForS3Origin };
|
|
609
|
+
var InvalidLambdaFunctionAssociation = (function (_super) {
|
|
610
|
+
__extends(InvalidLambdaFunctionAssociation, _super);
|
|
611
|
+
function InvalidLambdaFunctionAssociation(opts) {
|
|
612
|
+
var _this = _super.call(this, __assign({ name: "InvalidLambdaFunctionAssociation", $fault: "client" }, opts)) || this;
|
|
613
|
+
_this.name = "InvalidLambdaFunctionAssociation";
|
|
614
|
+
_this.$fault = "client";
|
|
615
|
+
Object.setPrototypeOf(_this, InvalidLambdaFunctionAssociation.prototype);
|
|
616
|
+
_this.Message = opts.Message;
|
|
617
|
+
return _this;
|
|
618
|
+
}
|
|
619
|
+
return InvalidLambdaFunctionAssociation;
|
|
620
|
+
}(__BaseException));
|
|
621
|
+
export { InvalidLambdaFunctionAssociation };
|
|
622
|
+
var InvalidLocationCode = (function (_super) {
|
|
623
|
+
__extends(InvalidLocationCode, _super);
|
|
624
|
+
function InvalidLocationCode(opts) {
|
|
625
|
+
var _this = _super.call(this, __assign({ name: "InvalidLocationCode", $fault: "client" }, opts)) || this;
|
|
626
|
+
_this.name = "InvalidLocationCode";
|
|
627
|
+
_this.$fault = "client";
|
|
628
|
+
Object.setPrototypeOf(_this, InvalidLocationCode.prototype);
|
|
629
|
+
_this.Message = opts.Message;
|
|
630
|
+
return _this;
|
|
631
|
+
}
|
|
632
|
+
return InvalidLocationCode;
|
|
633
|
+
}(__BaseException));
|
|
634
|
+
export { InvalidLocationCode };
|
|
635
|
+
var InvalidMinimumProtocolVersion = (function (_super) {
|
|
636
|
+
__extends(InvalidMinimumProtocolVersion, _super);
|
|
637
|
+
function InvalidMinimumProtocolVersion(opts) {
|
|
638
|
+
var _this = _super.call(this, __assign({ name: "InvalidMinimumProtocolVersion", $fault: "client" }, opts)) || this;
|
|
639
|
+
_this.name = "InvalidMinimumProtocolVersion";
|
|
640
|
+
_this.$fault = "client";
|
|
641
|
+
Object.setPrototypeOf(_this, InvalidMinimumProtocolVersion.prototype);
|
|
642
|
+
_this.Message = opts.Message;
|
|
643
|
+
return _this;
|
|
644
|
+
}
|
|
645
|
+
return InvalidMinimumProtocolVersion;
|
|
646
|
+
}(__BaseException));
|
|
647
|
+
export { InvalidMinimumProtocolVersion };
|
|
648
|
+
var InvalidOrigin = (function (_super) {
|
|
649
|
+
__extends(InvalidOrigin, _super);
|
|
650
|
+
function InvalidOrigin(opts) {
|
|
651
|
+
var _this = _super.call(this, __assign({ name: "InvalidOrigin", $fault: "client" }, opts)) || this;
|
|
652
|
+
_this.name = "InvalidOrigin";
|
|
653
|
+
_this.$fault = "client";
|
|
654
|
+
Object.setPrototypeOf(_this, InvalidOrigin.prototype);
|
|
655
|
+
_this.Message = opts.Message;
|
|
656
|
+
return _this;
|
|
657
|
+
}
|
|
658
|
+
return InvalidOrigin;
|
|
659
|
+
}(__BaseException));
|
|
660
|
+
export { InvalidOrigin };
|
|
661
|
+
var InvalidOriginAccessIdentity = (function (_super) {
|
|
662
|
+
__extends(InvalidOriginAccessIdentity, _super);
|
|
663
|
+
function InvalidOriginAccessIdentity(opts) {
|
|
664
|
+
var _this = _super.call(this, __assign({ name: "InvalidOriginAccessIdentity", $fault: "client" }, opts)) || this;
|
|
665
|
+
_this.name = "InvalidOriginAccessIdentity";
|
|
666
|
+
_this.$fault = "client";
|
|
667
|
+
Object.setPrototypeOf(_this, InvalidOriginAccessIdentity.prototype);
|
|
668
|
+
_this.Message = opts.Message;
|
|
669
|
+
return _this;
|
|
670
|
+
}
|
|
671
|
+
return InvalidOriginAccessIdentity;
|
|
672
|
+
}(__BaseException));
|
|
673
|
+
export { InvalidOriginAccessIdentity };
|
|
674
|
+
var InvalidOriginKeepaliveTimeout = (function (_super) {
|
|
675
|
+
__extends(InvalidOriginKeepaliveTimeout, _super);
|
|
676
|
+
function InvalidOriginKeepaliveTimeout(opts) {
|
|
677
|
+
var _this = _super.call(this, __assign({ name: "InvalidOriginKeepaliveTimeout", $fault: "client" }, opts)) || this;
|
|
678
|
+
_this.name = "InvalidOriginKeepaliveTimeout";
|
|
679
|
+
_this.$fault = "client";
|
|
680
|
+
Object.setPrototypeOf(_this, InvalidOriginKeepaliveTimeout.prototype);
|
|
681
|
+
_this.Message = opts.Message;
|
|
682
|
+
return _this;
|
|
683
|
+
}
|
|
684
|
+
return InvalidOriginKeepaliveTimeout;
|
|
685
|
+
}(__BaseException));
|
|
686
|
+
export { InvalidOriginKeepaliveTimeout };
|
|
687
|
+
var InvalidOriginReadTimeout = (function (_super) {
|
|
688
|
+
__extends(InvalidOriginReadTimeout, _super);
|
|
689
|
+
function InvalidOriginReadTimeout(opts) {
|
|
690
|
+
var _this = _super.call(this, __assign({ name: "InvalidOriginReadTimeout", $fault: "client" }, opts)) || this;
|
|
691
|
+
_this.name = "InvalidOriginReadTimeout";
|
|
692
|
+
_this.$fault = "client";
|
|
693
|
+
Object.setPrototypeOf(_this, InvalidOriginReadTimeout.prototype);
|
|
694
|
+
_this.Message = opts.Message;
|
|
695
|
+
return _this;
|
|
696
|
+
}
|
|
697
|
+
return InvalidOriginReadTimeout;
|
|
698
|
+
}(__BaseException));
|
|
699
|
+
export { InvalidOriginReadTimeout };
|
|
700
|
+
var InvalidProtocolSettings = (function (_super) {
|
|
701
|
+
__extends(InvalidProtocolSettings, _super);
|
|
702
|
+
function InvalidProtocolSettings(opts) {
|
|
703
|
+
var _this = _super.call(this, __assign({ name: "InvalidProtocolSettings", $fault: "client" }, opts)) || this;
|
|
704
|
+
_this.name = "InvalidProtocolSettings";
|
|
705
|
+
_this.$fault = "client";
|
|
706
|
+
Object.setPrototypeOf(_this, InvalidProtocolSettings.prototype);
|
|
707
|
+
_this.Message = opts.Message;
|
|
708
|
+
return _this;
|
|
709
|
+
}
|
|
710
|
+
return InvalidProtocolSettings;
|
|
711
|
+
}(__BaseException));
|
|
712
|
+
export { InvalidProtocolSettings };
|
|
713
|
+
var InvalidQueryStringParameters = (function (_super) {
|
|
714
|
+
__extends(InvalidQueryStringParameters, _super);
|
|
715
|
+
function InvalidQueryStringParameters(opts) {
|
|
716
|
+
var _this = _super.call(this, __assign({ name: "InvalidQueryStringParameters", $fault: "client" }, opts)) || this;
|
|
717
|
+
_this.name = "InvalidQueryStringParameters";
|
|
718
|
+
_this.$fault = "client";
|
|
719
|
+
Object.setPrototypeOf(_this, InvalidQueryStringParameters.prototype);
|
|
720
|
+
_this.Message = opts.Message;
|
|
721
|
+
return _this;
|
|
722
|
+
}
|
|
723
|
+
return InvalidQueryStringParameters;
|
|
724
|
+
}(__BaseException));
|
|
725
|
+
export { InvalidQueryStringParameters };
|
|
726
|
+
var InvalidRelativePath = (function (_super) {
|
|
727
|
+
__extends(InvalidRelativePath, _super);
|
|
728
|
+
function InvalidRelativePath(opts) {
|
|
729
|
+
var _this = _super.call(this, __assign({ name: "InvalidRelativePath", $fault: "client" }, opts)) || this;
|
|
730
|
+
_this.name = "InvalidRelativePath";
|
|
731
|
+
_this.$fault = "client";
|
|
732
|
+
Object.setPrototypeOf(_this, InvalidRelativePath.prototype);
|
|
733
|
+
_this.Message = opts.Message;
|
|
734
|
+
return _this;
|
|
735
|
+
}
|
|
736
|
+
return InvalidRelativePath;
|
|
737
|
+
}(__BaseException));
|
|
738
|
+
export { InvalidRelativePath };
|
|
739
|
+
var InvalidRequiredProtocol = (function (_super) {
|
|
740
|
+
__extends(InvalidRequiredProtocol, _super);
|
|
741
|
+
function InvalidRequiredProtocol(opts) {
|
|
742
|
+
var _this = _super.call(this, __assign({ name: "InvalidRequiredProtocol", $fault: "client" }, opts)) || this;
|
|
743
|
+
_this.name = "InvalidRequiredProtocol";
|
|
744
|
+
_this.$fault = "client";
|
|
745
|
+
Object.setPrototypeOf(_this, InvalidRequiredProtocol.prototype);
|
|
746
|
+
_this.Message = opts.Message;
|
|
747
|
+
return _this;
|
|
748
|
+
}
|
|
749
|
+
return InvalidRequiredProtocol;
|
|
750
|
+
}(__BaseException));
|
|
751
|
+
export { InvalidRequiredProtocol };
|
|
752
|
+
var InvalidResponseCode = (function (_super) {
|
|
753
|
+
__extends(InvalidResponseCode, _super);
|
|
754
|
+
function InvalidResponseCode(opts) {
|
|
755
|
+
var _this = _super.call(this, __assign({ name: "InvalidResponseCode", $fault: "client" }, opts)) || this;
|
|
756
|
+
_this.name = "InvalidResponseCode";
|
|
757
|
+
_this.$fault = "client";
|
|
758
|
+
Object.setPrototypeOf(_this, InvalidResponseCode.prototype);
|
|
759
|
+
_this.Message = opts.Message;
|
|
760
|
+
return _this;
|
|
761
|
+
}
|
|
762
|
+
return InvalidResponseCode;
|
|
763
|
+
}(__BaseException));
|
|
764
|
+
export { InvalidResponseCode };
|
|
765
|
+
var InvalidTTLOrder = (function (_super) {
|
|
766
|
+
__extends(InvalidTTLOrder, _super);
|
|
767
|
+
function InvalidTTLOrder(opts) {
|
|
768
|
+
var _this = _super.call(this, __assign({ name: "InvalidTTLOrder", $fault: "client" }, opts)) || this;
|
|
769
|
+
_this.name = "InvalidTTLOrder";
|
|
770
|
+
_this.$fault = "client";
|
|
771
|
+
Object.setPrototypeOf(_this, InvalidTTLOrder.prototype);
|
|
772
|
+
_this.Message = opts.Message;
|
|
773
|
+
return _this;
|
|
774
|
+
}
|
|
775
|
+
return InvalidTTLOrder;
|
|
776
|
+
}(__BaseException));
|
|
777
|
+
export { InvalidTTLOrder };
|
|
778
|
+
var InvalidViewerCertificate = (function (_super) {
|
|
779
|
+
__extends(InvalidViewerCertificate, _super);
|
|
780
|
+
function InvalidViewerCertificate(opts) {
|
|
781
|
+
var _this = _super.call(this, __assign({ name: "InvalidViewerCertificate", $fault: "client" }, opts)) || this;
|
|
782
|
+
_this.name = "InvalidViewerCertificate";
|
|
783
|
+
_this.$fault = "client";
|
|
784
|
+
Object.setPrototypeOf(_this, InvalidViewerCertificate.prototype);
|
|
785
|
+
_this.Message = opts.Message;
|
|
786
|
+
return _this;
|
|
787
|
+
}
|
|
788
|
+
return InvalidViewerCertificate;
|
|
789
|
+
}(__BaseException));
|
|
790
|
+
export { InvalidViewerCertificate };
|
|
791
|
+
var InvalidWebACLId = (function (_super) {
|
|
792
|
+
__extends(InvalidWebACLId, _super);
|
|
793
|
+
function InvalidWebACLId(opts) {
|
|
794
|
+
var _this = _super.call(this, __assign({ name: "InvalidWebACLId", $fault: "client" }, opts)) || this;
|
|
795
|
+
_this.name = "InvalidWebACLId";
|
|
796
|
+
_this.$fault = "client";
|
|
797
|
+
Object.setPrototypeOf(_this, InvalidWebACLId.prototype);
|
|
798
|
+
_this.Message = opts.Message;
|
|
799
|
+
return _this;
|
|
800
|
+
}
|
|
801
|
+
return InvalidWebACLId;
|
|
802
|
+
}(__BaseException));
|
|
803
|
+
export { InvalidWebACLId };
|
|
804
|
+
var NoSuchCachePolicy = (function (_super) {
|
|
805
|
+
__extends(NoSuchCachePolicy, _super);
|
|
806
|
+
function NoSuchCachePolicy(opts) {
|
|
807
|
+
var _this = _super.call(this, __assign({ name: "NoSuchCachePolicy", $fault: "client" }, opts)) || this;
|
|
808
|
+
_this.name = "NoSuchCachePolicy";
|
|
809
|
+
_this.$fault = "client";
|
|
810
|
+
Object.setPrototypeOf(_this, NoSuchCachePolicy.prototype);
|
|
811
|
+
_this.Message = opts.Message;
|
|
812
|
+
return _this;
|
|
813
|
+
}
|
|
814
|
+
return NoSuchCachePolicy;
|
|
815
|
+
}(__BaseException));
|
|
816
|
+
export { NoSuchCachePolicy };
|
|
817
|
+
var NoSuchFieldLevelEncryptionConfig = (function (_super) {
|
|
818
|
+
__extends(NoSuchFieldLevelEncryptionConfig, _super);
|
|
819
|
+
function NoSuchFieldLevelEncryptionConfig(opts) {
|
|
820
|
+
var _this = _super.call(this, __assign({ name: "NoSuchFieldLevelEncryptionConfig", $fault: "client" }, opts)) || this;
|
|
821
|
+
_this.name = "NoSuchFieldLevelEncryptionConfig";
|
|
822
|
+
_this.$fault = "client";
|
|
823
|
+
Object.setPrototypeOf(_this, NoSuchFieldLevelEncryptionConfig.prototype);
|
|
824
|
+
_this.Message = opts.Message;
|
|
825
|
+
return _this;
|
|
826
|
+
}
|
|
827
|
+
return NoSuchFieldLevelEncryptionConfig;
|
|
828
|
+
}(__BaseException));
|
|
829
|
+
export { NoSuchFieldLevelEncryptionConfig };
|
|
830
|
+
var NoSuchOrigin = (function (_super) {
|
|
831
|
+
__extends(NoSuchOrigin, _super);
|
|
832
|
+
function NoSuchOrigin(opts) {
|
|
833
|
+
var _this = _super.call(this, __assign({ name: "NoSuchOrigin", $fault: "client" }, opts)) || this;
|
|
834
|
+
_this.name = "NoSuchOrigin";
|
|
835
|
+
_this.$fault = "client";
|
|
836
|
+
Object.setPrototypeOf(_this, NoSuchOrigin.prototype);
|
|
837
|
+
_this.Message = opts.Message;
|
|
838
|
+
return _this;
|
|
839
|
+
}
|
|
840
|
+
return NoSuchOrigin;
|
|
841
|
+
}(__BaseException));
|
|
842
|
+
export { NoSuchOrigin };
|
|
843
|
+
var NoSuchOriginRequestPolicy = (function (_super) {
|
|
844
|
+
__extends(NoSuchOriginRequestPolicy, _super);
|
|
845
|
+
function NoSuchOriginRequestPolicy(opts) {
|
|
846
|
+
var _this = _super.call(this, __assign({ name: "NoSuchOriginRequestPolicy", $fault: "client" }, opts)) || this;
|
|
847
|
+
_this.name = "NoSuchOriginRequestPolicy";
|
|
848
|
+
_this.$fault = "client";
|
|
849
|
+
Object.setPrototypeOf(_this, NoSuchOriginRequestPolicy.prototype);
|
|
850
|
+
_this.Message = opts.Message;
|
|
851
|
+
return _this;
|
|
852
|
+
}
|
|
853
|
+
return NoSuchOriginRequestPolicy;
|
|
854
|
+
}(__BaseException));
|
|
855
|
+
export { NoSuchOriginRequestPolicy };
|
|
856
|
+
var NoSuchRealtimeLogConfig = (function (_super) {
|
|
857
|
+
__extends(NoSuchRealtimeLogConfig, _super);
|
|
858
|
+
function NoSuchRealtimeLogConfig(opts) {
|
|
859
|
+
var _this = _super.call(this, __assign({ name: "NoSuchRealtimeLogConfig", $fault: "client" }, opts)) || this;
|
|
860
|
+
_this.name = "NoSuchRealtimeLogConfig";
|
|
861
|
+
_this.$fault = "client";
|
|
862
|
+
Object.setPrototypeOf(_this, NoSuchRealtimeLogConfig.prototype);
|
|
863
|
+
_this.Message = opts.Message;
|
|
864
|
+
return _this;
|
|
865
|
+
}
|
|
866
|
+
return NoSuchRealtimeLogConfig;
|
|
867
|
+
}(__BaseException));
|
|
868
|
+
export { NoSuchRealtimeLogConfig };
|
|
869
|
+
var NoSuchResponseHeadersPolicy = (function (_super) {
|
|
870
|
+
__extends(NoSuchResponseHeadersPolicy, _super);
|
|
871
|
+
function NoSuchResponseHeadersPolicy(opts) {
|
|
872
|
+
var _this = _super.call(this, __assign({ name: "NoSuchResponseHeadersPolicy", $fault: "client" }, opts)) || this;
|
|
873
|
+
_this.name = "NoSuchResponseHeadersPolicy";
|
|
874
|
+
_this.$fault = "client";
|
|
875
|
+
Object.setPrototypeOf(_this, NoSuchResponseHeadersPolicy.prototype);
|
|
876
|
+
_this.Message = opts.Message;
|
|
877
|
+
return _this;
|
|
878
|
+
}
|
|
879
|
+
return NoSuchResponseHeadersPolicy;
|
|
880
|
+
}(__BaseException));
|
|
881
|
+
export { NoSuchResponseHeadersPolicy };
|
|
882
|
+
var RealtimeLogConfigOwnerMismatch = (function (_super) {
|
|
883
|
+
__extends(RealtimeLogConfigOwnerMismatch, _super);
|
|
884
|
+
function RealtimeLogConfigOwnerMismatch(opts) {
|
|
885
|
+
var _this = _super.call(this, __assign({ name: "RealtimeLogConfigOwnerMismatch", $fault: "client" }, opts)) || this;
|
|
886
|
+
_this.name = "RealtimeLogConfigOwnerMismatch";
|
|
887
|
+
_this.$fault = "client";
|
|
888
|
+
Object.setPrototypeOf(_this, RealtimeLogConfigOwnerMismatch.prototype);
|
|
889
|
+
_this.Message = opts.Message;
|
|
890
|
+
return _this;
|
|
891
|
+
}
|
|
892
|
+
return RealtimeLogConfigOwnerMismatch;
|
|
893
|
+
}(__BaseException));
|
|
894
|
+
export { RealtimeLogConfigOwnerMismatch };
|
|
895
|
+
var TooManyCacheBehaviors = (function (_super) {
|
|
896
|
+
__extends(TooManyCacheBehaviors, _super);
|
|
897
|
+
function TooManyCacheBehaviors(opts) {
|
|
898
|
+
var _this = _super.call(this, __assign({ name: "TooManyCacheBehaviors", $fault: "client" }, opts)) || this;
|
|
899
|
+
_this.name = "TooManyCacheBehaviors";
|
|
900
|
+
_this.$fault = "client";
|
|
901
|
+
Object.setPrototypeOf(_this, TooManyCacheBehaviors.prototype);
|
|
902
|
+
_this.Message = opts.Message;
|
|
903
|
+
return _this;
|
|
904
|
+
}
|
|
905
|
+
return TooManyCacheBehaviors;
|
|
906
|
+
}(__BaseException));
|
|
907
|
+
export { TooManyCacheBehaviors };
|
|
908
|
+
var TooManyCertificates = (function (_super) {
|
|
909
|
+
__extends(TooManyCertificates, _super);
|
|
910
|
+
function TooManyCertificates(opts) {
|
|
911
|
+
var _this = _super.call(this, __assign({ name: "TooManyCertificates", $fault: "client" }, opts)) || this;
|
|
912
|
+
_this.name = "TooManyCertificates";
|
|
913
|
+
_this.$fault = "client";
|
|
914
|
+
Object.setPrototypeOf(_this, TooManyCertificates.prototype);
|
|
915
|
+
_this.Message = opts.Message;
|
|
916
|
+
return _this;
|
|
917
|
+
}
|
|
918
|
+
return TooManyCertificates;
|
|
919
|
+
}(__BaseException));
|
|
920
|
+
export { TooManyCertificates };
|
|
921
|
+
var TooManyCookieNamesInWhiteList = (function (_super) {
|
|
922
|
+
__extends(TooManyCookieNamesInWhiteList, _super);
|
|
923
|
+
function TooManyCookieNamesInWhiteList(opts) {
|
|
924
|
+
var _this = _super.call(this, __assign({ name: "TooManyCookieNamesInWhiteList", $fault: "client" }, opts)) || this;
|
|
925
|
+
_this.name = "TooManyCookieNamesInWhiteList";
|
|
926
|
+
_this.$fault = "client";
|
|
927
|
+
Object.setPrototypeOf(_this, TooManyCookieNamesInWhiteList.prototype);
|
|
928
|
+
_this.Message = opts.Message;
|
|
929
|
+
return _this;
|
|
930
|
+
}
|
|
931
|
+
return TooManyCookieNamesInWhiteList;
|
|
932
|
+
}(__BaseException));
|
|
933
|
+
export { TooManyCookieNamesInWhiteList };
|
|
934
|
+
var TooManyDistributions = (function (_super) {
|
|
935
|
+
__extends(TooManyDistributions, _super);
|
|
936
|
+
function TooManyDistributions(opts) {
|
|
937
|
+
var _this = _super.call(this, __assign({ name: "TooManyDistributions", $fault: "client" }, opts)) || this;
|
|
938
|
+
_this.name = "TooManyDistributions";
|
|
939
|
+
_this.$fault = "client";
|
|
940
|
+
Object.setPrototypeOf(_this, TooManyDistributions.prototype);
|
|
941
|
+
_this.Message = opts.Message;
|
|
942
|
+
return _this;
|
|
943
|
+
}
|
|
944
|
+
return TooManyDistributions;
|
|
945
|
+
}(__BaseException));
|
|
946
|
+
export { TooManyDistributions };
|
|
947
|
+
var TooManyDistributionsAssociatedToCachePolicy = (function (_super) {
|
|
948
|
+
__extends(TooManyDistributionsAssociatedToCachePolicy, _super);
|
|
949
|
+
function TooManyDistributionsAssociatedToCachePolicy(opts) {
|
|
950
|
+
var _this = _super.call(this, __assign({ name: "TooManyDistributionsAssociatedToCachePolicy", $fault: "client" }, opts)) || this;
|
|
951
|
+
_this.name = "TooManyDistributionsAssociatedToCachePolicy";
|
|
952
|
+
_this.$fault = "client";
|
|
953
|
+
Object.setPrototypeOf(_this, TooManyDistributionsAssociatedToCachePolicy.prototype);
|
|
954
|
+
_this.Message = opts.Message;
|
|
955
|
+
return _this;
|
|
956
|
+
}
|
|
957
|
+
return TooManyDistributionsAssociatedToCachePolicy;
|
|
958
|
+
}(__BaseException));
|
|
959
|
+
export { TooManyDistributionsAssociatedToCachePolicy };
|
|
960
|
+
var TooManyDistributionsAssociatedToFieldLevelEncryptionConfig = (function (_super) {
|
|
961
|
+
__extends(TooManyDistributionsAssociatedToFieldLevelEncryptionConfig, _super);
|
|
962
|
+
function TooManyDistributionsAssociatedToFieldLevelEncryptionConfig(opts) {
|
|
963
|
+
var _this = _super.call(this, __assign({ name: "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig", $fault: "client" }, opts)) || this;
|
|
964
|
+
_this.name = "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig";
|
|
965
|
+
_this.$fault = "client";
|
|
966
|
+
Object.setPrototypeOf(_this, TooManyDistributionsAssociatedToFieldLevelEncryptionConfig.prototype);
|
|
967
|
+
_this.Message = opts.Message;
|
|
968
|
+
return _this;
|
|
969
|
+
}
|
|
970
|
+
return TooManyDistributionsAssociatedToFieldLevelEncryptionConfig;
|
|
971
|
+
}(__BaseException));
|
|
972
|
+
export { TooManyDistributionsAssociatedToFieldLevelEncryptionConfig };
|
|
973
|
+
var TooManyDistributionsAssociatedToKeyGroup = (function (_super) {
|
|
974
|
+
__extends(TooManyDistributionsAssociatedToKeyGroup, _super);
|
|
975
|
+
function TooManyDistributionsAssociatedToKeyGroup(opts) {
|
|
976
|
+
var _this = _super.call(this, __assign({ name: "TooManyDistributionsAssociatedToKeyGroup", $fault: "client" }, opts)) || this;
|
|
977
|
+
_this.name = "TooManyDistributionsAssociatedToKeyGroup";
|
|
978
|
+
_this.$fault = "client";
|
|
979
|
+
Object.setPrototypeOf(_this, TooManyDistributionsAssociatedToKeyGroup.prototype);
|
|
980
|
+
_this.Message = opts.Message;
|
|
981
|
+
return _this;
|
|
982
|
+
}
|
|
983
|
+
return TooManyDistributionsAssociatedToKeyGroup;
|
|
984
|
+
}(__BaseException));
|
|
985
|
+
export { TooManyDistributionsAssociatedToKeyGroup };
|
|
986
|
+
var TooManyDistributionsAssociatedToOriginRequestPolicy = (function (_super) {
|
|
987
|
+
__extends(TooManyDistributionsAssociatedToOriginRequestPolicy, _super);
|
|
988
|
+
function TooManyDistributionsAssociatedToOriginRequestPolicy(opts) {
|
|
989
|
+
var _this = _super.call(this, __assign({ name: "TooManyDistributionsAssociatedToOriginRequestPolicy", $fault: "client" }, opts)) || this;
|
|
990
|
+
_this.name = "TooManyDistributionsAssociatedToOriginRequestPolicy";
|
|
991
|
+
_this.$fault = "client";
|
|
992
|
+
Object.setPrototypeOf(_this, TooManyDistributionsAssociatedToOriginRequestPolicy.prototype);
|
|
993
|
+
_this.Message = opts.Message;
|
|
994
|
+
return _this;
|
|
995
|
+
}
|
|
996
|
+
return TooManyDistributionsAssociatedToOriginRequestPolicy;
|
|
997
|
+
}(__BaseException));
|
|
998
|
+
export { TooManyDistributionsAssociatedToOriginRequestPolicy };
|
|
999
|
+
var TooManyDistributionsAssociatedToResponseHeadersPolicy = (function (_super) {
|
|
1000
|
+
__extends(TooManyDistributionsAssociatedToResponseHeadersPolicy, _super);
|
|
1001
|
+
function TooManyDistributionsAssociatedToResponseHeadersPolicy(opts) {
|
|
1002
|
+
var _this = _super.call(this, __assign({ name: "TooManyDistributionsAssociatedToResponseHeadersPolicy", $fault: "client" }, opts)) || this;
|
|
1003
|
+
_this.name = "TooManyDistributionsAssociatedToResponseHeadersPolicy";
|
|
1004
|
+
_this.$fault = "client";
|
|
1005
|
+
Object.setPrototypeOf(_this, TooManyDistributionsAssociatedToResponseHeadersPolicy.prototype);
|
|
1006
|
+
_this.Message = opts.Message;
|
|
1007
|
+
return _this;
|
|
1008
|
+
}
|
|
1009
|
+
return TooManyDistributionsAssociatedToResponseHeadersPolicy;
|
|
1010
|
+
}(__BaseException));
|
|
1011
|
+
export { TooManyDistributionsAssociatedToResponseHeadersPolicy };
|
|
1012
|
+
var TooManyDistributionsWithFunctionAssociations = (function (_super) {
|
|
1013
|
+
__extends(TooManyDistributionsWithFunctionAssociations, _super);
|
|
1014
|
+
function TooManyDistributionsWithFunctionAssociations(opts) {
|
|
1015
|
+
var _this = _super.call(this, __assign({ name: "TooManyDistributionsWithFunctionAssociations", $fault: "client" }, opts)) || this;
|
|
1016
|
+
_this.name = "TooManyDistributionsWithFunctionAssociations";
|
|
1017
|
+
_this.$fault = "client";
|
|
1018
|
+
Object.setPrototypeOf(_this, TooManyDistributionsWithFunctionAssociations.prototype);
|
|
1019
|
+
_this.Message = opts.Message;
|
|
1020
|
+
return _this;
|
|
1021
|
+
}
|
|
1022
|
+
return TooManyDistributionsWithFunctionAssociations;
|
|
1023
|
+
}(__BaseException));
|
|
1024
|
+
export { TooManyDistributionsWithFunctionAssociations };
|
|
1025
|
+
var TooManyDistributionsWithLambdaAssociations = (function (_super) {
|
|
1026
|
+
__extends(TooManyDistributionsWithLambdaAssociations, _super);
|
|
1027
|
+
function TooManyDistributionsWithLambdaAssociations(opts) {
|
|
1028
|
+
var _this = _super.call(this, __assign({ name: "TooManyDistributionsWithLambdaAssociations", $fault: "client" }, opts)) || this;
|
|
1029
|
+
_this.name = "TooManyDistributionsWithLambdaAssociations";
|
|
1030
|
+
_this.$fault = "client";
|
|
1031
|
+
Object.setPrototypeOf(_this, TooManyDistributionsWithLambdaAssociations.prototype);
|
|
1032
|
+
_this.Message = opts.Message;
|
|
1033
|
+
return _this;
|
|
1034
|
+
}
|
|
1035
|
+
return TooManyDistributionsWithLambdaAssociations;
|
|
1036
|
+
}(__BaseException));
|
|
1037
|
+
export { TooManyDistributionsWithLambdaAssociations };
|
|
1038
|
+
var TooManyDistributionsWithSingleFunctionARN = (function (_super) {
|
|
1039
|
+
__extends(TooManyDistributionsWithSingleFunctionARN, _super);
|
|
1040
|
+
function TooManyDistributionsWithSingleFunctionARN(opts) {
|
|
1041
|
+
var _this = _super.call(this, __assign({ name: "TooManyDistributionsWithSingleFunctionARN", $fault: "client" }, opts)) || this;
|
|
1042
|
+
_this.name = "TooManyDistributionsWithSingleFunctionARN";
|
|
1043
|
+
_this.$fault = "client";
|
|
1044
|
+
Object.setPrototypeOf(_this, TooManyDistributionsWithSingleFunctionARN.prototype);
|
|
1045
|
+
_this.Message = opts.Message;
|
|
1046
|
+
return _this;
|
|
1047
|
+
}
|
|
1048
|
+
return TooManyDistributionsWithSingleFunctionARN;
|
|
1049
|
+
}(__BaseException));
|
|
1050
|
+
export { TooManyDistributionsWithSingleFunctionARN };
|
|
1051
|
+
var TooManyFunctionAssociations = (function (_super) {
|
|
1052
|
+
__extends(TooManyFunctionAssociations, _super);
|
|
1053
|
+
function TooManyFunctionAssociations(opts) {
|
|
1054
|
+
var _this = _super.call(this, __assign({ name: "TooManyFunctionAssociations", $fault: "client" }, opts)) || this;
|
|
1055
|
+
_this.name = "TooManyFunctionAssociations";
|
|
1056
|
+
_this.$fault = "client";
|
|
1057
|
+
Object.setPrototypeOf(_this, TooManyFunctionAssociations.prototype);
|
|
1058
|
+
_this.Message = opts.Message;
|
|
1059
|
+
return _this;
|
|
1060
|
+
}
|
|
1061
|
+
return TooManyFunctionAssociations;
|
|
1062
|
+
}(__BaseException));
|
|
1063
|
+
export { TooManyFunctionAssociations };
|
|
1064
|
+
var TooManyHeadersInForwardedValues = (function (_super) {
|
|
1065
|
+
__extends(TooManyHeadersInForwardedValues, _super);
|
|
1066
|
+
function TooManyHeadersInForwardedValues(opts) {
|
|
1067
|
+
var _this = _super.call(this, __assign({ name: "TooManyHeadersInForwardedValues", $fault: "client" }, opts)) || this;
|
|
1068
|
+
_this.name = "TooManyHeadersInForwardedValues";
|
|
1069
|
+
_this.$fault = "client";
|
|
1070
|
+
Object.setPrototypeOf(_this, TooManyHeadersInForwardedValues.prototype);
|
|
1071
|
+
_this.Message = opts.Message;
|
|
1072
|
+
return _this;
|
|
1073
|
+
}
|
|
1074
|
+
return TooManyHeadersInForwardedValues;
|
|
1075
|
+
}(__BaseException));
|
|
1076
|
+
export { TooManyHeadersInForwardedValues };
|
|
1077
|
+
var TooManyKeyGroupsAssociatedToDistribution = (function (_super) {
|
|
1078
|
+
__extends(TooManyKeyGroupsAssociatedToDistribution, _super);
|
|
1079
|
+
function TooManyKeyGroupsAssociatedToDistribution(opts) {
|
|
1080
|
+
var _this = _super.call(this, __assign({ name: "TooManyKeyGroupsAssociatedToDistribution", $fault: "client" }, opts)) || this;
|
|
1081
|
+
_this.name = "TooManyKeyGroupsAssociatedToDistribution";
|
|
1082
|
+
_this.$fault = "client";
|
|
1083
|
+
Object.setPrototypeOf(_this, TooManyKeyGroupsAssociatedToDistribution.prototype);
|
|
1084
|
+
_this.Message = opts.Message;
|
|
1085
|
+
return _this;
|
|
1086
|
+
}
|
|
1087
|
+
return TooManyKeyGroupsAssociatedToDistribution;
|
|
1088
|
+
}(__BaseException));
|
|
1089
|
+
export { TooManyKeyGroupsAssociatedToDistribution };
|
|
1090
|
+
var TooManyLambdaFunctionAssociations = (function (_super) {
|
|
1091
|
+
__extends(TooManyLambdaFunctionAssociations, _super);
|
|
1092
|
+
function TooManyLambdaFunctionAssociations(opts) {
|
|
1093
|
+
var _this = _super.call(this, __assign({ name: "TooManyLambdaFunctionAssociations", $fault: "client" }, opts)) || this;
|
|
1094
|
+
_this.name = "TooManyLambdaFunctionAssociations";
|
|
1095
|
+
_this.$fault = "client";
|
|
1096
|
+
Object.setPrototypeOf(_this, TooManyLambdaFunctionAssociations.prototype);
|
|
1097
|
+
_this.Message = opts.Message;
|
|
1098
|
+
return _this;
|
|
1099
|
+
}
|
|
1100
|
+
return TooManyLambdaFunctionAssociations;
|
|
1101
|
+
}(__BaseException));
|
|
1102
|
+
export { TooManyLambdaFunctionAssociations };
|
|
1103
|
+
var TooManyOriginCustomHeaders = (function (_super) {
|
|
1104
|
+
__extends(TooManyOriginCustomHeaders, _super);
|
|
1105
|
+
function TooManyOriginCustomHeaders(opts) {
|
|
1106
|
+
var _this = _super.call(this, __assign({ name: "TooManyOriginCustomHeaders", $fault: "client" }, opts)) || this;
|
|
1107
|
+
_this.name = "TooManyOriginCustomHeaders";
|
|
1108
|
+
_this.$fault = "client";
|
|
1109
|
+
Object.setPrototypeOf(_this, TooManyOriginCustomHeaders.prototype);
|
|
1110
|
+
_this.Message = opts.Message;
|
|
1111
|
+
return _this;
|
|
1112
|
+
}
|
|
1113
|
+
return TooManyOriginCustomHeaders;
|
|
1114
|
+
}(__BaseException));
|
|
1115
|
+
export { TooManyOriginCustomHeaders };
|
|
1116
|
+
var TooManyOriginGroupsPerDistribution = (function (_super) {
|
|
1117
|
+
__extends(TooManyOriginGroupsPerDistribution, _super);
|
|
1118
|
+
function TooManyOriginGroupsPerDistribution(opts) {
|
|
1119
|
+
var _this = _super.call(this, __assign({ name: "TooManyOriginGroupsPerDistribution", $fault: "client" }, opts)) || this;
|
|
1120
|
+
_this.name = "TooManyOriginGroupsPerDistribution";
|
|
1121
|
+
_this.$fault = "client";
|
|
1122
|
+
Object.setPrototypeOf(_this, TooManyOriginGroupsPerDistribution.prototype);
|
|
1123
|
+
_this.Message = opts.Message;
|
|
1124
|
+
return _this;
|
|
1125
|
+
}
|
|
1126
|
+
return TooManyOriginGroupsPerDistribution;
|
|
1127
|
+
}(__BaseException));
|
|
1128
|
+
export { TooManyOriginGroupsPerDistribution };
|
|
1129
|
+
var TooManyOrigins = (function (_super) {
|
|
1130
|
+
__extends(TooManyOrigins, _super);
|
|
1131
|
+
function TooManyOrigins(opts) {
|
|
1132
|
+
var _this = _super.call(this, __assign({ name: "TooManyOrigins", $fault: "client" }, opts)) || this;
|
|
1133
|
+
_this.name = "TooManyOrigins";
|
|
1134
|
+
_this.$fault = "client";
|
|
1135
|
+
Object.setPrototypeOf(_this, TooManyOrigins.prototype);
|
|
1136
|
+
_this.Message = opts.Message;
|
|
1137
|
+
return _this;
|
|
1138
|
+
}
|
|
1139
|
+
return TooManyOrigins;
|
|
1140
|
+
}(__BaseException));
|
|
1141
|
+
export { TooManyOrigins };
|
|
1142
|
+
var TooManyQueryStringParameters = (function (_super) {
|
|
1143
|
+
__extends(TooManyQueryStringParameters, _super);
|
|
1144
|
+
function TooManyQueryStringParameters(opts) {
|
|
1145
|
+
var _this = _super.call(this, __assign({ name: "TooManyQueryStringParameters", $fault: "client" }, opts)) || this;
|
|
1146
|
+
_this.name = "TooManyQueryStringParameters";
|
|
1147
|
+
_this.$fault = "client";
|
|
1148
|
+
Object.setPrototypeOf(_this, TooManyQueryStringParameters.prototype);
|
|
1149
|
+
_this.Message = opts.Message;
|
|
1150
|
+
return _this;
|
|
1151
|
+
}
|
|
1152
|
+
return TooManyQueryStringParameters;
|
|
1153
|
+
}(__BaseException));
|
|
1154
|
+
export { TooManyQueryStringParameters };
|
|
1155
|
+
var TooManyTrustedSigners = (function (_super) {
|
|
1156
|
+
__extends(TooManyTrustedSigners, _super);
|
|
1157
|
+
function TooManyTrustedSigners(opts) {
|
|
1158
|
+
var _this = _super.call(this, __assign({ name: "TooManyTrustedSigners", $fault: "client" }, opts)) || this;
|
|
1159
|
+
_this.name = "TooManyTrustedSigners";
|
|
1160
|
+
_this.$fault = "client";
|
|
1161
|
+
Object.setPrototypeOf(_this, TooManyTrustedSigners.prototype);
|
|
1162
|
+
_this.Message = opts.Message;
|
|
1163
|
+
return _this;
|
|
1164
|
+
}
|
|
1165
|
+
return TooManyTrustedSigners;
|
|
1166
|
+
}(__BaseException));
|
|
1167
|
+
export { TooManyTrustedSigners };
|
|
1168
|
+
var TrustedKeyGroupDoesNotExist = (function (_super) {
|
|
1169
|
+
__extends(TrustedKeyGroupDoesNotExist, _super);
|
|
1170
|
+
function TrustedKeyGroupDoesNotExist(opts) {
|
|
1171
|
+
var _this = _super.call(this, __assign({ name: "TrustedKeyGroupDoesNotExist", $fault: "client" }, opts)) || this;
|
|
1172
|
+
_this.name = "TrustedKeyGroupDoesNotExist";
|
|
1173
|
+
_this.$fault = "client";
|
|
1174
|
+
Object.setPrototypeOf(_this, TrustedKeyGroupDoesNotExist.prototype);
|
|
1175
|
+
_this.Message = opts.Message;
|
|
1176
|
+
return _this;
|
|
1177
|
+
}
|
|
1178
|
+
return TrustedKeyGroupDoesNotExist;
|
|
1179
|
+
}(__BaseException));
|
|
1180
|
+
export { TrustedKeyGroupDoesNotExist };
|
|
1181
|
+
var TrustedSignerDoesNotExist = (function (_super) {
|
|
1182
|
+
__extends(TrustedSignerDoesNotExist, _super);
|
|
1183
|
+
function TrustedSignerDoesNotExist(opts) {
|
|
1184
|
+
var _this = _super.call(this, __assign({ name: "TrustedSignerDoesNotExist", $fault: "client" }, opts)) || this;
|
|
1185
|
+
_this.name = "TrustedSignerDoesNotExist";
|
|
1186
|
+
_this.$fault = "client";
|
|
1187
|
+
Object.setPrototypeOf(_this, TrustedSignerDoesNotExist.prototype);
|
|
1188
|
+
_this.Message = opts.Message;
|
|
1189
|
+
return _this;
|
|
1190
|
+
}
|
|
1191
|
+
return TrustedSignerDoesNotExist;
|
|
1192
|
+
}(__BaseException));
|
|
1193
|
+
export { TrustedSignerDoesNotExist };
|
|
270
1194
|
export var Tag;
|
|
271
1195
|
(function (Tag) {
|
|
272
1196
|
Tag.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -291,6 +1215,19 @@ export var CreateDistributionWithTagsResult;
|
|
|
291
1215
|
(function (CreateDistributionWithTagsResult) {
|
|
292
1216
|
CreateDistributionWithTagsResult.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.Distribution && { Distribution: Distribution.filterSensitiveLog(obj.Distribution) }))); };
|
|
293
1217
|
})(CreateDistributionWithTagsResult || (CreateDistributionWithTagsResult = {}));
|
|
1218
|
+
var InvalidTagging = (function (_super) {
|
|
1219
|
+
__extends(InvalidTagging, _super);
|
|
1220
|
+
function InvalidTagging(opts) {
|
|
1221
|
+
var _this = _super.call(this, __assign({ name: "InvalidTagging", $fault: "client" }, opts)) || this;
|
|
1222
|
+
_this.name = "InvalidTagging";
|
|
1223
|
+
_this.$fault = "client";
|
|
1224
|
+
Object.setPrototypeOf(_this, InvalidTagging.prototype);
|
|
1225
|
+
_this.Message = opts.Message;
|
|
1226
|
+
return _this;
|
|
1227
|
+
}
|
|
1228
|
+
return InvalidTagging;
|
|
1229
|
+
}(__BaseException));
|
|
1230
|
+
export { InvalidTagging };
|
|
294
1231
|
export var ContentTypeProfile;
|
|
295
1232
|
(function (ContentTypeProfile) {
|
|
296
1233
|
ContentTypeProfile.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -331,6 +1268,84 @@ export var CreateFieldLevelEncryptionConfigResult;
|
|
|
331
1268
|
(function (CreateFieldLevelEncryptionConfigResult) {
|
|
332
1269
|
CreateFieldLevelEncryptionConfigResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
333
1270
|
})(CreateFieldLevelEncryptionConfigResult || (CreateFieldLevelEncryptionConfigResult = {}));
|
|
1271
|
+
var FieldLevelEncryptionConfigAlreadyExists = (function (_super) {
|
|
1272
|
+
__extends(FieldLevelEncryptionConfigAlreadyExists, _super);
|
|
1273
|
+
function FieldLevelEncryptionConfigAlreadyExists(opts) {
|
|
1274
|
+
var _this = _super.call(this, __assign({ name: "FieldLevelEncryptionConfigAlreadyExists", $fault: "client" }, opts)) || this;
|
|
1275
|
+
_this.name = "FieldLevelEncryptionConfigAlreadyExists";
|
|
1276
|
+
_this.$fault = "client";
|
|
1277
|
+
Object.setPrototypeOf(_this, FieldLevelEncryptionConfigAlreadyExists.prototype);
|
|
1278
|
+
_this.Message = opts.Message;
|
|
1279
|
+
return _this;
|
|
1280
|
+
}
|
|
1281
|
+
return FieldLevelEncryptionConfigAlreadyExists;
|
|
1282
|
+
}(__BaseException));
|
|
1283
|
+
export { FieldLevelEncryptionConfigAlreadyExists };
|
|
1284
|
+
var NoSuchFieldLevelEncryptionProfile = (function (_super) {
|
|
1285
|
+
__extends(NoSuchFieldLevelEncryptionProfile, _super);
|
|
1286
|
+
function NoSuchFieldLevelEncryptionProfile(opts) {
|
|
1287
|
+
var _this = _super.call(this, __assign({ name: "NoSuchFieldLevelEncryptionProfile", $fault: "client" }, opts)) || this;
|
|
1288
|
+
_this.name = "NoSuchFieldLevelEncryptionProfile";
|
|
1289
|
+
_this.$fault = "client";
|
|
1290
|
+
Object.setPrototypeOf(_this, NoSuchFieldLevelEncryptionProfile.prototype);
|
|
1291
|
+
_this.Message = opts.Message;
|
|
1292
|
+
return _this;
|
|
1293
|
+
}
|
|
1294
|
+
return NoSuchFieldLevelEncryptionProfile;
|
|
1295
|
+
}(__BaseException));
|
|
1296
|
+
export { NoSuchFieldLevelEncryptionProfile };
|
|
1297
|
+
var QueryArgProfileEmpty = (function (_super) {
|
|
1298
|
+
__extends(QueryArgProfileEmpty, _super);
|
|
1299
|
+
function QueryArgProfileEmpty(opts) {
|
|
1300
|
+
var _this = _super.call(this, __assign({ name: "QueryArgProfileEmpty", $fault: "client" }, opts)) || this;
|
|
1301
|
+
_this.name = "QueryArgProfileEmpty";
|
|
1302
|
+
_this.$fault = "client";
|
|
1303
|
+
Object.setPrototypeOf(_this, QueryArgProfileEmpty.prototype);
|
|
1304
|
+
_this.Message = opts.Message;
|
|
1305
|
+
return _this;
|
|
1306
|
+
}
|
|
1307
|
+
return QueryArgProfileEmpty;
|
|
1308
|
+
}(__BaseException));
|
|
1309
|
+
export { QueryArgProfileEmpty };
|
|
1310
|
+
var TooManyFieldLevelEncryptionConfigs = (function (_super) {
|
|
1311
|
+
__extends(TooManyFieldLevelEncryptionConfigs, _super);
|
|
1312
|
+
function TooManyFieldLevelEncryptionConfigs(opts) {
|
|
1313
|
+
var _this = _super.call(this, __assign({ name: "TooManyFieldLevelEncryptionConfigs", $fault: "client" }, opts)) || this;
|
|
1314
|
+
_this.name = "TooManyFieldLevelEncryptionConfigs";
|
|
1315
|
+
_this.$fault = "client";
|
|
1316
|
+
Object.setPrototypeOf(_this, TooManyFieldLevelEncryptionConfigs.prototype);
|
|
1317
|
+
_this.Message = opts.Message;
|
|
1318
|
+
return _this;
|
|
1319
|
+
}
|
|
1320
|
+
return TooManyFieldLevelEncryptionConfigs;
|
|
1321
|
+
}(__BaseException));
|
|
1322
|
+
export { TooManyFieldLevelEncryptionConfigs };
|
|
1323
|
+
var TooManyFieldLevelEncryptionContentTypeProfiles = (function (_super) {
|
|
1324
|
+
__extends(TooManyFieldLevelEncryptionContentTypeProfiles, _super);
|
|
1325
|
+
function TooManyFieldLevelEncryptionContentTypeProfiles(opts) {
|
|
1326
|
+
var _this = _super.call(this, __assign({ name: "TooManyFieldLevelEncryptionContentTypeProfiles", $fault: "client" }, opts)) || this;
|
|
1327
|
+
_this.name = "TooManyFieldLevelEncryptionContentTypeProfiles";
|
|
1328
|
+
_this.$fault = "client";
|
|
1329
|
+
Object.setPrototypeOf(_this, TooManyFieldLevelEncryptionContentTypeProfiles.prototype);
|
|
1330
|
+
_this.Message = opts.Message;
|
|
1331
|
+
return _this;
|
|
1332
|
+
}
|
|
1333
|
+
return TooManyFieldLevelEncryptionContentTypeProfiles;
|
|
1334
|
+
}(__BaseException));
|
|
1335
|
+
export { TooManyFieldLevelEncryptionContentTypeProfiles };
|
|
1336
|
+
var TooManyFieldLevelEncryptionQueryArgProfiles = (function (_super) {
|
|
1337
|
+
__extends(TooManyFieldLevelEncryptionQueryArgProfiles, _super);
|
|
1338
|
+
function TooManyFieldLevelEncryptionQueryArgProfiles(opts) {
|
|
1339
|
+
var _this = _super.call(this, __assign({ name: "TooManyFieldLevelEncryptionQueryArgProfiles", $fault: "client" }, opts)) || this;
|
|
1340
|
+
_this.name = "TooManyFieldLevelEncryptionQueryArgProfiles";
|
|
1341
|
+
_this.$fault = "client";
|
|
1342
|
+
Object.setPrototypeOf(_this, TooManyFieldLevelEncryptionQueryArgProfiles.prototype);
|
|
1343
|
+
_this.Message = opts.Message;
|
|
1344
|
+
return _this;
|
|
1345
|
+
}
|
|
1346
|
+
return TooManyFieldLevelEncryptionQueryArgProfiles;
|
|
1347
|
+
}(__BaseException));
|
|
1348
|
+
export { TooManyFieldLevelEncryptionQueryArgProfiles };
|
|
334
1349
|
export var FieldPatterns;
|
|
335
1350
|
(function (FieldPatterns) {
|
|
336
1351
|
FieldPatterns.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -359,6 +1374,84 @@ export var CreateFieldLevelEncryptionProfileResult;
|
|
|
359
1374
|
(function (CreateFieldLevelEncryptionProfileResult) {
|
|
360
1375
|
CreateFieldLevelEncryptionProfileResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
361
1376
|
})(CreateFieldLevelEncryptionProfileResult || (CreateFieldLevelEncryptionProfileResult = {}));
|
|
1377
|
+
var FieldLevelEncryptionProfileAlreadyExists = (function (_super) {
|
|
1378
|
+
__extends(FieldLevelEncryptionProfileAlreadyExists, _super);
|
|
1379
|
+
function FieldLevelEncryptionProfileAlreadyExists(opts) {
|
|
1380
|
+
var _this = _super.call(this, __assign({ name: "FieldLevelEncryptionProfileAlreadyExists", $fault: "client" }, opts)) || this;
|
|
1381
|
+
_this.name = "FieldLevelEncryptionProfileAlreadyExists";
|
|
1382
|
+
_this.$fault = "client";
|
|
1383
|
+
Object.setPrototypeOf(_this, FieldLevelEncryptionProfileAlreadyExists.prototype);
|
|
1384
|
+
_this.Message = opts.Message;
|
|
1385
|
+
return _this;
|
|
1386
|
+
}
|
|
1387
|
+
return FieldLevelEncryptionProfileAlreadyExists;
|
|
1388
|
+
}(__BaseException));
|
|
1389
|
+
export { FieldLevelEncryptionProfileAlreadyExists };
|
|
1390
|
+
var FieldLevelEncryptionProfileSizeExceeded = (function (_super) {
|
|
1391
|
+
__extends(FieldLevelEncryptionProfileSizeExceeded, _super);
|
|
1392
|
+
function FieldLevelEncryptionProfileSizeExceeded(opts) {
|
|
1393
|
+
var _this = _super.call(this, __assign({ name: "FieldLevelEncryptionProfileSizeExceeded", $fault: "client" }, opts)) || this;
|
|
1394
|
+
_this.name = "FieldLevelEncryptionProfileSizeExceeded";
|
|
1395
|
+
_this.$fault = "client";
|
|
1396
|
+
Object.setPrototypeOf(_this, FieldLevelEncryptionProfileSizeExceeded.prototype);
|
|
1397
|
+
_this.Message = opts.Message;
|
|
1398
|
+
return _this;
|
|
1399
|
+
}
|
|
1400
|
+
return FieldLevelEncryptionProfileSizeExceeded;
|
|
1401
|
+
}(__BaseException));
|
|
1402
|
+
export { FieldLevelEncryptionProfileSizeExceeded };
|
|
1403
|
+
var NoSuchPublicKey = (function (_super) {
|
|
1404
|
+
__extends(NoSuchPublicKey, _super);
|
|
1405
|
+
function NoSuchPublicKey(opts) {
|
|
1406
|
+
var _this = _super.call(this, __assign({ name: "NoSuchPublicKey", $fault: "client" }, opts)) || this;
|
|
1407
|
+
_this.name = "NoSuchPublicKey";
|
|
1408
|
+
_this.$fault = "client";
|
|
1409
|
+
Object.setPrototypeOf(_this, NoSuchPublicKey.prototype);
|
|
1410
|
+
_this.Message = opts.Message;
|
|
1411
|
+
return _this;
|
|
1412
|
+
}
|
|
1413
|
+
return NoSuchPublicKey;
|
|
1414
|
+
}(__BaseException));
|
|
1415
|
+
export { NoSuchPublicKey };
|
|
1416
|
+
var TooManyFieldLevelEncryptionEncryptionEntities = (function (_super) {
|
|
1417
|
+
__extends(TooManyFieldLevelEncryptionEncryptionEntities, _super);
|
|
1418
|
+
function TooManyFieldLevelEncryptionEncryptionEntities(opts) {
|
|
1419
|
+
var _this = _super.call(this, __assign({ name: "TooManyFieldLevelEncryptionEncryptionEntities", $fault: "client" }, opts)) || this;
|
|
1420
|
+
_this.name = "TooManyFieldLevelEncryptionEncryptionEntities";
|
|
1421
|
+
_this.$fault = "client";
|
|
1422
|
+
Object.setPrototypeOf(_this, TooManyFieldLevelEncryptionEncryptionEntities.prototype);
|
|
1423
|
+
_this.Message = opts.Message;
|
|
1424
|
+
return _this;
|
|
1425
|
+
}
|
|
1426
|
+
return TooManyFieldLevelEncryptionEncryptionEntities;
|
|
1427
|
+
}(__BaseException));
|
|
1428
|
+
export { TooManyFieldLevelEncryptionEncryptionEntities };
|
|
1429
|
+
var TooManyFieldLevelEncryptionFieldPatterns = (function (_super) {
|
|
1430
|
+
__extends(TooManyFieldLevelEncryptionFieldPatterns, _super);
|
|
1431
|
+
function TooManyFieldLevelEncryptionFieldPatterns(opts) {
|
|
1432
|
+
var _this = _super.call(this, __assign({ name: "TooManyFieldLevelEncryptionFieldPatterns", $fault: "client" }, opts)) || this;
|
|
1433
|
+
_this.name = "TooManyFieldLevelEncryptionFieldPatterns";
|
|
1434
|
+
_this.$fault = "client";
|
|
1435
|
+
Object.setPrototypeOf(_this, TooManyFieldLevelEncryptionFieldPatterns.prototype);
|
|
1436
|
+
_this.Message = opts.Message;
|
|
1437
|
+
return _this;
|
|
1438
|
+
}
|
|
1439
|
+
return TooManyFieldLevelEncryptionFieldPatterns;
|
|
1440
|
+
}(__BaseException));
|
|
1441
|
+
export { TooManyFieldLevelEncryptionFieldPatterns };
|
|
1442
|
+
var TooManyFieldLevelEncryptionProfiles = (function (_super) {
|
|
1443
|
+
__extends(TooManyFieldLevelEncryptionProfiles, _super);
|
|
1444
|
+
function TooManyFieldLevelEncryptionProfiles(opts) {
|
|
1445
|
+
var _this = _super.call(this, __assign({ name: "TooManyFieldLevelEncryptionProfiles", $fault: "client" }, opts)) || this;
|
|
1446
|
+
_this.name = "TooManyFieldLevelEncryptionProfiles";
|
|
1447
|
+
_this.$fault = "client";
|
|
1448
|
+
Object.setPrototypeOf(_this, TooManyFieldLevelEncryptionProfiles.prototype);
|
|
1449
|
+
_this.Message = opts.Message;
|
|
1450
|
+
return _this;
|
|
1451
|
+
}
|
|
1452
|
+
return TooManyFieldLevelEncryptionProfiles;
|
|
1453
|
+
}(__BaseException));
|
|
1454
|
+
export { TooManyFieldLevelEncryptionProfiles };
|
|
362
1455
|
export var FunctionRuntime;
|
|
363
1456
|
(function (FunctionRuntime) {
|
|
364
1457
|
FunctionRuntime["cloudfront_js_1_0"] = "cloudfront-js-1.0";
|
|
@@ -388,6 +1481,58 @@ export var CreateFunctionResult;
|
|
|
388
1481
|
(function (CreateFunctionResult) {
|
|
389
1482
|
CreateFunctionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
390
1483
|
})(CreateFunctionResult || (CreateFunctionResult = {}));
|
|
1484
|
+
var FunctionAlreadyExists = (function (_super) {
|
|
1485
|
+
__extends(FunctionAlreadyExists, _super);
|
|
1486
|
+
function FunctionAlreadyExists(opts) {
|
|
1487
|
+
var _this = _super.call(this, __assign({ name: "FunctionAlreadyExists", $fault: "client" }, opts)) || this;
|
|
1488
|
+
_this.name = "FunctionAlreadyExists";
|
|
1489
|
+
_this.$fault = "client";
|
|
1490
|
+
Object.setPrototypeOf(_this, FunctionAlreadyExists.prototype);
|
|
1491
|
+
_this.Message = opts.Message;
|
|
1492
|
+
return _this;
|
|
1493
|
+
}
|
|
1494
|
+
return FunctionAlreadyExists;
|
|
1495
|
+
}(__BaseException));
|
|
1496
|
+
export { FunctionAlreadyExists };
|
|
1497
|
+
var FunctionSizeLimitExceeded = (function (_super) {
|
|
1498
|
+
__extends(FunctionSizeLimitExceeded, _super);
|
|
1499
|
+
function FunctionSizeLimitExceeded(opts) {
|
|
1500
|
+
var _this = _super.call(this, __assign({ name: "FunctionSizeLimitExceeded", $fault: "client" }, opts)) || this;
|
|
1501
|
+
_this.name = "FunctionSizeLimitExceeded";
|
|
1502
|
+
_this.$fault = "client";
|
|
1503
|
+
Object.setPrototypeOf(_this, FunctionSizeLimitExceeded.prototype);
|
|
1504
|
+
_this.Message = opts.Message;
|
|
1505
|
+
return _this;
|
|
1506
|
+
}
|
|
1507
|
+
return FunctionSizeLimitExceeded;
|
|
1508
|
+
}(__BaseException));
|
|
1509
|
+
export { FunctionSizeLimitExceeded };
|
|
1510
|
+
var TooManyFunctions = (function (_super) {
|
|
1511
|
+
__extends(TooManyFunctions, _super);
|
|
1512
|
+
function TooManyFunctions(opts) {
|
|
1513
|
+
var _this = _super.call(this, __assign({ name: "TooManyFunctions", $fault: "client" }, opts)) || this;
|
|
1514
|
+
_this.name = "TooManyFunctions";
|
|
1515
|
+
_this.$fault = "client";
|
|
1516
|
+
Object.setPrototypeOf(_this, TooManyFunctions.prototype);
|
|
1517
|
+
_this.Message = opts.Message;
|
|
1518
|
+
return _this;
|
|
1519
|
+
}
|
|
1520
|
+
return TooManyFunctions;
|
|
1521
|
+
}(__BaseException));
|
|
1522
|
+
export { TooManyFunctions };
|
|
1523
|
+
var UnsupportedOperation = (function (_super) {
|
|
1524
|
+
__extends(UnsupportedOperation, _super);
|
|
1525
|
+
function UnsupportedOperation(opts) {
|
|
1526
|
+
var _this = _super.call(this, __assign({ name: "UnsupportedOperation", $fault: "client" }, opts)) || this;
|
|
1527
|
+
_this.name = "UnsupportedOperation";
|
|
1528
|
+
_this.$fault = "client";
|
|
1529
|
+
Object.setPrototypeOf(_this, UnsupportedOperation.prototype);
|
|
1530
|
+
_this.Message = opts.Message;
|
|
1531
|
+
return _this;
|
|
1532
|
+
}
|
|
1533
|
+
return UnsupportedOperation;
|
|
1534
|
+
}(__BaseException));
|
|
1535
|
+
export { UnsupportedOperation };
|
|
391
1536
|
export var Paths;
|
|
392
1537
|
(function (Paths) {
|
|
393
1538
|
Paths.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -408,6 +1553,19 @@ export var CreateInvalidationResult;
|
|
|
408
1553
|
(function (CreateInvalidationResult) {
|
|
409
1554
|
CreateInvalidationResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
410
1555
|
})(CreateInvalidationResult || (CreateInvalidationResult = {}));
|
|
1556
|
+
var TooManyInvalidationsInProgress = (function (_super) {
|
|
1557
|
+
__extends(TooManyInvalidationsInProgress, _super);
|
|
1558
|
+
function TooManyInvalidationsInProgress(opts) {
|
|
1559
|
+
var _this = _super.call(this, __assign({ name: "TooManyInvalidationsInProgress", $fault: "client" }, opts)) || this;
|
|
1560
|
+
_this.name = "TooManyInvalidationsInProgress";
|
|
1561
|
+
_this.$fault = "client";
|
|
1562
|
+
Object.setPrototypeOf(_this, TooManyInvalidationsInProgress.prototype);
|
|
1563
|
+
_this.Message = opts.Message;
|
|
1564
|
+
return _this;
|
|
1565
|
+
}
|
|
1566
|
+
return TooManyInvalidationsInProgress;
|
|
1567
|
+
}(__BaseException));
|
|
1568
|
+
export { TooManyInvalidationsInProgress };
|
|
411
1569
|
export var KeyGroupConfig;
|
|
412
1570
|
(function (KeyGroupConfig) {
|
|
413
1571
|
KeyGroupConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -424,6 +1582,45 @@ export var CreateKeyGroupResult;
|
|
|
424
1582
|
(function (CreateKeyGroupResult) {
|
|
425
1583
|
CreateKeyGroupResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
426
1584
|
})(CreateKeyGroupResult || (CreateKeyGroupResult = {}));
|
|
1585
|
+
var KeyGroupAlreadyExists = (function (_super) {
|
|
1586
|
+
__extends(KeyGroupAlreadyExists, _super);
|
|
1587
|
+
function KeyGroupAlreadyExists(opts) {
|
|
1588
|
+
var _this = _super.call(this, __assign({ name: "KeyGroupAlreadyExists", $fault: "client" }, opts)) || this;
|
|
1589
|
+
_this.name = "KeyGroupAlreadyExists";
|
|
1590
|
+
_this.$fault = "client";
|
|
1591
|
+
Object.setPrototypeOf(_this, KeyGroupAlreadyExists.prototype);
|
|
1592
|
+
_this.Message = opts.Message;
|
|
1593
|
+
return _this;
|
|
1594
|
+
}
|
|
1595
|
+
return KeyGroupAlreadyExists;
|
|
1596
|
+
}(__BaseException));
|
|
1597
|
+
export { KeyGroupAlreadyExists };
|
|
1598
|
+
var TooManyKeyGroups = (function (_super) {
|
|
1599
|
+
__extends(TooManyKeyGroups, _super);
|
|
1600
|
+
function TooManyKeyGroups(opts) {
|
|
1601
|
+
var _this = _super.call(this, __assign({ name: "TooManyKeyGroups", $fault: "client" }, opts)) || this;
|
|
1602
|
+
_this.name = "TooManyKeyGroups";
|
|
1603
|
+
_this.$fault = "client";
|
|
1604
|
+
Object.setPrototypeOf(_this, TooManyKeyGroups.prototype);
|
|
1605
|
+
_this.Message = opts.Message;
|
|
1606
|
+
return _this;
|
|
1607
|
+
}
|
|
1608
|
+
return TooManyKeyGroups;
|
|
1609
|
+
}(__BaseException));
|
|
1610
|
+
export { TooManyKeyGroups };
|
|
1611
|
+
var TooManyPublicKeysInKeyGroup = (function (_super) {
|
|
1612
|
+
__extends(TooManyPublicKeysInKeyGroup, _super);
|
|
1613
|
+
function TooManyPublicKeysInKeyGroup(opts) {
|
|
1614
|
+
var _this = _super.call(this, __assign({ name: "TooManyPublicKeysInKeyGroup", $fault: "client" }, opts)) || this;
|
|
1615
|
+
_this.name = "TooManyPublicKeysInKeyGroup";
|
|
1616
|
+
_this.$fault = "client";
|
|
1617
|
+
Object.setPrototypeOf(_this, TooManyPublicKeysInKeyGroup.prototype);
|
|
1618
|
+
_this.Message = opts.Message;
|
|
1619
|
+
return _this;
|
|
1620
|
+
}
|
|
1621
|
+
return TooManyPublicKeysInKeyGroup;
|
|
1622
|
+
}(__BaseException));
|
|
1623
|
+
export { TooManyPublicKeysInKeyGroup };
|
|
427
1624
|
export var RealtimeMetricsSubscriptionStatus;
|
|
428
1625
|
(function (RealtimeMetricsSubscriptionStatus) {
|
|
429
1626
|
RealtimeMetricsSubscriptionStatus["Disabled"] = "Disabled";
|
|
@@ -473,6 +1670,71 @@ export var CreateOriginRequestPolicyResult;
|
|
|
473
1670
|
(function (CreateOriginRequestPolicyResult) {
|
|
474
1671
|
CreateOriginRequestPolicyResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
475
1672
|
})(CreateOriginRequestPolicyResult || (CreateOriginRequestPolicyResult = {}));
|
|
1673
|
+
var OriginRequestPolicyAlreadyExists = (function (_super) {
|
|
1674
|
+
__extends(OriginRequestPolicyAlreadyExists, _super);
|
|
1675
|
+
function OriginRequestPolicyAlreadyExists(opts) {
|
|
1676
|
+
var _this = _super.call(this, __assign({ name: "OriginRequestPolicyAlreadyExists", $fault: "client" }, opts)) || this;
|
|
1677
|
+
_this.name = "OriginRequestPolicyAlreadyExists";
|
|
1678
|
+
_this.$fault = "client";
|
|
1679
|
+
Object.setPrototypeOf(_this, OriginRequestPolicyAlreadyExists.prototype);
|
|
1680
|
+
_this.Message = opts.Message;
|
|
1681
|
+
return _this;
|
|
1682
|
+
}
|
|
1683
|
+
return OriginRequestPolicyAlreadyExists;
|
|
1684
|
+
}(__BaseException));
|
|
1685
|
+
export { OriginRequestPolicyAlreadyExists };
|
|
1686
|
+
var TooManyCookiesInOriginRequestPolicy = (function (_super) {
|
|
1687
|
+
__extends(TooManyCookiesInOriginRequestPolicy, _super);
|
|
1688
|
+
function TooManyCookiesInOriginRequestPolicy(opts) {
|
|
1689
|
+
var _this = _super.call(this, __assign({ name: "TooManyCookiesInOriginRequestPolicy", $fault: "client" }, opts)) || this;
|
|
1690
|
+
_this.name = "TooManyCookiesInOriginRequestPolicy";
|
|
1691
|
+
_this.$fault = "client";
|
|
1692
|
+
Object.setPrototypeOf(_this, TooManyCookiesInOriginRequestPolicy.prototype);
|
|
1693
|
+
_this.Message = opts.Message;
|
|
1694
|
+
return _this;
|
|
1695
|
+
}
|
|
1696
|
+
return TooManyCookiesInOriginRequestPolicy;
|
|
1697
|
+
}(__BaseException));
|
|
1698
|
+
export { TooManyCookiesInOriginRequestPolicy };
|
|
1699
|
+
var TooManyHeadersInOriginRequestPolicy = (function (_super) {
|
|
1700
|
+
__extends(TooManyHeadersInOriginRequestPolicy, _super);
|
|
1701
|
+
function TooManyHeadersInOriginRequestPolicy(opts) {
|
|
1702
|
+
var _this = _super.call(this, __assign({ name: "TooManyHeadersInOriginRequestPolicy", $fault: "client" }, opts)) || this;
|
|
1703
|
+
_this.name = "TooManyHeadersInOriginRequestPolicy";
|
|
1704
|
+
_this.$fault = "client";
|
|
1705
|
+
Object.setPrototypeOf(_this, TooManyHeadersInOriginRequestPolicy.prototype);
|
|
1706
|
+
_this.Message = opts.Message;
|
|
1707
|
+
return _this;
|
|
1708
|
+
}
|
|
1709
|
+
return TooManyHeadersInOriginRequestPolicy;
|
|
1710
|
+
}(__BaseException));
|
|
1711
|
+
export { TooManyHeadersInOriginRequestPolicy };
|
|
1712
|
+
var TooManyOriginRequestPolicies = (function (_super) {
|
|
1713
|
+
__extends(TooManyOriginRequestPolicies, _super);
|
|
1714
|
+
function TooManyOriginRequestPolicies(opts) {
|
|
1715
|
+
var _this = _super.call(this, __assign({ name: "TooManyOriginRequestPolicies", $fault: "client" }, opts)) || this;
|
|
1716
|
+
_this.name = "TooManyOriginRequestPolicies";
|
|
1717
|
+
_this.$fault = "client";
|
|
1718
|
+
Object.setPrototypeOf(_this, TooManyOriginRequestPolicies.prototype);
|
|
1719
|
+
_this.Message = opts.Message;
|
|
1720
|
+
return _this;
|
|
1721
|
+
}
|
|
1722
|
+
return TooManyOriginRequestPolicies;
|
|
1723
|
+
}(__BaseException));
|
|
1724
|
+
export { TooManyOriginRequestPolicies };
|
|
1725
|
+
var TooManyQueryStringsInOriginRequestPolicy = (function (_super) {
|
|
1726
|
+
__extends(TooManyQueryStringsInOriginRequestPolicy, _super);
|
|
1727
|
+
function TooManyQueryStringsInOriginRequestPolicy(opts) {
|
|
1728
|
+
var _this = _super.call(this, __assign({ name: "TooManyQueryStringsInOriginRequestPolicy", $fault: "client" }, opts)) || this;
|
|
1729
|
+
_this.name = "TooManyQueryStringsInOriginRequestPolicy";
|
|
1730
|
+
_this.$fault = "client";
|
|
1731
|
+
Object.setPrototypeOf(_this, TooManyQueryStringsInOriginRequestPolicy.prototype);
|
|
1732
|
+
_this.Message = opts.Message;
|
|
1733
|
+
return _this;
|
|
1734
|
+
}
|
|
1735
|
+
return TooManyQueryStringsInOriginRequestPolicy;
|
|
1736
|
+
}(__BaseException));
|
|
1737
|
+
export { TooManyQueryStringsInOriginRequestPolicy };
|
|
476
1738
|
export var PublicKeyConfig;
|
|
477
1739
|
(function (PublicKeyConfig) {
|
|
478
1740
|
PublicKeyConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -489,6 +1751,32 @@ export var CreatePublicKeyResult;
|
|
|
489
1751
|
(function (CreatePublicKeyResult) {
|
|
490
1752
|
CreatePublicKeyResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
491
1753
|
})(CreatePublicKeyResult || (CreatePublicKeyResult = {}));
|
|
1754
|
+
var PublicKeyAlreadyExists = (function (_super) {
|
|
1755
|
+
__extends(PublicKeyAlreadyExists, _super);
|
|
1756
|
+
function PublicKeyAlreadyExists(opts) {
|
|
1757
|
+
var _this = _super.call(this, __assign({ name: "PublicKeyAlreadyExists", $fault: "client" }, opts)) || this;
|
|
1758
|
+
_this.name = "PublicKeyAlreadyExists";
|
|
1759
|
+
_this.$fault = "client";
|
|
1760
|
+
Object.setPrototypeOf(_this, PublicKeyAlreadyExists.prototype);
|
|
1761
|
+
_this.Message = opts.Message;
|
|
1762
|
+
return _this;
|
|
1763
|
+
}
|
|
1764
|
+
return PublicKeyAlreadyExists;
|
|
1765
|
+
}(__BaseException));
|
|
1766
|
+
export { PublicKeyAlreadyExists };
|
|
1767
|
+
var TooManyPublicKeys = (function (_super) {
|
|
1768
|
+
__extends(TooManyPublicKeys, _super);
|
|
1769
|
+
function TooManyPublicKeys(opts) {
|
|
1770
|
+
var _this = _super.call(this, __assign({ name: "TooManyPublicKeys", $fault: "client" }, opts)) || this;
|
|
1771
|
+
_this.name = "TooManyPublicKeys";
|
|
1772
|
+
_this.$fault = "client";
|
|
1773
|
+
Object.setPrototypeOf(_this, TooManyPublicKeys.prototype);
|
|
1774
|
+
_this.Message = opts.Message;
|
|
1775
|
+
return _this;
|
|
1776
|
+
}
|
|
1777
|
+
return TooManyPublicKeys;
|
|
1778
|
+
}(__BaseException));
|
|
1779
|
+
export { TooManyPublicKeys };
|
|
492
1780
|
export var KinesisStreamConfig;
|
|
493
1781
|
(function (KinesisStreamConfig) {
|
|
494
1782
|
KinesisStreamConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -509,6 +1797,32 @@ export var CreateRealtimeLogConfigResult;
|
|
|
509
1797
|
(function (CreateRealtimeLogConfigResult) {
|
|
510
1798
|
CreateRealtimeLogConfigResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
511
1799
|
})(CreateRealtimeLogConfigResult || (CreateRealtimeLogConfigResult = {}));
|
|
1800
|
+
var RealtimeLogConfigAlreadyExists = (function (_super) {
|
|
1801
|
+
__extends(RealtimeLogConfigAlreadyExists, _super);
|
|
1802
|
+
function RealtimeLogConfigAlreadyExists(opts) {
|
|
1803
|
+
var _this = _super.call(this, __assign({ name: "RealtimeLogConfigAlreadyExists", $fault: "client" }, opts)) || this;
|
|
1804
|
+
_this.name = "RealtimeLogConfigAlreadyExists";
|
|
1805
|
+
_this.$fault = "client";
|
|
1806
|
+
Object.setPrototypeOf(_this, RealtimeLogConfigAlreadyExists.prototype);
|
|
1807
|
+
_this.Message = opts.Message;
|
|
1808
|
+
return _this;
|
|
1809
|
+
}
|
|
1810
|
+
return RealtimeLogConfigAlreadyExists;
|
|
1811
|
+
}(__BaseException));
|
|
1812
|
+
export { RealtimeLogConfigAlreadyExists };
|
|
1813
|
+
var TooManyRealtimeLogConfigs = (function (_super) {
|
|
1814
|
+
__extends(TooManyRealtimeLogConfigs, _super);
|
|
1815
|
+
function TooManyRealtimeLogConfigs(opts) {
|
|
1816
|
+
var _this = _super.call(this, __assign({ name: "TooManyRealtimeLogConfigs", $fault: "client" }, opts)) || this;
|
|
1817
|
+
_this.name = "TooManyRealtimeLogConfigs";
|
|
1818
|
+
_this.$fault = "client";
|
|
1819
|
+
Object.setPrototypeOf(_this, TooManyRealtimeLogConfigs.prototype);
|
|
1820
|
+
_this.Message = opts.Message;
|
|
1821
|
+
return _this;
|
|
1822
|
+
}
|
|
1823
|
+
return TooManyRealtimeLogConfigs;
|
|
1824
|
+
}(__BaseException));
|
|
1825
|
+
export { TooManyRealtimeLogConfigs };
|
|
512
1826
|
export var ResponseHeadersPolicyAccessControlAllowHeaders;
|
|
513
1827
|
(function (ResponseHeadersPolicyAccessControlAllowHeaders) {
|
|
514
1828
|
ResponseHeadersPolicyAccessControlAllowHeaders.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -597,6 +1911,45 @@ export var CreateResponseHeadersPolicyResult;
|
|
|
597
1911
|
(function (CreateResponseHeadersPolicyResult) {
|
|
598
1912
|
CreateResponseHeadersPolicyResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
599
1913
|
})(CreateResponseHeadersPolicyResult || (CreateResponseHeadersPolicyResult = {}));
|
|
1914
|
+
var ResponseHeadersPolicyAlreadyExists = (function (_super) {
|
|
1915
|
+
__extends(ResponseHeadersPolicyAlreadyExists, _super);
|
|
1916
|
+
function ResponseHeadersPolicyAlreadyExists(opts) {
|
|
1917
|
+
var _this = _super.call(this, __assign({ name: "ResponseHeadersPolicyAlreadyExists", $fault: "client" }, opts)) || this;
|
|
1918
|
+
_this.name = "ResponseHeadersPolicyAlreadyExists";
|
|
1919
|
+
_this.$fault = "client";
|
|
1920
|
+
Object.setPrototypeOf(_this, ResponseHeadersPolicyAlreadyExists.prototype);
|
|
1921
|
+
_this.Message = opts.Message;
|
|
1922
|
+
return _this;
|
|
1923
|
+
}
|
|
1924
|
+
return ResponseHeadersPolicyAlreadyExists;
|
|
1925
|
+
}(__BaseException));
|
|
1926
|
+
export { ResponseHeadersPolicyAlreadyExists };
|
|
1927
|
+
var TooManyCustomHeadersInResponseHeadersPolicy = (function (_super) {
|
|
1928
|
+
__extends(TooManyCustomHeadersInResponseHeadersPolicy, _super);
|
|
1929
|
+
function TooManyCustomHeadersInResponseHeadersPolicy(opts) {
|
|
1930
|
+
var _this = _super.call(this, __assign({ name: "TooManyCustomHeadersInResponseHeadersPolicy", $fault: "client" }, opts)) || this;
|
|
1931
|
+
_this.name = "TooManyCustomHeadersInResponseHeadersPolicy";
|
|
1932
|
+
_this.$fault = "client";
|
|
1933
|
+
Object.setPrototypeOf(_this, TooManyCustomHeadersInResponseHeadersPolicy.prototype);
|
|
1934
|
+
_this.Message = opts.Message;
|
|
1935
|
+
return _this;
|
|
1936
|
+
}
|
|
1937
|
+
return TooManyCustomHeadersInResponseHeadersPolicy;
|
|
1938
|
+
}(__BaseException));
|
|
1939
|
+
export { TooManyCustomHeadersInResponseHeadersPolicy };
|
|
1940
|
+
var TooManyResponseHeadersPolicies = (function (_super) {
|
|
1941
|
+
__extends(TooManyResponseHeadersPolicies, _super);
|
|
1942
|
+
function TooManyResponseHeadersPolicies(opts) {
|
|
1943
|
+
var _this = _super.call(this, __assign({ name: "TooManyResponseHeadersPolicies", $fault: "client" }, opts)) || this;
|
|
1944
|
+
_this.name = "TooManyResponseHeadersPolicies";
|
|
1945
|
+
_this.$fault = "client";
|
|
1946
|
+
Object.setPrototypeOf(_this, TooManyResponseHeadersPolicies.prototype);
|
|
1947
|
+
_this.Message = opts.Message;
|
|
1948
|
+
return _this;
|
|
1949
|
+
}
|
|
1950
|
+
return TooManyResponseHeadersPolicies;
|
|
1951
|
+
}(__BaseException));
|
|
1952
|
+
export { TooManyResponseHeadersPolicies };
|
|
600
1953
|
export var StreamingLoggingConfig;
|
|
601
1954
|
(function (StreamingLoggingConfig) {
|
|
602
1955
|
StreamingLoggingConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -621,6 +1974,45 @@ export var CreateStreamingDistributionResult;
|
|
|
621
1974
|
(function (CreateStreamingDistributionResult) {
|
|
622
1975
|
CreateStreamingDistributionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
623
1976
|
})(CreateStreamingDistributionResult || (CreateStreamingDistributionResult = {}));
|
|
1977
|
+
var StreamingDistributionAlreadyExists = (function (_super) {
|
|
1978
|
+
__extends(StreamingDistributionAlreadyExists, _super);
|
|
1979
|
+
function StreamingDistributionAlreadyExists(opts) {
|
|
1980
|
+
var _this = _super.call(this, __assign({ name: "StreamingDistributionAlreadyExists", $fault: "client" }, opts)) || this;
|
|
1981
|
+
_this.name = "StreamingDistributionAlreadyExists";
|
|
1982
|
+
_this.$fault = "client";
|
|
1983
|
+
Object.setPrototypeOf(_this, StreamingDistributionAlreadyExists.prototype);
|
|
1984
|
+
_this.Message = opts.Message;
|
|
1985
|
+
return _this;
|
|
1986
|
+
}
|
|
1987
|
+
return StreamingDistributionAlreadyExists;
|
|
1988
|
+
}(__BaseException));
|
|
1989
|
+
export { StreamingDistributionAlreadyExists };
|
|
1990
|
+
var TooManyStreamingDistributionCNAMEs = (function (_super) {
|
|
1991
|
+
__extends(TooManyStreamingDistributionCNAMEs, _super);
|
|
1992
|
+
function TooManyStreamingDistributionCNAMEs(opts) {
|
|
1993
|
+
var _this = _super.call(this, __assign({ name: "TooManyStreamingDistributionCNAMEs", $fault: "client" }, opts)) || this;
|
|
1994
|
+
_this.name = "TooManyStreamingDistributionCNAMEs";
|
|
1995
|
+
_this.$fault = "client";
|
|
1996
|
+
Object.setPrototypeOf(_this, TooManyStreamingDistributionCNAMEs.prototype);
|
|
1997
|
+
_this.Message = opts.Message;
|
|
1998
|
+
return _this;
|
|
1999
|
+
}
|
|
2000
|
+
return TooManyStreamingDistributionCNAMEs;
|
|
2001
|
+
}(__BaseException));
|
|
2002
|
+
export { TooManyStreamingDistributionCNAMEs };
|
|
2003
|
+
var TooManyStreamingDistributions = (function (_super) {
|
|
2004
|
+
__extends(TooManyStreamingDistributions, _super);
|
|
2005
|
+
function TooManyStreamingDistributions(opts) {
|
|
2006
|
+
var _this = _super.call(this, __assign({ name: "TooManyStreamingDistributions", $fault: "client" }, opts)) || this;
|
|
2007
|
+
_this.name = "TooManyStreamingDistributions";
|
|
2008
|
+
_this.$fault = "client";
|
|
2009
|
+
Object.setPrototypeOf(_this, TooManyStreamingDistributions.prototype);
|
|
2010
|
+
_this.Message = opts.Message;
|
|
2011
|
+
return _this;
|
|
2012
|
+
}
|
|
2013
|
+
return TooManyStreamingDistributions;
|
|
2014
|
+
}(__BaseException));
|
|
2015
|
+
export { TooManyStreamingDistributions };
|
|
624
2016
|
export var StreamingDistributionConfigWithTags;
|
|
625
2017
|
(function (StreamingDistributionConfigWithTags) {
|
|
626
2018
|
StreamingDistributionConfigWithTags.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -637,30 +2029,186 @@ export var DeleteCachePolicyRequest;
|
|
|
637
2029
|
(function (DeleteCachePolicyRequest) {
|
|
638
2030
|
DeleteCachePolicyRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
639
2031
|
})(DeleteCachePolicyRequest || (DeleteCachePolicyRequest = {}));
|
|
2032
|
+
var IllegalDelete = (function (_super) {
|
|
2033
|
+
__extends(IllegalDelete, _super);
|
|
2034
|
+
function IllegalDelete(opts) {
|
|
2035
|
+
var _this = _super.call(this, __assign({ name: "IllegalDelete", $fault: "client" }, opts)) || this;
|
|
2036
|
+
_this.name = "IllegalDelete";
|
|
2037
|
+
_this.$fault = "client";
|
|
2038
|
+
Object.setPrototypeOf(_this, IllegalDelete.prototype);
|
|
2039
|
+
_this.Message = opts.Message;
|
|
2040
|
+
return _this;
|
|
2041
|
+
}
|
|
2042
|
+
return IllegalDelete;
|
|
2043
|
+
}(__BaseException));
|
|
2044
|
+
export { IllegalDelete };
|
|
2045
|
+
var InvalidIfMatchVersion = (function (_super) {
|
|
2046
|
+
__extends(InvalidIfMatchVersion, _super);
|
|
2047
|
+
function InvalidIfMatchVersion(opts) {
|
|
2048
|
+
var _this = _super.call(this, __assign({ name: "InvalidIfMatchVersion", $fault: "client" }, opts)) || this;
|
|
2049
|
+
_this.name = "InvalidIfMatchVersion";
|
|
2050
|
+
_this.$fault = "client";
|
|
2051
|
+
Object.setPrototypeOf(_this, InvalidIfMatchVersion.prototype);
|
|
2052
|
+
_this.Message = opts.Message;
|
|
2053
|
+
return _this;
|
|
2054
|
+
}
|
|
2055
|
+
return InvalidIfMatchVersion;
|
|
2056
|
+
}(__BaseException));
|
|
2057
|
+
export { InvalidIfMatchVersion };
|
|
2058
|
+
var PreconditionFailed = (function (_super) {
|
|
2059
|
+
__extends(PreconditionFailed, _super);
|
|
2060
|
+
function PreconditionFailed(opts) {
|
|
2061
|
+
var _this = _super.call(this, __assign({ name: "PreconditionFailed", $fault: "client" }, opts)) || this;
|
|
2062
|
+
_this.name = "PreconditionFailed";
|
|
2063
|
+
_this.$fault = "client";
|
|
2064
|
+
Object.setPrototypeOf(_this, PreconditionFailed.prototype);
|
|
2065
|
+
_this.Message = opts.Message;
|
|
2066
|
+
return _this;
|
|
2067
|
+
}
|
|
2068
|
+
return PreconditionFailed;
|
|
2069
|
+
}(__BaseException));
|
|
2070
|
+
export { PreconditionFailed };
|
|
2071
|
+
var CloudFrontOriginAccessIdentityInUse = (function (_super) {
|
|
2072
|
+
__extends(CloudFrontOriginAccessIdentityInUse, _super);
|
|
2073
|
+
function CloudFrontOriginAccessIdentityInUse(opts) {
|
|
2074
|
+
var _this = _super.call(this, __assign({ name: "CloudFrontOriginAccessIdentityInUse", $fault: "client" }, opts)) || this;
|
|
2075
|
+
_this.name = "CloudFrontOriginAccessIdentityInUse";
|
|
2076
|
+
_this.$fault = "client";
|
|
2077
|
+
Object.setPrototypeOf(_this, CloudFrontOriginAccessIdentityInUse.prototype);
|
|
2078
|
+
_this.Message = opts.Message;
|
|
2079
|
+
return _this;
|
|
2080
|
+
}
|
|
2081
|
+
return CloudFrontOriginAccessIdentityInUse;
|
|
2082
|
+
}(__BaseException));
|
|
2083
|
+
export { CloudFrontOriginAccessIdentityInUse };
|
|
640
2084
|
export var DeleteCloudFrontOriginAccessIdentityRequest;
|
|
641
2085
|
(function (DeleteCloudFrontOriginAccessIdentityRequest) {
|
|
642
2086
|
DeleteCloudFrontOriginAccessIdentityRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
643
2087
|
})(DeleteCloudFrontOriginAccessIdentityRequest || (DeleteCloudFrontOriginAccessIdentityRequest = {}));
|
|
2088
|
+
var NoSuchCloudFrontOriginAccessIdentity = (function (_super) {
|
|
2089
|
+
__extends(NoSuchCloudFrontOriginAccessIdentity, _super);
|
|
2090
|
+
function NoSuchCloudFrontOriginAccessIdentity(opts) {
|
|
2091
|
+
var _this = _super.call(this, __assign({ name: "NoSuchCloudFrontOriginAccessIdentity", $fault: "client" }, opts)) || this;
|
|
2092
|
+
_this.name = "NoSuchCloudFrontOriginAccessIdentity";
|
|
2093
|
+
_this.$fault = "client";
|
|
2094
|
+
Object.setPrototypeOf(_this, NoSuchCloudFrontOriginAccessIdentity.prototype);
|
|
2095
|
+
_this.Message = opts.Message;
|
|
2096
|
+
return _this;
|
|
2097
|
+
}
|
|
2098
|
+
return NoSuchCloudFrontOriginAccessIdentity;
|
|
2099
|
+
}(__BaseException));
|
|
2100
|
+
export { NoSuchCloudFrontOriginAccessIdentity };
|
|
644
2101
|
export var DeleteDistributionRequest;
|
|
645
2102
|
(function (DeleteDistributionRequest) {
|
|
646
2103
|
DeleteDistributionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
647
2104
|
})(DeleteDistributionRequest || (DeleteDistributionRequest = {}));
|
|
2105
|
+
var DistributionNotDisabled = (function (_super) {
|
|
2106
|
+
__extends(DistributionNotDisabled, _super);
|
|
2107
|
+
function DistributionNotDisabled(opts) {
|
|
2108
|
+
var _this = _super.call(this, __assign({ name: "DistributionNotDisabled", $fault: "client" }, opts)) || this;
|
|
2109
|
+
_this.name = "DistributionNotDisabled";
|
|
2110
|
+
_this.$fault = "client";
|
|
2111
|
+
Object.setPrototypeOf(_this, DistributionNotDisabled.prototype);
|
|
2112
|
+
_this.Message = opts.Message;
|
|
2113
|
+
return _this;
|
|
2114
|
+
}
|
|
2115
|
+
return DistributionNotDisabled;
|
|
2116
|
+
}(__BaseException));
|
|
2117
|
+
export { DistributionNotDisabled };
|
|
648
2118
|
export var DeleteFieldLevelEncryptionConfigRequest;
|
|
649
2119
|
(function (DeleteFieldLevelEncryptionConfigRequest) {
|
|
650
2120
|
DeleteFieldLevelEncryptionConfigRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
651
2121
|
})(DeleteFieldLevelEncryptionConfigRequest || (DeleteFieldLevelEncryptionConfigRequest = {}));
|
|
2122
|
+
var FieldLevelEncryptionConfigInUse = (function (_super) {
|
|
2123
|
+
__extends(FieldLevelEncryptionConfigInUse, _super);
|
|
2124
|
+
function FieldLevelEncryptionConfigInUse(opts) {
|
|
2125
|
+
var _this = _super.call(this, __assign({ name: "FieldLevelEncryptionConfigInUse", $fault: "client" }, opts)) || this;
|
|
2126
|
+
_this.name = "FieldLevelEncryptionConfigInUse";
|
|
2127
|
+
_this.$fault = "client";
|
|
2128
|
+
Object.setPrototypeOf(_this, FieldLevelEncryptionConfigInUse.prototype);
|
|
2129
|
+
_this.Message = opts.Message;
|
|
2130
|
+
return _this;
|
|
2131
|
+
}
|
|
2132
|
+
return FieldLevelEncryptionConfigInUse;
|
|
2133
|
+
}(__BaseException));
|
|
2134
|
+
export { FieldLevelEncryptionConfigInUse };
|
|
652
2135
|
export var DeleteFieldLevelEncryptionProfileRequest;
|
|
653
2136
|
(function (DeleteFieldLevelEncryptionProfileRequest) {
|
|
654
2137
|
DeleteFieldLevelEncryptionProfileRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
655
2138
|
})(DeleteFieldLevelEncryptionProfileRequest || (DeleteFieldLevelEncryptionProfileRequest = {}));
|
|
2139
|
+
var FieldLevelEncryptionProfileInUse = (function (_super) {
|
|
2140
|
+
__extends(FieldLevelEncryptionProfileInUse, _super);
|
|
2141
|
+
function FieldLevelEncryptionProfileInUse(opts) {
|
|
2142
|
+
var _this = _super.call(this, __assign({ name: "FieldLevelEncryptionProfileInUse", $fault: "client" }, opts)) || this;
|
|
2143
|
+
_this.name = "FieldLevelEncryptionProfileInUse";
|
|
2144
|
+
_this.$fault = "client";
|
|
2145
|
+
Object.setPrototypeOf(_this, FieldLevelEncryptionProfileInUse.prototype);
|
|
2146
|
+
_this.Message = opts.Message;
|
|
2147
|
+
return _this;
|
|
2148
|
+
}
|
|
2149
|
+
return FieldLevelEncryptionProfileInUse;
|
|
2150
|
+
}(__BaseException));
|
|
2151
|
+
export { FieldLevelEncryptionProfileInUse };
|
|
656
2152
|
export var DeleteFunctionRequest;
|
|
657
2153
|
(function (DeleteFunctionRequest) {
|
|
658
2154
|
DeleteFunctionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
659
2155
|
})(DeleteFunctionRequest || (DeleteFunctionRequest = {}));
|
|
2156
|
+
var FunctionInUse = (function (_super) {
|
|
2157
|
+
__extends(FunctionInUse, _super);
|
|
2158
|
+
function FunctionInUse(opts) {
|
|
2159
|
+
var _this = _super.call(this, __assign({ name: "FunctionInUse", $fault: "client" }, opts)) || this;
|
|
2160
|
+
_this.name = "FunctionInUse";
|
|
2161
|
+
_this.$fault = "client";
|
|
2162
|
+
Object.setPrototypeOf(_this, FunctionInUse.prototype);
|
|
2163
|
+
_this.Message = opts.Message;
|
|
2164
|
+
return _this;
|
|
2165
|
+
}
|
|
2166
|
+
return FunctionInUse;
|
|
2167
|
+
}(__BaseException));
|
|
2168
|
+
export { FunctionInUse };
|
|
2169
|
+
var NoSuchFunctionExists = (function (_super) {
|
|
2170
|
+
__extends(NoSuchFunctionExists, _super);
|
|
2171
|
+
function NoSuchFunctionExists(opts) {
|
|
2172
|
+
var _this = _super.call(this, __assign({ name: "NoSuchFunctionExists", $fault: "client" }, opts)) || this;
|
|
2173
|
+
_this.name = "NoSuchFunctionExists";
|
|
2174
|
+
_this.$fault = "client";
|
|
2175
|
+
Object.setPrototypeOf(_this, NoSuchFunctionExists.prototype);
|
|
2176
|
+
_this.Message = opts.Message;
|
|
2177
|
+
return _this;
|
|
2178
|
+
}
|
|
2179
|
+
return NoSuchFunctionExists;
|
|
2180
|
+
}(__BaseException));
|
|
2181
|
+
export { NoSuchFunctionExists };
|
|
660
2182
|
export var DeleteKeyGroupRequest;
|
|
661
2183
|
(function (DeleteKeyGroupRequest) {
|
|
662
2184
|
DeleteKeyGroupRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
663
2185
|
})(DeleteKeyGroupRequest || (DeleteKeyGroupRequest = {}));
|
|
2186
|
+
var NoSuchResource = (function (_super) {
|
|
2187
|
+
__extends(NoSuchResource, _super);
|
|
2188
|
+
function NoSuchResource(opts) {
|
|
2189
|
+
var _this = _super.call(this, __assign({ name: "NoSuchResource", $fault: "client" }, opts)) || this;
|
|
2190
|
+
_this.name = "NoSuchResource";
|
|
2191
|
+
_this.$fault = "client";
|
|
2192
|
+
Object.setPrototypeOf(_this, NoSuchResource.prototype);
|
|
2193
|
+
_this.Message = opts.Message;
|
|
2194
|
+
return _this;
|
|
2195
|
+
}
|
|
2196
|
+
return NoSuchResource;
|
|
2197
|
+
}(__BaseException));
|
|
2198
|
+
export { NoSuchResource };
|
|
2199
|
+
var ResourceInUse = (function (_super) {
|
|
2200
|
+
__extends(ResourceInUse, _super);
|
|
2201
|
+
function ResourceInUse(opts) {
|
|
2202
|
+
var _this = _super.call(this, __assign({ name: "ResourceInUse", $fault: "client" }, opts)) || this;
|
|
2203
|
+
_this.name = "ResourceInUse";
|
|
2204
|
+
_this.$fault = "client";
|
|
2205
|
+
Object.setPrototypeOf(_this, ResourceInUse.prototype);
|
|
2206
|
+
_this.Message = opts.Message;
|
|
2207
|
+
return _this;
|
|
2208
|
+
}
|
|
2209
|
+
return ResourceInUse;
|
|
2210
|
+
}(__BaseException));
|
|
2211
|
+
export { ResourceInUse };
|
|
664
2212
|
export var DeleteMonitoringSubscriptionRequest;
|
|
665
2213
|
(function (DeleteMonitoringSubscriptionRequest) {
|
|
666
2214
|
DeleteMonitoringSubscriptionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|