@aws-sdk/client-cloudfront 3.716.0 → 3.723.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/dist-cjs/index.js +1555 -1126
- package/dist-es/CloudFrontClient.js +1 -0
- package/dist-es/models/models_0.js +363 -242
- package/dist-es/models/models_1.js +87 -58
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +46 -46
|
@@ -11,14 +11,15 @@ export const ResponseHeadersPolicyAccessControlAllowMethodsValues = {
|
|
|
11
11
|
PUT: "PUT",
|
|
12
12
|
};
|
|
13
13
|
export class AccessDenied extends __BaseException {
|
|
14
|
+
name = "AccessDenied";
|
|
15
|
+
$fault = "client";
|
|
16
|
+
Message;
|
|
14
17
|
constructor(opts) {
|
|
15
18
|
super({
|
|
16
19
|
name: "AccessDenied",
|
|
17
20
|
$fault: "client",
|
|
18
21
|
...opts,
|
|
19
22
|
});
|
|
20
|
-
this.name = "AccessDenied";
|
|
21
|
-
this.$fault = "client";
|
|
22
23
|
Object.setPrototypeOf(this, AccessDenied.prototype);
|
|
23
24
|
this.Message = opts.Message;
|
|
24
25
|
}
|
|
@@ -38,66 +39,71 @@ export const Method = {
|
|
|
38
39
|
PUT: "PUT",
|
|
39
40
|
};
|
|
40
41
|
export class IllegalUpdate extends __BaseException {
|
|
42
|
+
name = "IllegalUpdate";
|
|
43
|
+
$fault = "client";
|
|
44
|
+
Message;
|
|
41
45
|
constructor(opts) {
|
|
42
46
|
super({
|
|
43
47
|
name: "IllegalUpdate",
|
|
44
48
|
$fault: "client",
|
|
45
49
|
...opts,
|
|
46
50
|
});
|
|
47
|
-
this.name = "IllegalUpdate";
|
|
48
|
-
this.$fault = "client";
|
|
49
51
|
Object.setPrototypeOf(this, IllegalUpdate.prototype);
|
|
50
52
|
this.Message = opts.Message;
|
|
51
53
|
}
|
|
52
54
|
}
|
|
53
55
|
export class InvalidArgument extends __BaseException {
|
|
56
|
+
name = "InvalidArgument";
|
|
57
|
+
$fault = "client";
|
|
58
|
+
Message;
|
|
54
59
|
constructor(opts) {
|
|
55
60
|
super({
|
|
56
61
|
name: "InvalidArgument",
|
|
57
62
|
$fault: "client",
|
|
58
63
|
...opts,
|
|
59
64
|
});
|
|
60
|
-
this.name = "InvalidArgument";
|
|
61
|
-
this.$fault = "client";
|
|
62
65
|
Object.setPrototypeOf(this, InvalidArgument.prototype);
|
|
63
66
|
this.Message = opts.Message;
|
|
64
67
|
}
|
|
65
68
|
}
|
|
66
69
|
export class NoSuchDistribution extends __BaseException {
|
|
70
|
+
name = "NoSuchDistribution";
|
|
71
|
+
$fault = "client";
|
|
72
|
+
Message;
|
|
67
73
|
constructor(opts) {
|
|
68
74
|
super({
|
|
69
75
|
name: "NoSuchDistribution",
|
|
70
76
|
$fault: "client",
|
|
71
77
|
...opts,
|
|
72
78
|
});
|
|
73
|
-
this.name = "NoSuchDistribution";
|
|
74
|
-
this.$fault = "client";
|
|
75
79
|
Object.setPrototypeOf(this, NoSuchDistribution.prototype);
|
|
76
80
|
this.Message = opts.Message;
|
|
77
81
|
}
|
|
78
82
|
}
|
|
79
83
|
export class TooManyDistributionCNAMEs extends __BaseException {
|
|
84
|
+
name = "TooManyDistributionCNAMEs";
|
|
85
|
+
$fault = "client";
|
|
86
|
+
Message;
|
|
80
87
|
constructor(opts) {
|
|
81
88
|
super({
|
|
82
89
|
name: "TooManyDistributionCNAMEs",
|
|
83
90
|
$fault: "client",
|
|
84
91
|
...opts,
|
|
85
92
|
});
|
|
86
|
-
this.name = "TooManyDistributionCNAMEs";
|
|
87
|
-
this.$fault = "client";
|
|
88
93
|
Object.setPrototypeOf(this, TooManyDistributionCNAMEs.prototype);
|
|
89
94
|
this.Message = opts.Message;
|
|
90
95
|
}
|
|
91
96
|
}
|
|
92
97
|
export class BatchTooLarge extends __BaseException {
|
|
98
|
+
name = "BatchTooLarge";
|
|
99
|
+
$fault = "client";
|
|
100
|
+
Message;
|
|
93
101
|
constructor(opts) {
|
|
94
102
|
super({
|
|
95
103
|
name: "BatchTooLarge",
|
|
96
104
|
$fault: "client",
|
|
97
105
|
...opts,
|
|
98
106
|
});
|
|
99
|
-
this.name = "BatchTooLarge";
|
|
100
|
-
this.$fault = "client";
|
|
101
107
|
Object.setPrototypeOf(this, BatchTooLarge.prototype);
|
|
102
108
|
this.Message = opts.Message;
|
|
103
109
|
}
|
|
@@ -135,27 +141,29 @@ export const CachePolicyQueryStringBehavior = {
|
|
|
135
141
|
whitelist: "whitelist",
|
|
136
142
|
};
|
|
137
143
|
export class CachePolicyAlreadyExists extends __BaseException {
|
|
144
|
+
name = "CachePolicyAlreadyExists";
|
|
145
|
+
$fault = "client";
|
|
146
|
+
Message;
|
|
138
147
|
constructor(opts) {
|
|
139
148
|
super({
|
|
140
149
|
name: "CachePolicyAlreadyExists",
|
|
141
150
|
$fault: "client",
|
|
142
151
|
...opts,
|
|
143
152
|
});
|
|
144
|
-
this.name = "CachePolicyAlreadyExists";
|
|
145
|
-
this.$fault = "client";
|
|
146
153
|
Object.setPrototypeOf(this, CachePolicyAlreadyExists.prototype);
|
|
147
154
|
this.Message = opts.Message;
|
|
148
155
|
}
|
|
149
156
|
}
|
|
150
157
|
export class CachePolicyInUse extends __BaseException {
|
|
158
|
+
name = "CachePolicyInUse";
|
|
159
|
+
$fault = "client";
|
|
160
|
+
Message;
|
|
151
161
|
constructor(opts) {
|
|
152
162
|
super({
|
|
153
163
|
name: "CachePolicyInUse",
|
|
154
164
|
$fault: "client",
|
|
155
165
|
...opts,
|
|
156
166
|
});
|
|
157
|
-
this.name = "CachePolicyInUse";
|
|
158
|
-
this.$fault = "client";
|
|
159
167
|
Object.setPrototypeOf(this, CachePolicyInUse.prototype);
|
|
160
168
|
this.Message = opts.Message;
|
|
161
169
|
}
|
|
@@ -165,40 +173,43 @@ export const CachePolicyType = {
|
|
|
165
173
|
managed: "managed",
|
|
166
174
|
};
|
|
167
175
|
export class CannotChangeImmutablePublicKeyFields extends __BaseException {
|
|
176
|
+
name = "CannotChangeImmutablePublicKeyFields";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
Message;
|
|
168
179
|
constructor(opts) {
|
|
169
180
|
super({
|
|
170
181
|
name: "CannotChangeImmutablePublicKeyFields",
|
|
171
182
|
$fault: "client",
|
|
172
183
|
...opts,
|
|
173
184
|
});
|
|
174
|
-
this.name = "CannotChangeImmutablePublicKeyFields";
|
|
175
|
-
this.$fault = "client";
|
|
176
185
|
Object.setPrototypeOf(this, CannotChangeImmutablePublicKeyFields.prototype);
|
|
177
186
|
this.Message = opts.Message;
|
|
178
187
|
}
|
|
179
188
|
}
|
|
180
189
|
export class CannotDeleteEntityWhileInUse extends __BaseException {
|
|
190
|
+
name = "CannotDeleteEntityWhileInUse";
|
|
191
|
+
$fault = "client";
|
|
192
|
+
Message;
|
|
181
193
|
constructor(opts) {
|
|
182
194
|
super({
|
|
183
195
|
name: "CannotDeleteEntityWhileInUse",
|
|
184
196
|
$fault: "client",
|
|
185
197
|
...opts,
|
|
186
198
|
});
|
|
187
|
-
this.name = "CannotDeleteEntityWhileInUse";
|
|
188
|
-
this.$fault = "client";
|
|
189
199
|
Object.setPrototypeOf(this, CannotDeleteEntityWhileInUse.prototype);
|
|
190
200
|
this.Message = opts.Message;
|
|
191
201
|
}
|
|
192
202
|
}
|
|
193
203
|
export class CannotUpdateEntityWhileInUse extends __BaseException {
|
|
204
|
+
name = "CannotUpdateEntityWhileInUse";
|
|
205
|
+
$fault = "client";
|
|
206
|
+
Message;
|
|
194
207
|
constructor(opts) {
|
|
195
208
|
super({
|
|
196
209
|
name: "CannotUpdateEntityWhileInUse",
|
|
197
210
|
$fault: "client",
|
|
198
211
|
...opts,
|
|
199
212
|
});
|
|
200
|
-
this.name = "CannotUpdateEntityWhileInUse";
|
|
201
|
-
this.$fault = "client";
|
|
202
213
|
Object.setPrototypeOf(this, CannotUpdateEntityWhileInUse.prototype);
|
|
203
214
|
this.Message = opts.Message;
|
|
204
215
|
}
|
|
@@ -209,14 +220,15 @@ export const CertificateSource = {
|
|
|
209
220
|
iam: "iam",
|
|
210
221
|
};
|
|
211
222
|
export class CNAMEAlreadyExists extends __BaseException {
|
|
223
|
+
name = "CNAMEAlreadyExists";
|
|
224
|
+
$fault = "client";
|
|
225
|
+
Message;
|
|
212
226
|
constructor(opts) {
|
|
213
227
|
super({
|
|
214
228
|
name: "CNAMEAlreadyExists",
|
|
215
229
|
$fault: "client",
|
|
216
230
|
...opts,
|
|
217
231
|
});
|
|
218
|
-
this.name = "CNAMEAlreadyExists";
|
|
219
|
-
this.$fault = "client";
|
|
220
232
|
Object.setPrototypeOf(this, CNAMEAlreadyExists.prototype);
|
|
221
233
|
this.Message = opts.Message;
|
|
222
234
|
}
|
|
@@ -267,911 +279,981 @@ export const SSLSupportMethod = {
|
|
|
267
279
|
vip: "vip",
|
|
268
280
|
};
|
|
269
281
|
export class DistributionAlreadyExists extends __BaseException {
|
|
282
|
+
name = "DistributionAlreadyExists";
|
|
283
|
+
$fault = "client";
|
|
284
|
+
Message;
|
|
270
285
|
constructor(opts) {
|
|
271
286
|
super({
|
|
272
287
|
name: "DistributionAlreadyExists",
|
|
273
288
|
$fault: "client",
|
|
274
289
|
...opts,
|
|
275
290
|
});
|
|
276
|
-
this.name = "DistributionAlreadyExists";
|
|
277
|
-
this.$fault = "client";
|
|
278
291
|
Object.setPrototypeOf(this, DistributionAlreadyExists.prototype);
|
|
279
292
|
this.Message = opts.Message;
|
|
280
293
|
}
|
|
281
294
|
}
|
|
282
295
|
export class IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior extends __BaseException {
|
|
296
|
+
name = "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior";
|
|
297
|
+
$fault = "client";
|
|
298
|
+
Message;
|
|
283
299
|
constructor(opts) {
|
|
284
300
|
super({
|
|
285
301
|
name: "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior",
|
|
286
302
|
$fault: "client",
|
|
287
303
|
...opts,
|
|
288
304
|
});
|
|
289
|
-
this.name = "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior";
|
|
290
|
-
this.$fault = "client";
|
|
291
305
|
Object.setPrototypeOf(this, IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior.prototype);
|
|
292
306
|
this.Message = opts.Message;
|
|
293
307
|
}
|
|
294
308
|
}
|
|
295
309
|
export class InconsistentQuantities extends __BaseException {
|
|
310
|
+
name = "InconsistentQuantities";
|
|
311
|
+
$fault = "client";
|
|
312
|
+
Message;
|
|
296
313
|
constructor(opts) {
|
|
297
314
|
super({
|
|
298
315
|
name: "InconsistentQuantities",
|
|
299
316
|
$fault: "client",
|
|
300
317
|
...opts,
|
|
301
318
|
});
|
|
302
|
-
this.name = "InconsistentQuantities";
|
|
303
|
-
this.$fault = "client";
|
|
304
319
|
Object.setPrototypeOf(this, InconsistentQuantities.prototype);
|
|
305
320
|
this.Message = opts.Message;
|
|
306
321
|
}
|
|
307
322
|
}
|
|
308
323
|
export class InvalidDefaultRootObject extends __BaseException {
|
|
324
|
+
name = "InvalidDefaultRootObject";
|
|
325
|
+
$fault = "client";
|
|
326
|
+
Message;
|
|
309
327
|
constructor(opts) {
|
|
310
328
|
super({
|
|
311
329
|
name: "InvalidDefaultRootObject",
|
|
312
330
|
$fault: "client",
|
|
313
331
|
...opts,
|
|
314
332
|
});
|
|
315
|
-
this.name = "InvalidDefaultRootObject";
|
|
316
|
-
this.$fault = "client";
|
|
317
333
|
Object.setPrototypeOf(this, InvalidDefaultRootObject.prototype);
|
|
318
334
|
this.Message = opts.Message;
|
|
319
335
|
}
|
|
320
336
|
}
|
|
321
337
|
export class InvalidErrorCode extends __BaseException {
|
|
338
|
+
name = "InvalidErrorCode";
|
|
339
|
+
$fault = "client";
|
|
340
|
+
Message;
|
|
322
341
|
constructor(opts) {
|
|
323
342
|
super({
|
|
324
343
|
name: "InvalidErrorCode",
|
|
325
344
|
$fault: "client",
|
|
326
345
|
...opts,
|
|
327
346
|
});
|
|
328
|
-
this.name = "InvalidErrorCode";
|
|
329
|
-
this.$fault = "client";
|
|
330
347
|
Object.setPrototypeOf(this, InvalidErrorCode.prototype);
|
|
331
348
|
this.Message = opts.Message;
|
|
332
349
|
}
|
|
333
350
|
}
|
|
334
351
|
export class InvalidForwardCookies extends __BaseException {
|
|
352
|
+
name = "InvalidForwardCookies";
|
|
353
|
+
$fault = "client";
|
|
354
|
+
Message;
|
|
335
355
|
constructor(opts) {
|
|
336
356
|
super({
|
|
337
357
|
name: "InvalidForwardCookies",
|
|
338
358
|
$fault: "client",
|
|
339
359
|
...opts,
|
|
340
360
|
});
|
|
341
|
-
this.name = "InvalidForwardCookies";
|
|
342
|
-
this.$fault = "client";
|
|
343
361
|
Object.setPrototypeOf(this, InvalidForwardCookies.prototype);
|
|
344
362
|
this.Message = opts.Message;
|
|
345
363
|
}
|
|
346
364
|
}
|
|
347
365
|
export class InvalidFunctionAssociation extends __BaseException {
|
|
366
|
+
name = "InvalidFunctionAssociation";
|
|
367
|
+
$fault = "client";
|
|
368
|
+
Message;
|
|
348
369
|
constructor(opts) {
|
|
349
370
|
super({
|
|
350
371
|
name: "InvalidFunctionAssociation",
|
|
351
372
|
$fault: "client",
|
|
352
373
|
...opts,
|
|
353
374
|
});
|
|
354
|
-
this.name = "InvalidFunctionAssociation";
|
|
355
|
-
this.$fault = "client";
|
|
356
375
|
Object.setPrototypeOf(this, InvalidFunctionAssociation.prototype);
|
|
357
376
|
this.Message = opts.Message;
|
|
358
377
|
}
|
|
359
378
|
}
|
|
360
379
|
export class InvalidGeoRestrictionParameter extends __BaseException {
|
|
380
|
+
name = "InvalidGeoRestrictionParameter";
|
|
381
|
+
$fault = "client";
|
|
382
|
+
Message;
|
|
361
383
|
constructor(opts) {
|
|
362
384
|
super({
|
|
363
385
|
name: "InvalidGeoRestrictionParameter",
|
|
364
386
|
$fault: "client",
|
|
365
387
|
...opts,
|
|
366
388
|
});
|
|
367
|
-
this.name = "InvalidGeoRestrictionParameter";
|
|
368
|
-
this.$fault = "client";
|
|
369
389
|
Object.setPrototypeOf(this, InvalidGeoRestrictionParameter.prototype);
|
|
370
390
|
this.Message = opts.Message;
|
|
371
391
|
}
|
|
372
392
|
}
|
|
373
393
|
export class InvalidHeadersForS3Origin extends __BaseException {
|
|
394
|
+
name = "InvalidHeadersForS3Origin";
|
|
395
|
+
$fault = "client";
|
|
396
|
+
Message;
|
|
374
397
|
constructor(opts) {
|
|
375
398
|
super({
|
|
376
399
|
name: "InvalidHeadersForS3Origin",
|
|
377
400
|
$fault: "client",
|
|
378
401
|
...opts,
|
|
379
402
|
});
|
|
380
|
-
this.name = "InvalidHeadersForS3Origin";
|
|
381
|
-
this.$fault = "client";
|
|
382
403
|
Object.setPrototypeOf(this, InvalidHeadersForS3Origin.prototype);
|
|
383
404
|
this.Message = opts.Message;
|
|
384
405
|
}
|
|
385
406
|
}
|
|
386
407
|
export class InvalidIfMatchVersion extends __BaseException {
|
|
408
|
+
name = "InvalidIfMatchVersion";
|
|
409
|
+
$fault = "client";
|
|
410
|
+
Message;
|
|
387
411
|
constructor(opts) {
|
|
388
412
|
super({
|
|
389
413
|
name: "InvalidIfMatchVersion",
|
|
390
414
|
$fault: "client",
|
|
391
415
|
...opts,
|
|
392
416
|
});
|
|
393
|
-
this.name = "InvalidIfMatchVersion";
|
|
394
|
-
this.$fault = "client";
|
|
395
417
|
Object.setPrototypeOf(this, InvalidIfMatchVersion.prototype);
|
|
396
418
|
this.Message = opts.Message;
|
|
397
419
|
}
|
|
398
420
|
}
|
|
399
421
|
export class InvalidLambdaFunctionAssociation extends __BaseException {
|
|
422
|
+
name = "InvalidLambdaFunctionAssociation";
|
|
423
|
+
$fault = "client";
|
|
424
|
+
Message;
|
|
400
425
|
constructor(opts) {
|
|
401
426
|
super({
|
|
402
427
|
name: "InvalidLambdaFunctionAssociation",
|
|
403
428
|
$fault: "client",
|
|
404
429
|
...opts,
|
|
405
430
|
});
|
|
406
|
-
this.name = "InvalidLambdaFunctionAssociation";
|
|
407
|
-
this.$fault = "client";
|
|
408
431
|
Object.setPrototypeOf(this, InvalidLambdaFunctionAssociation.prototype);
|
|
409
432
|
this.Message = opts.Message;
|
|
410
433
|
}
|
|
411
434
|
}
|
|
412
435
|
export class InvalidLocationCode extends __BaseException {
|
|
436
|
+
name = "InvalidLocationCode";
|
|
437
|
+
$fault = "client";
|
|
438
|
+
Message;
|
|
413
439
|
constructor(opts) {
|
|
414
440
|
super({
|
|
415
441
|
name: "InvalidLocationCode",
|
|
416
442
|
$fault: "client",
|
|
417
443
|
...opts,
|
|
418
444
|
});
|
|
419
|
-
this.name = "InvalidLocationCode";
|
|
420
|
-
this.$fault = "client";
|
|
421
445
|
Object.setPrototypeOf(this, InvalidLocationCode.prototype);
|
|
422
446
|
this.Message = opts.Message;
|
|
423
447
|
}
|
|
424
448
|
}
|
|
425
449
|
export class InvalidMinimumProtocolVersion extends __BaseException {
|
|
450
|
+
name = "InvalidMinimumProtocolVersion";
|
|
451
|
+
$fault = "client";
|
|
452
|
+
Message;
|
|
426
453
|
constructor(opts) {
|
|
427
454
|
super({
|
|
428
455
|
name: "InvalidMinimumProtocolVersion",
|
|
429
456
|
$fault: "client",
|
|
430
457
|
...opts,
|
|
431
458
|
});
|
|
432
|
-
this.name = "InvalidMinimumProtocolVersion";
|
|
433
|
-
this.$fault = "client";
|
|
434
459
|
Object.setPrototypeOf(this, InvalidMinimumProtocolVersion.prototype);
|
|
435
460
|
this.Message = opts.Message;
|
|
436
461
|
}
|
|
437
462
|
}
|
|
438
463
|
export class InvalidOrigin extends __BaseException {
|
|
464
|
+
name = "InvalidOrigin";
|
|
465
|
+
$fault = "client";
|
|
466
|
+
Message;
|
|
439
467
|
constructor(opts) {
|
|
440
468
|
super({
|
|
441
469
|
name: "InvalidOrigin",
|
|
442
470
|
$fault: "client",
|
|
443
471
|
...opts,
|
|
444
472
|
});
|
|
445
|
-
this.name = "InvalidOrigin";
|
|
446
|
-
this.$fault = "client";
|
|
447
473
|
Object.setPrototypeOf(this, InvalidOrigin.prototype);
|
|
448
474
|
this.Message = opts.Message;
|
|
449
475
|
}
|
|
450
476
|
}
|
|
451
477
|
export class InvalidOriginAccessControl extends __BaseException {
|
|
478
|
+
name = "InvalidOriginAccessControl";
|
|
479
|
+
$fault = "client";
|
|
480
|
+
Message;
|
|
452
481
|
constructor(opts) {
|
|
453
482
|
super({
|
|
454
483
|
name: "InvalidOriginAccessControl",
|
|
455
484
|
$fault: "client",
|
|
456
485
|
...opts,
|
|
457
486
|
});
|
|
458
|
-
this.name = "InvalidOriginAccessControl";
|
|
459
|
-
this.$fault = "client";
|
|
460
487
|
Object.setPrototypeOf(this, InvalidOriginAccessControl.prototype);
|
|
461
488
|
this.Message = opts.Message;
|
|
462
489
|
}
|
|
463
490
|
}
|
|
464
491
|
export class InvalidOriginAccessIdentity extends __BaseException {
|
|
492
|
+
name = "InvalidOriginAccessIdentity";
|
|
493
|
+
$fault = "client";
|
|
494
|
+
Message;
|
|
465
495
|
constructor(opts) {
|
|
466
496
|
super({
|
|
467
497
|
name: "InvalidOriginAccessIdentity",
|
|
468
498
|
$fault: "client",
|
|
469
499
|
...opts,
|
|
470
500
|
});
|
|
471
|
-
this.name = "InvalidOriginAccessIdentity";
|
|
472
|
-
this.$fault = "client";
|
|
473
501
|
Object.setPrototypeOf(this, InvalidOriginAccessIdentity.prototype);
|
|
474
502
|
this.Message = opts.Message;
|
|
475
503
|
}
|
|
476
504
|
}
|
|
477
505
|
export class InvalidOriginKeepaliveTimeout extends __BaseException {
|
|
506
|
+
name = "InvalidOriginKeepaliveTimeout";
|
|
507
|
+
$fault = "client";
|
|
508
|
+
Message;
|
|
478
509
|
constructor(opts) {
|
|
479
510
|
super({
|
|
480
511
|
name: "InvalidOriginKeepaliveTimeout",
|
|
481
512
|
$fault: "client",
|
|
482
513
|
...opts,
|
|
483
514
|
});
|
|
484
|
-
this.name = "InvalidOriginKeepaliveTimeout";
|
|
485
|
-
this.$fault = "client";
|
|
486
515
|
Object.setPrototypeOf(this, InvalidOriginKeepaliveTimeout.prototype);
|
|
487
516
|
this.Message = opts.Message;
|
|
488
517
|
}
|
|
489
518
|
}
|
|
490
519
|
export class InvalidOriginReadTimeout extends __BaseException {
|
|
520
|
+
name = "InvalidOriginReadTimeout";
|
|
521
|
+
$fault = "client";
|
|
522
|
+
Message;
|
|
491
523
|
constructor(opts) {
|
|
492
524
|
super({
|
|
493
525
|
name: "InvalidOriginReadTimeout",
|
|
494
526
|
$fault: "client",
|
|
495
527
|
...opts,
|
|
496
528
|
});
|
|
497
|
-
this.name = "InvalidOriginReadTimeout";
|
|
498
|
-
this.$fault = "client";
|
|
499
529
|
Object.setPrototypeOf(this, InvalidOriginReadTimeout.prototype);
|
|
500
530
|
this.Message = opts.Message;
|
|
501
531
|
}
|
|
502
532
|
}
|
|
503
533
|
export class InvalidProtocolSettings extends __BaseException {
|
|
534
|
+
name = "InvalidProtocolSettings";
|
|
535
|
+
$fault = "client";
|
|
536
|
+
Message;
|
|
504
537
|
constructor(opts) {
|
|
505
538
|
super({
|
|
506
539
|
name: "InvalidProtocolSettings",
|
|
507
540
|
$fault: "client",
|
|
508
541
|
...opts,
|
|
509
542
|
});
|
|
510
|
-
this.name = "InvalidProtocolSettings";
|
|
511
|
-
this.$fault = "client";
|
|
512
543
|
Object.setPrototypeOf(this, InvalidProtocolSettings.prototype);
|
|
513
544
|
this.Message = opts.Message;
|
|
514
545
|
}
|
|
515
546
|
}
|
|
516
547
|
export class InvalidQueryStringParameters extends __BaseException {
|
|
548
|
+
name = "InvalidQueryStringParameters";
|
|
549
|
+
$fault = "client";
|
|
550
|
+
Message;
|
|
517
551
|
constructor(opts) {
|
|
518
552
|
super({
|
|
519
553
|
name: "InvalidQueryStringParameters",
|
|
520
554
|
$fault: "client",
|
|
521
555
|
...opts,
|
|
522
556
|
});
|
|
523
|
-
this.name = "InvalidQueryStringParameters";
|
|
524
|
-
this.$fault = "client";
|
|
525
557
|
Object.setPrototypeOf(this, InvalidQueryStringParameters.prototype);
|
|
526
558
|
this.Message = opts.Message;
|
|
527
559
|
}
|
|
528
560
|
}
|
|
529
561
|
export class InvalidRelativePath extends __BaseException {
|
|
562
|
+
name = "InvalidRelativePath";
|
|
563
|
+
$fault = "client";
|
|
564
|
+
Message;
|
|
530
565
|
constructor(opts) {
|
|
531
566
|
super({
|
|
532
567
|
name: "InvalidRelativePath",
|
|
533
568
|
$fault: "client",
|
|
534
569
|
...opts,
|
|
535
570
|
});
|
|
536
|
-
this.name = "InvalidRelativePath";
|
|
537
|
-
this.$fault = "client";
|
|
538
571
|
Object.setPrototypeOf(this, InvalidRelativePath.prototype);
|
|
539
572
|
this.Message = opts.Message;
|
|
540
573
|
}
|
|
541
574
|
}
|
|
542
575
|
export class InvalidRequiredProtocol extends __BaseException {
|
|
576
|
+
name = "InvalidRequiredProtocol";
|
|
577
|
+
$fault = "client";
|
|
578
|
+
Message;
|
|
543
579
|
constructor(opts) {
|
|
544
580
|
super({
|
|
545
581
|
name: "InvalidRequiredProtocol",
|
|
546
582
|
$fault: "client",
|
|
547
583
|
...opts,
|
|
548
584
|
});
|
|
549
|
-
this.name = "InvalidRequiredProtocol";
|
|
550
|
-
this.$fault = "client";
|
|
551
585
|
Object.setPrototypeOf(this, InvalidRequiredProtocol.prototype);
|
|
552
586
|
this.Message = opts.Message;
|
|
553
587
|
}
|
|
554
588
|
}
|
|
555
589
|
export class InvalidResponseCode extends __BaseException {
|
|
590
|
+
name = "InvalidResponseCode";
|
|
591
|
+
$fault = "client";
|
|
592
|
+
Message;
|
|
556
593
|
constructor(opts) {
|
|
557
594
|
super({
|
|
558
595
|
name: "InvalidResponseCode",
|
|
559
596
|
$fault: "client",
|
|
560
597
|
...opts,
|
|
561
598
|
});
|
|
562
|
-
this.name = "InvalidResponseCode";
|
|
563
|
-
this.$fault = "client";
|
|
564
599
|
Object.setPrototypeOf(this, InvalidResponseCode.prototype);
|
|
565
600
|
this.Message = opts.Message;
|
|
566
601
|
}
|
|
567
602
|
}
|
|
568
603
|
export class InvalidTTLOrder extends __BaseException {
|
|
604
|
+
name = "InvalidTTLOrder";
|
|
605
|
+
$fault = "client";
|
|
606
|
+
Message;
|
|
569
607
|
constructor(opts) {
|
|
570
608
|
super({
|
|
571
609
|
name: "InvalidTTLOrder",
|
|
572
610
|
$fault: "client",
|
|
573
611
|
...opts,
|
|
574
612
|
});
|
|
575
|
-
this.name = "InvalidTTLOrder";
|
|
576
|
-
this.$fault = "client";
|
|
577
613
|
Object.setPrototypeOf(this, InvalidTTLOrder.prototype);
|
|
578
614
|
this.Message = opts.Message;
|
|
579
615
|
}
|
|
580
616
|
}
|
|
581
617
|
export class InvalidViewerCertificate extends __BaseException {
|
|
618
|
+
name = "InvalidViewerCertificate";
|
|
619
|
+
$fault = "client";
|
|
620
|
+
Message;
|
|
582
621
|
constructor(opts) {
|
|
583
622
|
super({
|
|
584
623
|
name: "InvalidViewerCertificate",
|
|
585
624
|
$fault: "client",
|
|
586
625
|
...opts,
|
|
587
626
|
});
|
|
588
|
-
this.name = "InvalidViewerCertificate";
|
|
589
|
-
this.$fault = "client";
|
|
590
627
|
Object.setPrototypeOf(this, InvalidViewerCertificate.prototype);
|
|
591
628
|
this.Message = opts.Message;
|
|
592
629
|
}
|
|
593
630
|
}
|
|
594
631
|
export class InvalidWebACLId extends __BaseException {
|
|
632
|
+
name = "InvalidWebACLId";
|
|
633
|
+
$fault = "client";
|
|
634
|
+
Message;
|
|
595
635
|
constructor(opts) {
|
|
596
636
|
super({
|
|
597
637
|
name: "InvalidWebACLId",
|
|
598
638
|
$fault: "client",
|
|
599
639
|
...opts,
|
|
600
640
|
});
|
|
601
|
-
this.name = "InvalidWebACLId";
|
|
602
|
-
this.$fault = "client";
|
|
603
641
|
Object.setPrototypeOf(this, InvalidWebACLId.prototype);
|
|
604
642
|
this.Message = opts.Message;
|
|
605
643
|
}
|
|
606
644
|
}
|
|
607
645
|
export class MissingBody extends __BaseException {
|
|
646
|
+
name = "MissingBody";
|
|
647
|
+
$fault = "client";
|
|
648
|
+
Message;
|
|
608
649
|
constructor(opts) {
|
|
609
650
|
super({
|
|
610
651
|
name: "MissingBody",
|
|
611
652
|
$fault: "client",
|
|
612
653
|
...opts,
|
|
613
654
|
});
|
|
614
|
-
this.name = "MissingBody";
|
|
615
|
-
this.$fault = "client";
|
|
616
655
|
Object.setPrototypeOf(this, MissingBody.prototype);
|
|
617
656
|
this.Message = opts.Message;
|
|
618
657
|
}
|
|
619
658
|
}
|
|
620
659
|
export class NoSuchCachePolicy extends __BaseException {
|
|
660
|
+
name = "NoSuchCachePolicy";
|
|
661
|
+
$fault = "client";
|
|
662
|
+
Message;
|
|
621
663
|
constructor(opts) {
|
|
622
664
|
super({
|
|
623
665
|
name: "NoSuchCachePolicy",
|
|
624
666
|
$fault: "client",
|
|
625
667
|
...opts,
|
|
626
668
|
});
|
|
627
|
-
this.name = "NoSuchCachePolicy";
|
|
628
|
-
this.$fault = "client";
|
|
629
669
|
Object.setPrototypeOf(this, NoSuchCachePolicy.prototype);
|
|
630
670
|
this.Message = opts.Message;
|
|
631
671
|
}
|
|
632
672
|
}
|
|
633
673
|
export class NoSuchFieldLevelEncryptionConfig extends __BaseException {
|
|
674
|
+
name = "NoSuchFieldLevelEncryptionConfig";
|
|
675
|
+
$fault = "client";
|
|
676
|
+
Message;
|
|
634
677
|
constructor(opts) {
|
|
635
678
|
super({
|
|
636
679
|
name: "NoSuchFieldLevelEncryptionConfig",
|
|
637
680
|
$fault: "client",
|
|
638
681
|
...opts,
|
|
639
682
|
});
|
|
640
|
-
this.name = "NoSuchFieldLevelEncryptionConfig";
|
|
641
|
-
this.$fault = "client";
|
|
642
683
|
Object.setPrototypeOf(this, NoSuchFieldLevelEncryptionConfig.prototype);
|
|
643
684
|
this.Message = opts.Message;
|
|
644
685
|
}
|
|
645
686
|
}
|
|
646
687
|
export class NoSuchOrigin extends __BaseException {
|
|
688
|
+
name = "NoSuchOrigin";
|
|
689
|
+
$fault = "client";
|
|
690
|
+
Message;
|
|
647
691
|
constructor(opts) {
|
|
648
692
|
super({
|
|
649
693
|
name: "NoSuchOrigin",
|
|
650
694
|
$fault: "client",
|
|
651
695
|
...opts,
|
|
652
696
|
});
|
|
653
|
-
this.name = "NoSuchOrigin";
|
|
654
|
-
this.$fault = "client";
|
|
655
697
|
Object.setPrototypeOf(this, NoSuchOrigin.prototype);
|
|
656
698
|
this.Message = opts.Message;
|
|
657
699
|
}
|
|
658
700
|
}
|
|
659
701
|
export class NoSuchOriginRequestPolicy extends __BaseException {
|
|
702
|
+
name = "NoSuchOriginRequestPolicy";
|
|
703
|
+
$fault = "client";
|
|
704
|
+
Message;
|
|
660
705
|
constructor(opts) {
|
|
661
706
|
super({
|
|
662
707
|
name: "NoSuchOriginRequestPolicy",
|
|
663
708
|
$fault: "client",
|
|
664
709
|
...opts,
|
|
665
710
|
});
|
|
666
|
-
this.name = "NoSuchOriginRequestPolicy";
|
|
667
|
-
this.$fault = "client";
|
|
668
711
|
Object.setPrototypeOf(this, NoSuchOriginRequestPolicy.prototype);
|
|
669
712
|
this.Message = opts.Message;
|
|
670
713
|
}
|
|
671
714
|
}
|
|
672
715
|
export class NoSuchRealtimeLogConfig extends __BaseException {
|
|
716
|
+
name = "NoSuchRealtimeLogConfig";
|
|
717
|
+
$fault = "client";
|
|
718
|
+
Message;
|
|
673
719
|
constructor(opts) {
|
|
674
720
|
super({
|
|
675
721
|
name: "NoSuchRealtimeLogConfig",
|
|
676
722
|
$fault: "client",
|
|
677
723
|
...opts,
|
|
678
724
|
});
|
|
679
|
-
this.name = "NoSuchRealtimeLogConfig";
|
|
680
|
-
this.$fault = "client";
|
|
681
725
|
Object.setPrototypeOf(this, NoSuchRealtimeLogConfig.prototype);
|
|
682
726
|
this.Message = opts.Message;
|
|
683
727
|
}
|
|
684
728
|
}
|
|
685
729
|
export class NoSuchResponseHeadersPolicy extends __BaseException {
|
|
730
|
+
name = "NoSuchResponseHeadersPolicy";
|
|
731
|
+
$fault = "client";
|
|
732
|
+
Message;
|
|
686
733
|
constructor(opts) {
|
|
687
734
|
super({
|
|
688
735
|
name: "NoSuchResponseHeadersPolicy",
|
|
689
736
|
$fault: "client",
|
|
690
737
|
...opts,
|
|
691
738
|
});
|
|
692
|
-
this.name = "NoSuchResponseHeadersPolicy";
|
|
693
|
-
this.$fault = "client";
|
|
694
739
|
Object.setPrototypeOf(this, NoSuchResponseHeadersPolicy.prototype);
|
|
695
740
|
this.Message = opts.Message;
|
|
696
741
|
}
|
|
697
742
|
}
|
|
698
743
|
export class PreconditionFailed extends __BaseException {
|
|
744
|
+
name = "PreconditionFailed";
|
|
745
|
+
$fault = "client";
|
|
746
|
+
Message;
|
|
699
747
|
constructor(opts) {
|
|
700
748
|
super({
|
|
701
749
|
name: "PreconditionFailed",
|
|
702
750
|
$fault: "client",
|
|
703
751
|
...opts,
|
|
704
752
|
});
|
|
705
|
-
this.name = "PreconditionFailed";
|
|
706
|
-
this.$fault = "client";
|
|
707
753
|
Object.setPrototypeOf(this, PreconditionFailed.prototype);
|
|
708
754
|
this.Message = opts.Message;
|
|
709
755
|
}
|
|
710
756
|
}
|
|
711
757
|
export class RealtimeLogConfigOwnerMismatch extends __BaseException {
|
|
758
|
+
name = "RealtimeLogConfigOwnerMismatch";
|
|
759
|
+
$fault = "client";
|
|
760
|
+
Message;
|
|
712
761
|
constructor(opts) {
|
|
713
762
|
super({
|
|
714
763
|
name: "RealtimeLogConfigOwnerMismatch",
|
|
715
764
|
$fault: "client",
|
|
716
765
|
...opts,
|
|
717
766
|
});
|
|
718
|
-
this.name = "RealtimeLogConfigOwnerMismatch";
|
|
719
|
-
this.$fault = "client";
|
|
720
767
|
Object.setPrototypeOf(this, RealtimeLogConfigOwnerMismatch.prototype);
|
|
721
768
|
this.Message = opts.Message;
|
|
722
769
|
}
|
|
723
770
|
}
|
|
724
771
|
export class TooManyCacheBehaviors extends __BaseException {
|
|
772
|
+
name = "TooManyCacheBehaviors";
|
|
773
|
+
$fault = "client";
|
|
774
|
+
Message;
|
|
725
775
|
constructor(opts) {
|
|
726
776
|
super({
|
|
727
777
|
name: "TooManyCacheBehaviors",
|
|
728
778
|
$fault: "client",
|
|
729
779
|
...opts,
|
|
730
780
|
});
|
|
731
|
-
this.name = "TooManyCacheBehaviors";
|
|
732
|
-
this.$fault = "client";
|
|
733
781
|
Object.setPrototypeOf(this, TooManyCacheBehaviors.prototype);
|
|
734
782
|
this.Message = opts.Message;
|
|
735
783
|
}
|
|
736
784
|
}
|
|
737
785
|
export class TooManyCertificates extends __BaseException {
|
|
786
|
+
name = "TooManyCertificates";
|
|
787
|
+
$fault = "client";
|
|
788
|
+
Message;
|
|
738
789
|
constructor(opts) {
|
|
739
790
|
super({
|
|
740
791
|
name: "TooManyCertificates",
|
|
741
792
|
$fault: "client",
|
|
742
793
|
...opts,
|
|
743
794
|
});
|
|
744
|
-
this.name = "TooManyCertificates";
|
|
745
|
-
this.$fault = "client";
|
|
746
795
|
Object.setPrototypeOf(this, TooManyCertificates.prototype);
|
|
747
796
|
this.Message = opts.Message;
|
|
748
797
|
}
|
|
749
798
|
}
|
|
750
799
|
export class TooManyCookieNamesInWhiteList extends __BaseException {
|
|
800
|
+
name = "TooManyCookieNamesInWhiteList";
|
|
801
|
+
$fault = "client";
|
|
802
|
+
Message;
|
|
751
803
|
constructor(opts) {
|
|
752
804
|
super({
|
|
753
805
|
name: "TooManyCookieNamesInWhiteList",
|
|
754
806
|
$fault: "client",
|
|
755
807
|
...opts,
|
|
756
808
|
});
|
|
757
|
-
this.name = "TooManyCookieNamesInWhiteList";
|
|
758
|
-
this.$fault = "client";
|
|
759
809
|
Object.setPrototypeOf(this, TooManyCookieNamesInWhiteList.prototype);
|
|
760
810
|
this.Message = opts.Message;
|
|
761
811
|
}
|
|
762
812
|
}
|
|
763
813
|
export class TooManyDistributions extends __BaseException {
|
|
814
|
+
name = "TooManyDistributions";
|
|
815
|
+
$fault = "client";
|
|
816
|
+
Message;
|
|
764
817
|
constructor(opts) {
|
|
765
818
|
super({
|
|
766
819
|
name: "TooManyDistributions",
|
|
767
820
|
$fault: "client",
|
|
768
821
|
...opts,
|
|
769
822
|
});
|
|
770
|
-
this.name = "TooManyDistributions";
|
|
771
|
-
this.$fault = "client";
|
|
772
823
|
Object.setPrototypeOf(this, TooManyDistributions.prototype);
|
|
773
824
|
this.Message = opts.Message;
|
|
774
825
|
}
|
|
775
826
|
}
|
|
776
827
|
export class TooManyDistributionsAssociatedToCachePolicy extends __BaseException {
|
|
828
|
+
name = "TooManyDistributionsAssociatedToCachePolicy";
|
|
829
|
+
$fault = "client";
|
|
830
|
+
Message;
|
|
777
831
|
constructor(opts) {
|
|
778
832
|
super({
|
|
779
833
|
name: "TooManyDistributionsAssociatedToCachePolicy",
|
|
780
834
|
$fault: "client",
|
|
781
835
|
...opts,
|
|
782
836
|
});
|
|
783
|
-
this.name = "TooManyDistributionsAssociatedToCachePolicy";
|
|
784
|
-
this.$fault = "client";
|
|
785
837
|
Object.setPrototypeOf(this, TooManyDistributionsAssociatedToCachePolicy.prototype);
|
|
786
838
|
this.Message = opts.Message;
|
|
787
839
|
}
|
|
788
840
|
}
|
|
789
841
|
export class TooManyDistributionsAssociatedToFieldLevelEncryptionConfig extends __BaseException {
|
|
842
|
+
name = "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig";
|
|
843
|
+
$fault = "client";
|
|
844
|
+
Message;
|
|
790
845
|
constructor(opts) {
|
|
791
846
|
super({
|
|
792
847
|
name: "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig",
|
|
793
848
|
$fault: "client",
|
|
794
849
|
...opts,
|
|
795
850
|
});
|
|
796
|
-
this.name = "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig";
|
|
797
|
-
this.$fault = "client";
|
|
798
851
|
Object.setPrototypeOf(this, TooManyDistributionsAssociatedToFieldLevelEncryptionConfig.prototype);
|
|
799
852
|
this.Message = opts.Message;
|
|
800
853
|
}
|
|
801
854
|
}
|
|
802
855
|
export class TooManyDistributionsAssociatedToKeyGroup extends __BaseException {
|
|
856
|
+
name = "TooManyDistributionsAssociatedToKeyGroup";
|
|
857
|
+
$fault = "client";
|
|
858
|
+
Message;
|
|
803
859
|
constructor(opts) {
|
|
804
860
|
super({
|
|
805
861
|
name: "TooManyDistributionsAssociatedToKeyGroup",
|
|
806
862
|
$fault: "client",
|
|
807
863
|
...opts,
|
|
808
864
|
});
|
|
809
|
-
this.name = "TooManyDistributionsAssociatedToKeyGroup";
|
|
810
|
-
this.$fault = "client";
|
|
811
865
|
Object.setPrototypeOf(this, TooManyDistributionsAssociatedToKeyGroup.prototype);
|
|
812
866
|
this.Message = opts.Message;
|
|
813
867
|
}
|
|
814
868
|
}
|
|
815
869
|
export class TooManyDistributionsAssociatedToOriginAccessControl extends __BaseException {
|
|
870
|
+
name = "TooManyDistributionsAssociatedToOriginAccessControl";
|
|
871
|
+
$fault = "client";
|
|
872
|
+
Message;
|
|
816
873
|
constructor(opts) {
|
|
817
874
|
super({
|
|
818
875
|
name: "TooManyDistributionsAssociatedToOriginAccessControl",
|
|
819
876
|
$fault: "client",
|
|
820
877
|
...opts,
|
|
821
878
|
});
|
|
822
|
-
this.name = "TooManyDistributionsAssociatedToOriginAccessControl";
|
|
823
|
-
this.$fault = "client";
|
|
824
879
|
Object.setPrototypeOf(this, TooManyDistributionsAssociatedToOriginAccessControl.prototype);
|
|
825
880
|
this.Message = opts.Message;
|
|
826
881
|
}
|
|
827
882
|
}
|
|
828
883
|
export class TooManyDistributionsAssociatedToOriginRequestPolicy extends __BaseException {
|
|
884
|
+
name = "TooManyDistributionsAssociatedToOriginRequestPolicy";
|
|
885
|
+
$fault = "client";
|
|
886
|
+
Message;
|
|
829
887
|
constructor(opts) {
|
|
830
888
|
super({
|
|
831
889
|
name: "TooManyDistributionsAssociatedToOriginRequestPolicy",
|
|
832
890
|
$fault: "client",
|
|
833
891
|
...opts,
|
|
834
892
|
});
|
|
835
|
-
this.name = "TooManyDistributionsAssociatedToOriginRequestPolicy";
|
|
836
|
-
this.$fault = "client";
|
|
837
893
|
Object.setPrototypeOf(this, TooManyDistributionsAssociatedToOriginRequestPolicy.prototype);
|
|
838
894
|
this.Message = opts.Message;
|
|
839
895
|
}
|
|
840
896
|
}
|
|
841
897
|
export class TooManyDistributionsAssociatedToResponseHeadersPolicy extends __BaseException {
|
|
898
|
+
name = "TooManyDistributionsAssociatedToResponseHeadersPolicy";
|
|
899
|
+
$fault = "client";
|
|
900
|
+
Message;
|
|
842
901
|
constructor(opts) {
|
|
843
902
|
super({
|
|
844
903
|
name: "TooManyDistributionsAssociatedToResponseHeadersPolicy",
|
|
845
904
|
$fault: "client",
|
|
846
905
|
...opts,
|
|
847
906
|
});
|
|
848
|
-
this.name = "TooManyDistributionsAssociatedToResponseHeadersPolicy";
|
|
849
|
-
this.$fault = "client";
|
|
850
907
|
Object.setPrototypeOf(this, TooManyDistributionsAssociatedToResponseHeadersPolicy.prototype);
|
|
851
908
|
this.Message = opts.Message;
|
|
852
909
|
}
|
|
853
910
|
}
|
|
854
911
|
export class TooManyDistributionsWithFunctionAssociations extends __BaseException {
|
|
912
|
+
name = "TooManyDistributionsWithFunctionAssociations";
|
|
913
|
+
$fault = "client";
|
|
914
|
+
Message;
|
|
855
915
|
constructor(opts) {
|
|
856
916
|
super({
|
|
857
917
|
name: "TooManyDistributionsWithFunctionAssociations",
|
|
858
918
|
$fault: "client",
|
|
859
919
|
...opts,
|
|
860
920
|
});
|
|
861
|
-
this.name = "TooManyDistributionsWithFunctionAssociations";
|
|
862
|
-
this.$fault = "client";
|
|
863
921
|
Object.setPrototypeOf(this, TooManyDistributionsWithFunctionAssociations.prototype);
|
|
864
922
|
this.Message = opts.Message;
|
|
865
923
|
}
|
|
866
924
|
}
|
|
867
925
|
export class TooManyDistributionsWithLambdaAssociations extends __BaseException {
|
|
926
|
+
name = "TooManyDistributionsWithLambdaAssociations";
|
|
927
|
+
$fault = "client";
|
|
928
|
+
Message;
|
|
868
929
|
constructor(opts) {
|
|
869
930
|
super({
|
|
870
931
|
name: "TooManyDistributionsWithLambdaAssociations",
|
|
871
932
|
$fault: "client",
|
|
872
933
|
...opts,
|
|
873
934
|
});
|
|
874
|
-
this.name = "TooManyDistributionsWithLambdaAssociations";
|
|
875
|
-
this.$fault = "client";
|
|
876
935
|
Object.setPrototypeOf(this, TooManyDistributionsWithLambdaAssociations.prototype);
|
|
877
936
|
this.Message = opts.Message;
|
|
878
937
|
}
|
|
879
938
|
}
|
|
880
939
|
export class TooManyDistributionsWithSingleFunctionARN extends __BaseException {
|
|
940
|
+
name = "TooManyDistributionsWithSingleFunctionARN";
|
|
941
|
+
$fault = "client";
|
|
942
|
+
Message;
|
|
881
943
|
constructor(opts) {
|
|
882
944
|
super({
|
|
883
945
|
name: "TooManyDistributionsWithSingleFunctionARN",
|
|
884
946
|
$fault: "client",
|
|
885
947
|
...opts,
|
|
886
948
|
});
|
|
887
|
-
this.name = "TooManyDistributionsWithSingleFunctionARN";
|
|
888
|
-
this.$fault = "client";
|
|
889
949
|
Object.setPrototypeOf(this, TooManyDistributionsWithSingleFunctionARN.prototype);
|
|
890
950
|
this.Message = opts.Message;
|
|
891
951
|
}
|
|
892
952
|
}
|
|
893
953
|
export class TooManyFunctionAssociations extends __BaseException {
|
|
954
|
+
name = "TooManyFunctionAssociations";
|
|
955
|
+
$fault = "client";
|
|
956
|
+
Message;
|
|
894
957
|
constructor(opts) {
|
|
895
958
|
super({
|
|
896
959
|
name: "TooManyFunctionAssociations",
|
|
897
960
|
$fault: "client",
|
|
898
961
|
...opts,
|
|
899
962
|
});
|
|
900
|
-
this.name = "TooManyFunctionAssociations";
|
|
901
|
-
this.$fault = "client";
|
|
902
963
|
Object.setPrototypeOf(this, TooManyFunctionAssociations.prototype);
|
|
903
964
|
this.Message = opts.Message;
|
|
904
965
|
}
|
|
905
966
|
}
|
|
906
967
|
export class TooManyHeadersInForwardedValues extends __BaseException {
|
|
968
|
+
name = "TooManyHeadersInForwardedValues";
|
|
969
|
+
$fault = "client";
|
|
970
|
+
Message;
|
|
907
971
|
constructor(opts) {
|
|
908
972
|
super({
|
|
909
973
|
name: "TooManyHeadersInForwardedValues",
|
|
910
974
|
$fault: "client",
|
|
911
975
|
...opts,
|
|
912
976
|
});
|
|
913
|
-
this.name = "TooManyHeadersInForwardedValues";
|
|
914
|
-
this.$fault = "client";
|
|
915
977
|
Object.setPrototypeOf(this, TooManyHeadersInForwardedValues.prototype);
|
|
916
978
|
this.Message = opts.Message;
|
|
917
979
|
}
|
|
918
980
|
}
|
|
919
981
|
export class TooManyKeyGroupsAssociatedToDistribution extends __BaseException {
|
|
982
|
+
name = "TooManyKeyGroupsAssociatedToDistribution";
|
|
983
|
+
$fault = "client";
|
|
984
|
+
Message;
|
|
920
985
|
constructor(opts) {
|
|
921
986
|
super({
|
|
922
987
|
name: "TooManyKeyGroupsAssociatedToDistribution",
|
|
923
988
|
$fault: "client",
|
|
924
989
|
...opts,
|
|
925
990
|
});
|
|
926
|
-
this.name = "TooManyKeyGroupsAssociatedToDistribution";
|
|
927
|
-
this.$fault = "client";
|
|
928
991
|
Object.setPrototypeOf(this, TooManyKeyGroupsAssociatedToDistribution.prototype);
|
|
929
992
|
this.Message = opts.Message;
|
|
930
993
|
}
|
|
931
994
|
}
|
|
932
995
|
export class TooManyLambdaFunctionAssociations extends __BaseException {
|
|
996
|
+
name = "TooManyLambdaFunctionAssociations";
|
|
997
|
+
$fault = "client";
|
|
998
|
+
Message;
|
|
933
999
|
constructor(opts) {
|
|
934
1000
|
super({
|
|
935
1001
|
name: "TooManyLambdaFunctionAssociations",
|
|
936
1002
|
$fault: "client",
|
|
937
1003
|
...opts,
|
|
938
1004
|
});
|
|
939
|
-
this.name = "TooManyLambdaFunctionAssociations";
|
|
940
|
-
this.$fault = "client";
|
|
941
1005
|
Object.setPrototypeOf(this, TooManyLambdaFunctionAssociations.prototype);
|
|
942
1006
|
this.Message = opts.Message;
|
|
943
1007
|
}
|
|
944
1008
|
}
|
|
945
1009
|
export class TooManyOriginCustomHeaders extends __BaseException {
|
|
1010
|
+
name = "TooManyOriginCustomHeaders";
|
|
1011
|
+
$fault = "client";
|
|
1012
|
+
Message;
|
|
946
1013
|
constructor(opts) {
|
|
947
1014
|
super({
|
|
948
1015
|
name: "TooManyOriginCustomHeaders",
|
|
949
1016
|
$fault: "client",
|
|
950
1017
|
...opts,
|
|
951
1018
|
});
|
|
952
|
-
this.name = "TooManyOriginCustomHeaders";
|
|
953
|
-
this.$fault = "client";
|
|
954
1019
|
Object.setPrototypeOf(this, TooManyOriginCustomHeaders.prototype);
|
|
955
1020
|
this.Message = opts.Message;
|
|
956
1021
|
}
|
|
957
1022
|
}
|
|
958
1023
|
export class TooManyOriginGroupsPerDistribution extends __BaseException {
|
|
1024
|
+
name = "TooManyOriginGroupsPerDistribution";
|
|
1025
|
+
$fault = "client";
|
|
1026
|
+
Message;
|
|
959
1027
|
constructor(opts) {
|
|
960
1028
|
super({
|
|
961
1029
|
name: "TooManyOriginGroupsPerDistribution",
|
|
962
1030
|
$fault: "client",
|
|
963
1031
|
...opts,
|
|
964
1032
|
});
|
|
965
|
-
this.name = "TooManyOriginGroupsPerDistribution";
|
|
966
|
-
this.$fault = "client";
|
|
967
1033
|
Object.setPrototypeOf(this, TooManyOriginGroupsPerDistribution.prototype);
|
|
968
1034
|
this.Message = opts.Message;
|
|
969
1035
|
}
|
|
970
1036
|
}
|
|
971
1037
|
export class TooManyOrigins extends __BaseException {
|
|
1038
|
+
name = "TooManyOrigins";
|
|
1039
|
+
$fault = "client";
|
|
1040
|
+
Message;
|
|
972
1041
|
constructor(opts) {
|
|
973
1042
|
super({
|
|
974
1043
|
name: "TooManyOrigins",
|
|
975
1044
|
$fault: "client",
|
|
976
1045
|
...opts,
|
|
977
1046
|
});
|
|
978
|
-
this.name = "TooManyOrigins";
|
|
979
|
-
this.$fault = "client";
|
|
980
1047
|
Object.setPrototypeOf(this, TooManyOrigins.prototype);
|
|
981
1048
|
this.Message = opts.Message;
|
|
982
1049
|
}
|
|
983
1050
|
}
|
|
984
1051
|
export class TooManyQueryStringParameters extends __BaseException {
|
|
1052
|
+
name = "TooManyQueryStringParameters";
|
|
1053
|
+
$fault = "client";
|
|
1054
|
+
Message;
|
|
985
1055
|
constructor(opts) {
|
|
986
1056
|
super({
|
|
987
1057
|
name: "TooManyQueryStringParameters",
|
|
988
1058
|
$fault: "client",
|
|
989
1059
|
...opts,
|
|
990
1060
|
});
|
|
991
|
-
this.name = "TooManyQueryStringParameters";
|
|
992
|
-
this.$fault = "client";
|
|
993
1061
|
Object.setPrototypeOf(this, TooManyQueryStringParameters.prototype);
|
|
994
1062
|
this.Message = opts.Message;
|
|
995
1063
|
}
|
|
996
1064
|
}
|
|
997
1065
|
export class TooManyTrustedSigners extends __BaseException {
|
|
1066
|
+
name = "TooManyTrustedSigners";
|
|
1067
|
+
$fault = "client";
|
|
1068
|
+
Message;
|
|
998
1069
|
constructor(opts) {
|
|
999
1070
|
super({
|
|
1000
1071
|
name: "TooManyTrustedSigners",
|
|
1001
1072
|
$fault: "client",
|
|
1002
1073
|
...opts,
|
|
1003
1074
|
});
|
|
1004
|
-
this.name = "TooManyTrustedSigners";
|
|
1005
|
-
this.$fault = "client";
|
|
1006
1075
|
Object.setPrototypeOf(this, TooManyTrustedSigners.prototype);
|
|
1007
1076
|
this.Message = opts.Message;
|
|
1008
1077
|
}
|
|
1009
1078
|
}
|
|
1010
1079
|
export class TrustedKeyGroupDoesNotExist extends __BaseException {
|
|
1080
|
+
name = "TrustedKeyGroupDoesNotExist";
|
|
1081
|
+
$fault = "client";
|
|
1082
|
+
Message;
|
|
1011
1083
|
constructor(opts) {
|
|
1012
1084
|
super({
|
|
1013
1085
|
name: "TrustedKeyGroupDoesNotExist",
|
|
1014
1086
|
$fault: "client",
|
|
1015
1087
|
...opts,
|
|
1016
1088
|
});
|
|
1017
|
-
this.name = "TrustedKeyGroupDoesNotExist";
|
|
1018
|
-
this.$fault = "client";
|
|
1019
1089
|
Object.setPrototypeOf(this, TrustedKeyGroupDoesNotExist.prototype);
|
|
1020
1090
|
this.Message = opts.Message;
|
|
1021
1091
|
}
|
|
1022
1092
|
}
|
|
1023
1093
|
export class TrustedSignerDoesNotExist extends __BaseException {
|
|
1094
|
+
name = "TrustedSignerDoesNotExist";
|
|
1095
|
+
$fault = "client";
|
|
1096
|
+
Message;
|
|
1024
1097
|
constructor(opts) {
|
|
1025
1098
|
super({
|
|
1026
1099
|
name: "TrustedSignerDoesNotExist",
|
|
1027
1100
|
$fault: "client",
|
|
1028
1101
|
...opts,
|
|
1029
1102
|
});
|
|
1030
|
-
this.name = "TrustedSignerDoesNotExist";
|
|
1031
|
-
this.$fault = "client";
|
|
1032
1103
|
Object.setPrototypeOf(this, TrustedSignerDoesNotExist.prototype);
|
|
1033
1104
|
this.Message = opts.Message;
|
|
1034
1105
|
}
|
|
1035
1106
|
}
|
|
1036
1107
|
export class EntityAlreadyExists extends __BaseException {
|
|
1108
|
+
name = "EntityAlreadyExists";
|
|
1109
|
+
$fault = "client";
|
|
1110
|
+
Message;
|
|
1037
1111
|
constructor(opts) {
|
|
1038
1112
|
super({
|
|
1039
1113
|
name: "EntityAlreadyExists",
|
|
1040
1114
|
$fault: "client",
|
|
1041
1115
|
...opts,
|
|
1042
1116
|
});
|
|
1043
|
-
this.name = "EntityAlreadyExists";
|
|
1044
|
-
this.$fault = "client";
|
|
1045
1117
|
Object.setPrototypeOf(this, EntityAlreadyExists.prototype);
|
|
1046
1118
|
this.Message = opts.Message;
|
|
1047
1119
|
}
|
|
1048
1120
|
}
|
|
1049
1121
|
export class EntityLimitExceeded extends __BaseException {
|
|
1122
|
+
name = "EntityLimitExceeded";
|
|
1123
|
+
$fault = "client";
|
|
1124
|
+
Message;
|
|
1050
1125
|
constructor(opts) {
|
|
1051
1126
|
super({
|
|
1052
1127
|
name: "EntityLimitExceeded",
|
|
1053
1128
|
$fault: "client",
|
|
1054
1129
|
...opts,
|
|
1055
1130
|
});
|
|
1056
|
-
this.name = "EntityLimitExceeded";
|
|
1057
|
-
this.$fault = "client";
|
|
1058
1131
|
Object.setPrototypeOf(this, EntityLimitExceeded.prototype);
|
|
1059
1132
|
this.Message = opts.Message;
|
|
1060
1133
|
}
|
|
1061
1134
|
}
|
|
1062
1135
|
export class InvalidTagging extends __BaseException {
|
|
1136
|
+
name = "InvalidTagging";
|
|
1137
|
+
$fault = "client";
|
|
1138
|
+
Message;
|
|
1063
1139
|
constructor(opts) {
|
|
1064
1140
|
super({
|
|
1065
1141
|
name: "InvalidTagging",
|
|
1066
1142
|
$fault: "client",
|
|
1067
1143
|
...opts,
|
|
1068
1144
|
});
|
|
1069
|
-
this.name = "InvalidTagging";
|
|
1070
|
-
this.$fault = "client";
|
|
1071
1145
|
Object.setPrototypeOf(this, InvalidTagging.prototype);
|
|
1072
1146
|
this.Message = opts.Message;
|
|
1073
1147
|
}
|
|
1074
1148
|
}
|
|
1075
1149
|
export class UnsupportedOperation extends __BaseException {
|
|
1150
|
+
name = "UnsupportedOperation";
|
|
1151
|
+
$fault = "client";
|
|
1152
|
+
Message;
|
|
1076
1153
|
constructor(opts) {
|
|
1077
1154
|
super({
|
|
1078
1155
|
name: "UnsupportedOperation",
|
|
1079
1156
|
$fault: "client",
|
|
1080
1157
|
...opts,
|
|
1081
1158
|
});
|
|
1082
|
-
this.name = "UnsupportedOperation";
|
|
1083
|
-
this.$fault = "client";
|
|
1084
1159
|
Object.setPrototypeOf(this, UnsupportedOperation.prototype);
|
|
1085
1160
|
this.Message = opts.Message;
|
|
1086
1161
|
}
|
|
1087
1162
|
}
|
|
1088
1163
|
export class TooManyCachePolicies extends __BaseException {
|
|
1164
|
+
name = "TooManyCachePolicies";
|
|
1165
|
+
$fault = "client";
|
|
1166
|
+
Message;
|
|
1089
1167
|
constructor(opts) {
|
|
1090
1168
|
super({
|
|
1091
1169
|
name: "TooManyCachePolicies",
|
|
1092
1170
|
$fault: "client",
|
|
1093
1171
|
...opts,
|
|
1094
1172
|
});
|
|
1095
|
-
this.name = "TooManyCachePolicies";
|
|
1096
|
-
this.$fault = "client";
|
|
1097
1173
|
Object.setPrototypeOf(this, TooManyCachePolicies.prototype);
|
|
1098
1174
|
this.Message = opts.Message;
|
|
1099
1175
|
}
|
|
1100
1176
|
}
|
|
1101
1177
|
export class TooManyCookiesInCachePolicy extends __BaseException {
|
|
1178
|
+
name = "TooManyCookiesInCachePolicy";
|
|
1179
|
+
$fault = "client";
|
|
1180
|
+
Message;
|
|
1102
1181
|
constructor(opts) {
|
|
1103
1182
|
super({
|
|
1104
1183
|
name: "TooManyCookiesInCachePolicy",
|
|
1105
1184
|
$fault: "client",
|
|
1106
1185
|
...opts,
|
|
1107
1186
|
});
|
|
1108
|
-
this.name = "TooManyCookiesInCachePolicy";
|
|
1109
|
-
this.$fault = "client";
|
|
1110
1187
|
Object.setPrototypeOf(this, TooManyCookiesInCachePolicy.prototype);
|
|
1111
1188
|
this.Message = opts.Message;
|
|
1112
1189
|
}
|
|
1113
1190
|
}
|
|
1114
1191
|
export class TooManyHeadersInCachePolicy extends __BaseException {
|
|
1192
|
+
name = "TooManyHeadersInCachePolicy";
|
|
1193
|
+
$fault = "client";
|
|
1194
|
+
Message;
|
|
1115
1195
|
constructor(opts) {
|
|
1116
1196
|
super({
|
|
1117
1197
|
name: "TooManyHeadersInCachePolicy",
|
|
1118
1198
|
$fault: "client",
|
|
1119
1199
|
...opts,
|
|
1120
1200
|
});
|
|
1121
|
-
this.name = "TooManyHeadersInCachePolicy";
|
|
1122
|
-
this.$fault = "client";
|
|
1123
1201
|
Object.setPrototypeOf(this, TooManyHeadersInCachePolicy.prototype);
|
|
1124
1202
|
this.Message = opts.Message;
|
|
1125
1203
|
}
|
|
1126
1204
|
}
|
|
1127
1205
|
export class TooManyQueryStringsInCachePolicy extends __BaseException {
|
|
1206
|
+
name = "TooManyQueryStringsInCachePolicy";
|
|
1207
|
+
$fault = "client";
|
|
1208
|
+
Message;
|
|
1128
1209
|
constructor(opts) {
|
|
1129
1210
|
super({
|
|
1130
1211
|
name: "TooManyQueryStringsInCachePolicy",
|
|
1131
1212
|
$fault: "client",
|
|
1132
1213
|
...opts,
|
|
1133
1214
|
});
|
|
1134
|
-
this.name = "TooManyQueryStringsInCachePolicy";
|
|
1135
|
-
this.$fault = "client";
|
|
1136
1215
|
Object.setPrototypeOf(this, TooManyQueryStringsInCachePolicy.prototype);
|
|
1137
1216
|
this.Message = opts.Message;
|
|
1138
1217
|
}
|
|
1139
1218
|
}
|
|
1140
1219
|
export class CloudFrontOriginAccessIdentityAlreadyExists extends __BaseException {
|
|
1220
|
+
name = "CloudFrontOriginAccessIdentityAlreadyExists";
|
|
1221
|
+
$fault = "client";
|
|
1222
|
+
Message;
|
|
1141
1223
|
constructor(opts) {
|
|
1142
1224
|
super({
|
|
1143
1225
|
name: "CloudFrontOriginAccessIdentityAlreadyExists",
|
|
1144
1226
|
$fault: "client",
|
|
1145
1227
|
...opts,
|
|
1146
1228
|
});
|
|
1147
|
-
this.name = "CloudFrontOriginAccessIdentityAlreadyExists";
|
|
1148
|
-
this.$fault = "client";
|
|
1149
1229
|
Object.setPrototypeOf(this, CloudFrontOriginAccessIdentityAlreadyExists.prototype);
|
|
1150
1230
|
this.Message = opts.Message;
|
|
1151
1231
|
}
|
|
1152
1232
|
}
|
|
1153
1233
|
export class TooManyCloudFrontOriginAccessIdentities extends __BaseException {
|
|
1234
|
+
name = "TooManyCloudFrontOriginAccessIdentities";
|
|
1235
|
+
$fault = "client";
|
|
1236
|
+
Message;
|
|
1154
1237
|
constructor(opts) {
|
|
1155
1238
|
super({
|
|
1156
1239
|
name: "TooManyCloudFrontOriginAccessIdentities",
|
|
1157
1240
|
$fault: "client",
|
|
1158
1241
|
...opts,
|
|
1159
1242
|
});
|
|
1160
|
-
this.name = "TooManyCloudFrontOriginAccessIdentities";
|
|
1161
|
-
this.$fault = "client";
|
|
1162
1243
|
Object.setPrototypeOf(this, TooManyCloudFrontOriginAccessIdentities.prototype);
|
|
1163
1244
|
this.Message = opts.Message;
|
|
1164
1245
|
}
|
|
1165
1246
|
}
|
|
1166
1247
|
export class ContinuousDeploymentPolicyAlreadyExists extends __BaseException {
|
|
1248
|
+
name = "ContinuousDeploymentPolicyAlreadyExists";
|
|
1249
|
+
$fault = "client";
|
|
1250
|
+
Message;
|
|
1167
1251
|
constructor(opts) {
|
|
1168
1252
|
super({
|
|
1169
1253
|
name: "ContinuousDeploymentPolicyAlreadyExists",
|
|
1170
1254
|
$fault: "client",
|
|
1171
1255
|
...opts,
|
|
1172
1256
|
});
|
|
1173
|
-
this.name = "ContinuousDeploymentPolicyAlreadyExists";
|
|
1174
|
-
this.$fault = "client";
|
|
1175
1257
|
Object.setPrototypeOf(this, ContinuousDeploymentPolicyAlreadyExists.prototype);
|
|
1176
1258
|
this.Message = opts.Message;
|
|
1177
1259
|
}
|
|
@@ -1181,92 +1263,99 @@ export const ContinuousDeploymentPolicyType = {
|
|
|
1181
1263
|
SingleWeight: "SingleWeight",
|
|
1182
1264
|
};
|
|
1183
1265
|
export class StagingDistributionInUse extends __BaseException {
|
|
1266
|
+
name = "StagingDistributionInUse";
|
|
1267
|
+
$fault = "client";
|
|
1268
|
+
Message;
|
|
1184
1269
|
constructor(opts) {
|
|
1185
1270
|
super({
|
|
1186
1271
|
name: "StagingDistributionInUse",
|
|
1187
1272
|
$fault: "client",
|
|
1188
1273
|
...opts,
|
|
1189
1274
|
});
|
|
1190
|
-
this.name = "StagingDistributionInUse";
|
|
1191
|
-
this.$fault = "client";
|
|
1192
1275
|
Object.setPrototypeOf(this, StagingDistributionInUse.prototype);
|
|
1193
1276
|
this.Message = opts.Message;
|
|
1194
1277
|
}
|
|
1195
1278
|
}
|
|
1196
1279
|
export class TooManyContinuousDeploymentPolicies extends __BaseException {
|
|
1280
|
+
name = "TooManyContinuousDeploymentPolicies";
|
|
1281
|
+
$fault = "client";
|
|
1282
|
+
Message;
|
|
1197
1283
|
constructor(opts) {
|
|
1198
1284
|
super({
|
|
1199
1285
|
name: "TooManyContinuousDeploymentPolicies",
|
|
1200
1286
|
$fault: "client",
|
|
1201
1287
|
...opts,
|
|
1202
1288
|
});
|
|
1203
|
-
this.name = "TooManyContinuousDeploymentPolicies";
|
|
1204
|
-
this.$fault = "client";
|
|
1205
1289
|
Object.setPrototypeOf(this, TooManyContinuousDeploymentPolicies.prototype);
|
|
1206
1290
|
this.Message = opts.Message;
|
|
1207
1291
|
}
|
|
1208
1292
|
}
|
|
1209
1293
|
export class ContinuousDeploymentPolicyInUse extends __BaseException {
|
|
1294
|
+
name = "ContinuousDeploymentPolicyInUse";
|
|
1295
|
+
$fault = "client";
|
|
1296
|
+
Message;
|
|
1210
1297
|
constructor(opts) {
|
|
1211
1298
|
super({
|
|
1212
1299
|
name: "ContinuousDeploymentPolicyInUse",
|
|
1213
1300
|
$fault: "client",
|
|
1214
1301
|
...opts,
|
|
1215
1302
|
});
|
|
1216
|
-
this.name = "ContinuousDeploymentPolicyInUse";
|
|
1217
|
-
this.$fault = "client";
|
|
1218
1303
|
Object.setPrototypeOf(this, ContinuousDeploymentPolicyInUse.prototype);
|
|
1219
1304
|
this.Message = opts.Message;
|
|
1220
1305
|
}
|
|
1221
1306
|
}
|
|
1222
1307
|
export class EntityNotFound extends __BaseException {
|
|
1308
|
+
name = "EntityNotFound";
|
|
1309
|
+
$fault = "client";
|
|
1310
|
+
Message;
|
|
1223
1311
|
constructor(opts) {
|
|
1224
1312
|
super({
|
|
1225
1313
|
name: "EntityNotFound",
|
|
1226
1314
|
$fault: "client",
|
|
1227
1315
|
...opts,
|
|
1228
1316
|
});
|
|
1229
|
-
this.name = "EntityNotFound";
|
|
1230
|
-
this.$fault = "client";
|
|
1231
1317
|
Object.setPrototypeOf(this, EntityNotFound.prototype);
|
|
1232
1318
|
this.Message = opts.Message;
|
|
1233
1319
|
}
|
|
1234
1320
|
}
|
|
1235
1321
|
export class IllegalOriginAccessConfiguration extends __BaseException {
|
|
1322
|
+
name = "IllegalOriginAccessConfiguration";
|
|
1323
|
+
$fault = "client";
|
|
1324
|
+
Message;
|
|
1236
1325
|
constructor(opts) {
|
|
1237
1326
|
super({
|
|
1238
1327
|
name: "IllegalOriginAccessConfiguration",
|
|
1239
1328
|
$fault: "client",
|
|
1240
1329
|
...opts,
|
|
1241
1330
|
});
|
|
1242
|
-
this.name = "IllegalOriginAccessConfiguration";
|
|
1243
|
-
this.$fault = "client";
|
|
1244
1331
|
Object.setPrototypeOf(this, IllegalOriginAccessConfiguration.prototype);
|
|
1245
1332
|
this.Message = opts.Message;
|
|
1246
1333
|
}
|
|
1247
1334
|
}
|
|
1248
1335
|
export class InvalidDomainNameForOriginAccessControl extends __BaseException {
|
|
1336
|
+
name = "InvalidDomainNameForOriginAccessControl";
|
|
1337
|
+
$fault = "client";
|
|
1338
|
+
Message;
|
|
1249
1339
|
constructor(opts) {
|
|
1250
1340
|
super({
|
|
1251
1341
|
name: "InvalidDomainNameForOriginAccessControl",
|
|
1252
1342
|
$fault: "client",
|
|
1253
1343
|
...opts,
|
|
1254
1344
|
});
|
|
1255
|
-
this.name = "InvalidDomainNameForOriginAccessControl";
|
|
1256
|
-
this.$fault = "client";
|
|
1257
1345
|
Object.setPrototypeOf(this, InvalidDomainNameForOriginAccessControl.prototype);
|
|
1258
1346
|
this.Message = opts.Message;
|
|
1259
1347
|
}
|
|
1260
1348
|
}
|
|
1261
1349
|
export class NoSuchContinuousDeploymentPolicy extends __BaseException {
|
|
1350
|
+
name = "NoSuchContinuousDeploymentPolicy";
|
|
1351
|
+
$fault = "client";
|
|
1352
|
+
Message;
|
|
1262
1353
|
constructor(opts) {
|
|
1263
1354
|
super({
|
|
1264
1355
|
name: "NoSuchContinuousDeploymentPolicy",
|
|
1265
1356
|
$fault: "client",
|
|
1266
1357
|
...opts,
|
|
1267
1358
|
});
|
|
1268
|
-
this.name = "NoSuchContinuousDeploymentPolicy";
|
|
1269
|
-
this.$fault = "client";
|
|
1270
1359
|
Object.setPrototypeOf(this, NoSuchContinuousDeploymentPolicy.prototype);
|
|
1271
1360
|
this.Message = opts.Message;
|
|
1272
1361
|
}
|
|
@@ -1275,157 +1364,169 @@ export const Format = {
|
|
|
1275
1364
|
URLEncoded: "URLEncoded",
|
|
1276
1365
|
};
|
|
1277
1366
|
export class FieldLevelEncryptionConfigAlreadyExists extends __BaseException {
|
|
1367
|
+
name = "FieldLevelEncryptionConfigAlreadyExists";
|
|
1368
|
+
$fault = "client";
|
|
1369
|
+
Message;
|
|
1278
1370
|
constructor(opts) {
|
|
1279
1371
|
super({
|
|
1280
1372
|
name: "FieldLevelEncryptionConfigAlreadyExists",
|
|
1281
1373
|
$fault: "client",
|
|
1282
1374
|
...opts,
|
|
1283
1375
|
});
|
|
1284
|
-
this.name = "FieldLevelEncryptionConfigAlreadyExists";
|
|
1285
|
-
this.$fault = "client";
|
|
1286
1376
|
Object.setPrototypeOf(this, FieldLevelEncryptionConfigAlreadyExists.prototype);
|
|
1287
1377
|
this.Message = opts.Message;
|
|
1288
1378
|
}
|
|
1289
1379
|
}
|
|
1290
1380
|
export class NoSuchFieldLevelEncryptionProfile extends __BaseException {
|
|
1381
|
+
name = "NoSuchFieldLevelEncryptionProfile";
|
|
1382
|
+
$fault = "client";
|
|
1383
|
+
Message;
|
|
1291
1384
|
constructor(opts) {
|
|
1292
1385
|
super({
|
|
1293
1386
|
name: "NoSuchFieldLevelEncryptionProfile",
|
|
1294
1387
|
$fault: "client",
|
|
1295
1388
|
...opts,
|
|
1296
1389
|
});
|
|
1297
|
-
this.name = "NoSuchFieldLevelEncryptionProfile";
|
|
1298
|
-
this.$fault = "client";
|
|
1299
1390
|
Object.setPrototypeOf(this, NoSuchFieldLevelEncryptionProfile.prototype);
|
|
1300
1391
|
this.Message = opts.Message;
|
|
1301
1392
|
}
|
|
1302
1393
|
}
|
|
1303
1394
|
export class QueryArgProfileEmpty extends __BaseException {
|
|
1395
|
+
name = "QueryArgProfileEmpty";
|
|
1396
|
+
$fault = "client";
|
|
1397
|
+
Message;
|
|
1304
1398
|
constructor(opts) {
|
|
1305
1399
|
super({
|
|
1306
1400
|
name: "QueryArgProfileEmpty",
|
|
1307
1401
|
$fault: "client",
|
|
1308
1402
|
...opts,
|
|
1309
1403
|
});
|
|
1310
|
-
this.name = "QueryArgProfileEmpty";
|
|
1311
|
-
this.$fault = "client";
|
|
1312
1404
|
Object.setPrototypeOf(this, QueryArgProfileEmpty.prototype);
|
|
1313
1405
|
this.Message = opts.Message;
|
|
1314
1406
|
}
|
|
1315
1407
|
}
|
|
1316
1408
|
export class TooManyFieldLevelEncryptionConfigs extends __BaseException {
|
|
1409
|
+
name = "TooManyFieldLevelEncryptionConfigs";
|
|
1410
|
+
$fault = "client";
|
|
1411
|
+
Message;
|
|
1317
1412
|
constructor(opts) {
|
|
1318
1413
|
super({
|
|
1319
1414
|
name: "TooManyFieldLevelEncryptionConfigs",
|
|
1320
1415
|
$fault: "client",
|
|
1321
1416
|
...opts,
|
|
1322
1417
|
});
|
|
1323
|
-
this.name = "TooManyFieldLevelEncryptionConfigs";
|
|
1324
|
-
this.$fault = "client";
|
|
1325
1418
|
Object.setPrototypeOf(this, TooManyFieldLevelEncryptionConfigs.prototype);
|
|
1326
1419
|
this.Message = opts.Message;
|
|
1327
1420
|
}
|
|
1328
1421
|
}
|
|
1329
1422
|
export class TooManyFieldLevelEncryptionContentTypeProfiles extends __BaseException {
|
|
1423
|
+
name = "TooManyFieldLevelEncryptionContentTypeProfiles";
|
|
1424
|
+
$fault = "client";
|
|
1425
|
+
Message;
|
|
1330
1426
|
constructor(opts) {
|
|
1331
1427
|
super({
|
|
1332
1428
|
name: "TooManyFieldLevelEncryptionContentTypeProfiles",
|
|
1333
1429
|
$fault: "client",
|
|
1334
1430
|
...opts,
|
|
1335
1431
|
});
|
|
1336
|
-
this.name = "TooManyFieldLevelEncryptionContentTypeProfiles";
|
|
1337
|
-
this.$fault = "client";
|
|
1338
1432
|
Object.setPrototypeOf(this, TooManyFieldLevelEncryptionContentTypeProfiles.prototype);
|
|
1339
1433
|
this.Message = opts.Message;
|
|
1340
1434
|
}
|
|
1341
1435
|
}
|
|
1342
1436
|
export class TooManyFieldLevelEncryptionQueryArgProfiles extends __BaseException {
|
|
1437
|
+
name = "TooManyFieldLevelEncryptionQueryArgProfiles";
|
|
1438
|
+
$fault = "client";
|
|
1439
|
+
Message;
|
|
1343
1440
|
constructor(opts) {
|
|
1344
1441
|
super({
|
|
1345
1442
|
name: "TooManyFieldLevelEncryptionQueryArgProfiles",
|
|
1346
1443
|
$fault: "client",
|
|
1347
1444
|
...opts,
|
|
1348
1445
|
});
|
|
1349
|
-
this.name = "TooManyFieldLevelEncryptionQueryArgProfiles";
|
|
1350
|
-
this.$fault = "client";
|
|
1351
1446
|
Object.setPrototypeOf(this, TooManyFieldLevelEncryptionQueryArgProfiles.prototype);
|
|
1352
1447
|
this.Message = opts.Message;
|
|
1353
1448
|
}
|
|
1354
1449
|
}
|
|
1355
1450
|
export class FieldLevelEncryptionProfileAlreadyExists extends __BaseException {
|
|
1451
|
+
name = "FieldLevelEncryptionProfileAlreadyExists";
|
|
1452
|
+
$fault = "client";
|
|
1453
|
+
Message;
|
|
1356
1454
|
constructor(opts) {
|
|
1357
1455
|
super({
|
|
1358
1456
|
name: "FieldLevelEncryptionProfileAlreadyExists",
|
|
1359
1457
|
$fault: "client",
|
|
1360
1458
|
...opts,
|
|
1361
1459
|
});
|
|
1362
|
-
this.name = "FieldLevelEncryptionProfileAlreadyExists";
|
|
1363
|
-
this.$fault = "client";
|
|
1364
1460
|
Object.setPrototypeOf(this, FieldLevelEncryptionProfileAlreadyExists.prototype);
|
|
1365
1461
|
this.Message = opts.Message;
|
|
1366
1462
|
}
|
|
1367
1463
|
}
|
|
1368
1464
|
export class FieldLevelEncryptionProfileSizeExceeded extends __BaseException {
|
|
1465
|
+
name = "FieldLevelEncryptionProfileSizeExceeded";
|
|
1466
|
+
$fault = "client";
|
|
1467
|
+
Message;
|
|
1369
1468
|
constructor(opts) {
|
|
1370
1469
|
super({
|
|
1371
1470
|
name: "FieldLevelEncryptionProfileSizeExceeded",
|
|
1372
1471
|
$fault: "client",
|
|
1373
1472
|
...opts,
|
|
1374
1473
|
});
|
|
1375
|
-
this.name = "FieldLevelEncryptionProfileSizeExceeded";
|
|
1376
|
-
this.$fault = "client";
|
|
1377
1474
|
Object.setPrototypeOf(this, FieldLevelEncryptionProfileSizeExceeded.prototype);
|
|
1378
1475
|
this.Message = opts.Message;
|
|
1379
1476
|
}
|
|
1380
1477
|
}
|
|
1381
1478
|
export class NoSuchPublicKey extends __BaseException {
|
|
1479
|
+
name = "NoSuchPublicKey";
|
|
1480
|
+
$fault = "client";
|
|
1481
|
+
Message;
|
|
1382
1482
|
constructor(opts) {
|
|
1383
1483
|
super({
|
|
1384
1484
|
name: "NoSuchPublicKey",
|
|
1385
1485
|
$fault: "client",
|
|
1386
1486
|
...opts,
|
|
1387
1487
|
});
|
|
1388
|
-
this.name = "NoSuchPublicKey";
|
|
1389
|
-
this.$fault = "client";
|
|
1390
1488
|
Object.setPrototypeOf(this, NoSuchPublicKey.prototype);
|
|
1391
1489
|
this.Message = opts.Message;
|
|
1392
1490
|
}
|
|
1393
1491
|
}
|
|
1394
1492
|
export class TooManyFieldLevelEncryptionEncryptionEntities extends __BaseException {
|
|
1493
|
+
name = "TooManyFieldLevelEncryptionEncryptionEntities";
|
|
1494
|
+
$fault = "client";
|
|
1495
|
+
Message;
|
|
1395
1496
|
constructor(opts) {
|
|
1396
1497
|
super({
|
|
1397
1498
|
name: "TooManyFieldLevelEncryptionEncryptionEntities",
|
|
1398
1499
|
$fault: "client",
|
|
1399
1500
|
...opts,
|
|
1400
1501
|
});
|
|
1401
|
-
this.name = "TooManyFieldLevelEncryptionEncryptionEntities";
|
|
1402
|
-
this.$fault = "client";
|
|
1403
1502
|
Object.setPrototypeOf(this, TooManyFieldLevelEncryptionEncryptionEntities.prototype);
|
|
1404
1503
|
this.Message = opts.Message;
|
|
1405
1504
|
}
|
|
1406
1505
|
}
|
|
1407
1506
|
export class TooManyFieldLevelEncryptionFieldPatterns extends __BaseException {
|
|
1507
|
+
name = "TooManyFieldLevelEncryptionFieldPatterns";
|
|
1508
|
+
$fault = "client";
|
|
1509
|
+
Message;
|
|
1408
1510
|
constructor(opts) {
|
|
1409
1511
|
super({
|
|
1410
1512
|
name: "TooManyFieldLevelEncryptionFieldPatterns",
|
|
1411
1513
|
$fault: "client",
|
|
1412
1514
|
...opts,
|
|
1413
1515
|
});
|
|
1414
|
-
this.name = "TooManyFieldLevelEncryptionFieldPatterns";
|
|
1415
|
-
this.$fault = "client";
|
|
1416
1516
|
Object.setPrototypeOf(this, TooManyFieldLevelEncryptionFieldPatterns.prototype);
|
|
1417
1517
|
this.Message = opts.Message;
|
|
1418
1518
|
}
|
|
1419
1519
|
}
|
|
1420
1520
|
export class TooManyFieldLevelEncryptionProfiles extends __BaseException {
|
|
1521
|
+
name = "TooManyFieldLevelEncryptionProfiles";
|
|
1522
|
+
$fault = "client";
|
|
1523
|
+
Message;
|
|
1421
1524
|
constructor(opts) {
|
|
1422
1525
|
super({
|
|
1423
1526
|
name: "TooManyFieldLevelEncryptionProfiles",
|
|
1424
1527
|
$fault: "client",
|
|
1425
1528
|
...opts,
|
|
1426
1529
|
});
|
|
1427
|
-
this.name = "TooManyFieldLevelEncryptionProfiles";
|
|
1428
|
-
this.$fault = "client";
|
|
1429
1530
|
Object.setPrototypeOf(this, TooManyFieldLevelEncryptionProfiles.prototype);
|
|
1430
1531
|
this.Message = opts.Message;
|
|
1431
1532
|
}
|
|
@@ -1439,92 +1540,99 @@ export const FunctionStage = {
|
|
|
1439
1540
|
LIVE: "LIVE",
|
|
1440
1541
|
};
|
|
1441
1542
|
export class FunctionAlreadyExists extends __BaseException {
|
|
1543
|
+
name = "FunctionAlreadyExists";
|
|
1544
|
+
$fault = "client";
|
|
1545
|
+
Message;
|
|
1442
1546
|
constructor(opts) {
|
|
1443
1547
|
super({
|
|
1444
1548
|
name: "FunctionAlreadyExists",
|
|
1445
1549
|
$fault: "client",
|
|
1446
1550
|
...opts,
|
|
1447
1551
|
});
|
|
1448
|
-
this.name = "FunctionAlreadyExists";
|
|
1449
|
-
this.$fault = "client";
|
|
1450
1552
|
Object.setPrototypeOf(this, FunctionAlreadyExists.prototype);
|
|
1451
1553
|
this.Message = opts.Message;
|
|
1452
1554
|
}
|
|
1453
1555
|
}
|
|
1454
1556
|
export class FunctionSizeLimitExceeded extends __BaseException {
|
|
1557
|
+
name = "FunctionSizeLimitExceeded";
|
|
1558
|
+
$fault = "client";
|
|
1559
|
+
Message;
|
|
1455
1560
|
constructor(opts) {
|
|
1456
1561
|
super({
|
|
1457
1562
|
name: "FunctionSizeLimitExceeded",
|
|
1458
1563
|
$fault: "client",
|
|
1459
1564
|
...opts,
|
|
1460
1565
|
});
|
|
1461
|
-
this.name = "FunctionSizeLimitExceeded";
|
|
1462
|
-
this.$fault = "client";
|
|
1463
1566
|
Object.setPrototypeOf(this, FunctionSizeLimitExceeded.prototype);
|
|
1464
1567
|
this.Message = opts.Message;
|
|
1465
1568
|
}
|
|
1466
1569
|
}
|
|
1467
1570
|
export class TooManyFunctions extends __BaseException {
|
|
1571
|
+
name = "TooManyFunctions";
|
|
1572
|
+
$fault = "client";
|
|
1573
|
+
Message;
|
|
1468
1574
|
constructor(opts) {
|
|
1469
1575
|
super({
|
|
1470
1576
|
name: "TooManyFunctions",
|
|
1471
1577
|
$fault: "client",
|
|
1472
1578
|
...opts,
|
|
1473
1579
|
});
|
|
1474
|
-
this.name = "TooManyFunctions";
|
|
1475
|
-
this.$fault = "client";
|
|
1476
1580
|
Object.setPrototypeOf(this, TooManyFunctions.prototype);
|
|
1477
1581
|
this.Message = opts.Message;
|
|
1478
1582
|
}
|
|
1479
1583
|
}
|
|
1480
1584
|
export class TooManyInvalidationsInProgress extends __BaseException {
|
|
1585
|
+
name = "TooManyInvalidationsInProgress";
|
|
1586
|
+
$fault = "client";
|
|
1587
|
+
Message;
|
|
1481
1588
|
constructor(opts) {
|
|
1482
1589
|
super({
|
|
1483
1590
|
name: "TooManyInvalidationsInProgress",
|
|
1484
1591
|
$fault: "client",
|
|
1485
1592
|
...opts,
|
|
1486
1593
|
});
|
|
1487
|
-
this.name = "TooManyInvalidationsInProgress";
|
|
1488
|
-
this.$fault = "client";
|
|
1489
1594
|
Object.setPrototypeOf(this, TooManyInvalidationsInProgress.prototype);
|
|
1490
1595
|
this.Message = opts.Message;
|
|
1491
1596
|
}
|
|
1492
1597
|
}
|
|
1493
1598
|
export class KeyGroupAlreadyExists extends __BaseException {
|
|
1599
|
+
name = "KeyGroupAlreadyExists";
|
|
1600
|
+
$fault = "client";
|
|
1601
|
+
Message;
|
|
1494
1602
|
constructor(opts) {
|
|
1495
1603
|
super({
|
|
1496
1604
|
name: "KeyGroupAlreadyExists",
|
|
1497
1605
|
$fault: "client",
|
|
1498
1606
|
...opts,
|
|
1499
1607
|
});
|
|
1500
|
-
this.name = "KeyGroupAlreadyExists";
|
|
1501
|
-
this.$fault = "client";
|
|
1502
1608
|
Object.setPrototypeOf(this, KeyGroupAlreadyExists.prototype);
|
|
1503
1609
|
this.Message = opts.Message;
|
|
1504
1610
|
}
|
|
1505
1611
|
}
|
|
1506
1612
|
export class TooManyKeyGroups extends __BaseException {
|
|
1613
|
+
name = "TooManyKeyGroups";
|
|
1614
|
+
$fault = "client";
|
|
1615
|
+
Message;
|
|
1507
1616
|
constructor(opts) {
|
|
1508
1617
|
super({
|
|
1509
1618
|
name: "TooManyKeyGroups",
|
|
1510
1619
|
$fault: "client",
|
|
1511
1620
|
...opts,
|
|
1512
1621
|
});
|
|
1513
|
-
this.name = "TooManyKeyGroups";
|
|
1514
|
-
this.$fault = "client";
|
|
1515
1622
|
Object.setPrototypeOf(this, TooManyKeyGroups.prototype);
|
|
1516
1623
|
this.Message = opts.Message;
|
|
1517
1624
|
}
|
|
1518
1625
|
}
|
|
1519
1626
|
export class TooManyPublicKeysInKeyGroup extends __BaseException {
|
|
1627
|
+
name = "TooManyPublicKeysInKeyGroup";
|
|
1628
|
+
$fault = "client";
|
|
1629
|
+
Message;
|
|
1520
1630
|
constructor(opts) {
|
|
1521
1631
|
super({
|
|
1522
1632
|
name: "TooManyPublicKeysInKeyGroup",
|
|
1523
1633
|
$fault: "client",
|
|
1524
1634
|
...opts,
|
|
1525
1635
|
});
|
|
1526
|
-
this.name = "TooManyPublicKeysInKeyGroup";
|
|
1527
|
-
this.$fault = "client";
|
|
1528
1636
|
Object.setPrototypeOf(this, TooManyPublicKeysInKeyGroup.prototype);
|
|
1529
1637
|
this.Message = opts.Message;
|
|
1530
1638
|
}
|
|
@@ -1533,14 +1641,15 @@ export const ImportSourceType = {
|
|
|
1533
1641
|
S3: "S3",
|
|
1534
1642
|
};
|
|
1535
1643
|
export class EntitySizeLimitExceeded extends __BaseException {
|
|
1644
|
+
name = "EntitySizeLimitExceeded";
|
|
1645
|
+
$fault = "client";
|
|
1646
|
+
Message;
|
|
1536
1647
|
constructor(opts) {
|
|
1537
1648
|
super({
|
|
1538
1649
|
name: "EntitySizeLimitExceeded",
|
|
1539
1650
|
$fault: "client",
|
|
1540
1651
|
...opts,
|
|
1541
1652
|
});
|
|
1542
|
-
this.name = "EntitySizeLimitExceeded";
|
|
1543
|
-
this.$fault = "client";
|
|
1544
1653
|
Object.setPrototypeOf(this, EntitySizeLimitExceeded.prototype);
|
|
1545
1654
|
this.Message = opts.Message;
|
|
1546
1655
|
}
|
|
@@ -1550,14 +1659,15 @@ export const RealtimeMetricsSubscriptionStatus = {
|
|
|
1550
1659
|
Enabled: "Enabled",
|
|
1551
1660
|
};
|
|
1552
1661
|
export class MonitoringSubscriptionAlreadyExists extends __BaseException {
|
|
1662
|
+
name = "MonitoringSubscriptionAlreadyExists";
|
|
1663
|
+
$fault = "client";
|
|
1664
|
+
Message;
|
|
1553
1665
|
constructor(opts) {
|
|
1554
1666
|
super({
|
|
1555
1667
|
name: "MonitoringSubscriptionAlreadyExists",
|
|
1556
1668
|
$fault: "client",
|
|
1557
1669
|
...opts,
|
|
1558
1670
|
});
|
|
1559
|
-
this.name = "MonitoringSubscriptionAlreadyExists";
|
|
1560
|
-
this.$fault = "client";
|
|
1561
1671
|
Object.setPrototypeOf(this, MonitoringSubscriptionAlreadyExists.prototype);
|
|
1562
1672
|
this.Message = opts.Message;
|
|
1563
1673
|
}
|
|
@@ -1577,27 +1687,29 @@ export const OriginAccessControlSigningProtocols = {
|
|
|
1577
1687
|
sigv4: "sigv4",
|
|
1578
1688
|
};
|
|
1579
1689
|
export class OriginAccessControlAlreadyExists extends __BaseException {
|
|
1690
|
+
name = "OriginAccessControlAlreadyExists";
|
|
1691
|
+
$fault = "client";
|
|
1692
|
+
Message;
|
|
1580
1693
|
constructor(opts) {
|
|
1581
1694
|
super({
|
|
1582
1695
|
name: "OriginAccessControlAlreadyExists",
|
|
1583
1696
|
$fault: "client",
|
|
1584
1697
|
...opts,
|
|
1585
1698
|
});
|
|
1586
|
-
this.name = "OriginAccessControlAlreadyExists";
|
|
1587
|
-
this.$fault = "client";
|
|
1588
1699
|
Object.setPrototypeOf(this, OriginAccessControlAlreadyExists.prototype);
|
|
1589
1700
|
this.Message = opts.Message;
|
|
1590
1701
|
}
|
|
1591
1702
|
}
|
|
1592
1703
|
export class TooManyOriginAccessControls extends __BaseException {
|
|
1704
|
+
name = "TooManyOriginAccessControls";
|
|
1705
|
+
$fault = "client";
|
|
1706
|
+
Message;
|
|
1593
1707
|
constructor(opts) {
|
|
1594
1708
|
super({
|
|
1595
1709
|
name: "TooManyOriginAccessControls",
|
|
1596
1710
|
$fault: "client",
|
|
1597
1711
|
...opts,
|
|
1598
1712
|
});
|
|
1599
|
-
this.name = "TooManyOriginAccessControls";
|
|
1600
|
-
this.$fault = "client";
|
|
1601
1713
|
Object.setPrototypeOf(this, TooManyOriginAccessControls.prototype);
|
|
1602
1714
|
this.Message = opts.Message;
|
|
1603
1715
|
}
|
|
@@ -1622,118 +1734,127 @@ export const OriginRequestPolicyQueryStringBehavior = {
|
|
|
1622
1734
|
whitelist: "whitelist",
|
|
1623
1735
|
};
|
|
1624
1736
|
export class OriginRequestPolicyAlreadyExists extends __BaseException {
|
|
1737
|
+
name = "OriginRequestPolicyAlreadyExists";
|
|
1738
|
+
$fault = "client";
|
|
1739
|
+
Message;
|
|
1625
1740
|
constructor(opts) {
|
|
1626
1741
|
super({
|
|
1627
1742
|
name: "OriginRequestPolicyAlreadyExists",
|
|
1628
1743
|
$fault: "client",
|
|
1629
1744
|
...opts,
|
|
1630
1745
|
});
|
|
1631
|
-
this.name = "OriginRequestPolicyAlreadyExists";
|
|
1632
|
-
this.$fault = "client";
|
|
1633
1746
|
Object.setPrototypeOf(this, OriginRequestPolicyAlreadyExists.prototype);
|
|
1634
1747
|
this.Message = opts.Message;
|
|
1635
1748
|
}
|
|
1636
1749
|
}
|
|
1637
1750
|
export class TooManyCookiesInOriginRequestPolicy extends __BaseException {
|
|
1751
|
+
name = "TooManyCookiesInOriginRequestPolicy";
|
|
1752
|
+
$fault = "client";
|
|
1753
|
+
Message;
|
|
1638
1754
|
constructor(opts) {
|
|
1639
1755
|
super({
|
|
1640
1756
|
name: "TooManyCookiesInOriginRequestPolicy",
|
|
1641
1757
|
$fault: "client",
|
|
1642
1758
|
...opts,
|
|
1643
1759
|
});
|
|
1644
|
-
this.name = "TooManyCookiesInOriginRequestPolicy";
|
|
1645
|
-
this.$fault = "client";
|
|
1646
1760
|
Object.setPrototypeOf(this, TooManyCookiesInOriginRequestPolicy.prototype);
|
|
1647
1761
|
this.Message = opts.Message;
|
|
1648
1762
|
}
|
|
1649
1763
|
}
|
|
1650
1764
|
export class TooManyHeadersInOriginRequestPolicy extends __BaseException {
|
|
1765
|
+
name = "TooManyHeadersInOriginRequestPolicy";
|
|
1766
|
+
$fault = "client";
|
|
1767
|
+
Message;
|
|
1651
1768
|
constructor(opts) {
|
|
1652
1769
|
super({
|
|
1653
1770
|
name: "TooManyHeadersInOriginRequestPolicy",
|
|
1654
1771
|
$fault: "client",
|
|
1655
1772
|
...opts,
|
|
1656
1773
|
});
|
|
1657
|
-
this.name = "TooManyHeadersInOriginRequestPolicy";
|
|
1658
|
-
this.$fault = "client";
|
|
1659
1774
|
Object.setPrototypeOf(this, TooManyHeadersInOriginRequestPolicy.prototype);
|
|
1660
1775
|
this.Message = opts.Message;
|
|
1661
1776
|
}
|
|
1662
1777
|
}
|
|
1663
1778
|
export class TooManyOriginRequestPolicies extends __BaseException {
|
|
1779
|
+
name = "TooManyOriginRequestPolicies";
|
|
1780
|
+
$fault = "client";
|
|
1781
|
+
Message;
|
|
1664
1782
|
constructor(opts) {
|
|
1665
1783
|
super({
|
|
1666
1784
|
name: "TooManyOriginRequestPolicies",
|
|
1667
1785
|
$fault: "client",
|
|
1668
1786
|
...opts,
|
|
1669
1787
|
});
|
|
1670
|
-
this.name = "TooManyOriginRequestPolicies";
|
|
1671
|
-
this.$fault = "client";
|
|
1672
1788
|
Object.setPrototypeOf(this, TooManyOriginRequestPolicies.prototype);
|
|
1673
1789
|
this.Message = opts.Message;
|
|
1674
1790
|
}
|
|
1675
1791
|
}
|
|
1676
1792
|
export class TooManyQueryStringsInOriginRequestPolicy extends __BaseException {
|
|
1793
|
+
name = "TooManyQueryStringsInOriginRequestPolicy";
|
|
1794
|
+
$fault = "client";
|
|
1795
|
+
Message;
|
|
1677
1796
|
constructor(opts) {
|
|
1678
1797
|
super({
|
|
1679
1798
|
name: "TooManyQueryStringsInOriginRequestPolicy",
|
|
1680
1799
|
$fault: "client",
|
|
1681
1800
|
...opts,
|
|
1682
1801
|
});
|
|
1683
|
-
this.name = "TooManyQueryStringsInOriginRequestPolicy";
|
|
1684
|
-
this.$fault = "client";
|
|
1685
1802
|
Object.setPrototypeOf(this, TooManyQueryStringsInOriginRequestPolicy.prototype);
|
|
1686
1803
|
this.Message = opts.Message;
|
|
1687
1804
|
}
|
|
1688
1805
|
}
|
|
1689
1806
|
export class PublicKeyAlreadyExists extends __BaseException {
|
|
1807
|
+
name = "PublicKeyAlreadyExists";
|
|
1808
|
+
$fault = "client";
|
|
1809
|
+
Message;
|
|
1690
1810
|
constructor(opts) {
|
|
1691
1811
|
super({
|
|
1692
1812
|
name: "PublicKeyAlreadyExists",
|
|
1693
1813
|
$fault: "client",
|
|
1694
1814
|
...opts,
|
|
1695
1815
|
});
|
|
1696
|
-
this.name = "PublicKeyAlreadyExists";
|
|
1697
|
-
this.$fault = "client";
|
|
1698
1816
|
Object.setPrototypeOf(this, PublicKeyAlreadyExists.prototype);
|
|
1699
1817
|
this.Message = opts.Message;
|
|
1700
1818
|
}
|
|
1701
1819
|
}
|
|
1702
1820
|
export class TooManyPublicKeys extends __BaseException {
|
|
1821
|
+
name = "TooManyPublicKeys";
|
|
1822
|
+
$fault = "client";
|
|
1823
|
+
Message;
|
|
1703
1824
|
constructor(opts) {
|
|
1704
1825
|
super({
|
|
1705
1826
|
name: "TooManyPublicKeys",
|
|
1706
1827
|
$fault: "client",
|
|
1707
1828
|
...opts,
|
|
1708
1829
|
});
|
|
1709
|
-
this.name = "TooManyPublicKeys";
|
|
1710
|
-
this.$fault = "client";
|
|
1711
1830
|
Object.setPrototypeOf(this, TooManyPublicKeys.prototype);
|
|
1712
1831
|
this.Message = opts.Message;
|
|
1713
1832
|
}
|
|
1714
1833
|
}
|
|
1715
1834
|
export class RealtimeLogConfigAlreadyExists extends __BaseException {
|
|
1835
|
+
name = "RealtimeLogConfigAlreadyExists";
|
|
1836
|
+
$fault = "client";
|
|
1837
|
+
Message;
|
|
1716
1838
|
constructor(opts) {
|
|
1717
1839
|
super({
|
|
1718
1840
|
name: "RealtimeLogConfigAlreadyExists",
|
|
1719
1841
|
$fault: "client",
|
|
1720
1842
|
...opts,
|
|
1721
1843
|
});
|
|
1722
|
-
this.name = "RealtimeLogConfigAlreadyExists";
|
|
1723
|
-
this.$fault = "client";
|
|
1724
1844
|
Object.setPrototypeOf(this, RealtimeLogConfigAlreadyExists.prototype);
|
|
1725
1845
|
this.Message = opts.Message;
|
|
1726
1846
|
}
|
|
1727
1847
|
}
|
|
1728
1848
|
export class TooManyRealtimeLogConfigs extends __BaseException {
|
|
1849
|
+
name = "TooManyRealtimeLogConfigs";
|
|
1850
|
+
$fault = "client";
|
|
1851
|
+
Message;
|
|
1729
1852
|
constructor(opts) {
|
|
1730
1853
|
super({
|
|
1731
1854
|
name: "TooManyRealtimeLogConfigs",
|
|
1732
1855
|
$fault: "client",
|
|
1733
1856
|
...opts,
|
|
1734
1857
|
});
|
|
1735
|
-
this.name = "TooManyRealtimeLogConfigs";
|
|
1736
|
-
this.$fault = "client";
|
|
1737
1858
|
Object.setPrototypeOf(this, TooManyRealtimeLogConfigs.prototype);
|
|
1738
1859
|
this.Message = opts.Message;
|
|
1739
1860
|
}
|