@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,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { CloudFrontServiceException as __BaseException } from "./CloudFrontServiceException";
|
|
2
3
|
export declare enum ResponseHeadersPolicyAccessControlAllowMethodsValues {
|
|
3
4
|
ALL = "ALL",
|
|
4
5
|
DELETE = "DELETE",
|
|
@@ -12,10 +13,14 @@ export declare enum ResponseHeadersPolicyAccessControlAllowMethodsValues {
|
|
|
12
13
|
/**
|
|
13
14
|
* <p>Access denied.</p>
|
|
14
15
|
*/
|
|
15
|
-
export
|
|
16
|
-
name: "AccessDenied";
|
|
17
|
-
$fault: "client";
|
|
16
|
+
export declare class AccessDenied extends __BaseException {
|
|
17
|
+
readonly name: "AccessDenied";
|
|
18
|
+
readonly $fault: "client";
|
|
18
19
|
Message?: string;
|
|
20
|
+
/**
|
|
21
|
+
* @internal
|
|
22
|
+
*/
|
|
23
|
+
constructor(opts: __ExceptionOptionType<AccessDenied, __BaseException>);
|
|
19
24
|
}
|
|
20
25
|
/**
|
|
21
26
|
* <p>A list of CloudFront key pair identifiers.</p>
|
|
@@ -315,42 +320,62 @@ export declare namespace AssociateAliasRequest {
|
|
|
315
320
|
/**
|
|
316
321
|
* <p>The update contains modifications that are not allowed.</p>
|
|
317
322
|
*/
|
|
318
|
-
export
|
|
319
|
-
name: "IllegalUpdate";
|
|
320
|
-
$fault: "client";
|
|
323
|
+
export declare class IllegalUpdate extends __BaseException {
|
|
324
|
+
readonly name: "IllegalUpdate";
|
|
325
|
+
readonly $fault: "client";
|
|
321
326
|
Message?: string;
|
|
327
|
+
/**
|
|
328
|
+
* @internal
|
|
329
|
+
*/
|
|
330
|
+
constructor(opts: __ExceptionOptionType<IllegalUpdate, __BaseException>);
|
|
322
331
|
}
|
|
323
332
|
/**
|
|
324
333
|
* <p>An argument is invalid.</p>
|
|
325
334
|
*/
|
|
326
|
-
export
|
|
327
|
-
name: "InvalidArgument";
|
|
328
|
-
$fault: "client";
|
|
335
|
+
export declare class InvalidArgument extends __BaseException {
|
|
336
|
+
readonly name: "InvalidArgument";
|
|
337
|
+
readonly $fault: "client";
|
|
329
338
|
Message?: string;
|
|
339
|
+
/**
|
|
340
|
+
* @internal
|
|
341
|
+
*/
|
|
342
|
+
constructor(opts: __ExceptionOptionType<InvalidArgument, __BaseException>);
|
|
330
343
|
}
|
|
331
344
|
/**
|
|
332
345
|
* <p>The specified distribution does not exist.</p>
|
|
333
346
|
*/
|
|
334
|
-
export
|
|
335
|
-
name: "NoSuchDistribution";
|
|
336
|
-
$fault: "client";
|
|
347
|
+
export declare class NoSuchDistribution extends __BaseException {
|
|
348
|
+
readonly name: "NoSuchDistribution";
|
|
349
|
+
readonly $fault: "client";
|
|
337
350
|
Message?: string;
|
|
351
|
+
/**
|
|
352
|
+
* @internal
|
|
353
|
+
*/
|
|
354
|
+
constructor(opts: __ExceptionOptionType<NoSuchDistribution, __BaseException>);
|
|
338
355
|
}
|
|
339
356
|
/**
|
|
340
357
|
* <p>Your request contains more CNAMEs than are allowed per distribution.</p>
|
|
341
358
|
*/
|
|
342
|
-
export
|
|
343
|
-
name: "TooManyDistributionCNAMEs";
|
|
344
|
-
$fault: "client";
|
|
359
|
+
export declare class TooManyDistributionCNAMEs extends __BaseException {
|
|
360
|
+
readonly name: "TooManyDistributionCNAMEs";
|
|
361
|
+
readonly $fault: "client";
|
|
345
362
|
Message?: string;
|
|
363
|
+
/**
|
|
364
|
+
* @internal
|
|
365
|
+
*/
|
|
366
|
+
constructor(opts: __ExceptionOptionType<TooManyDistributionCNAMEs, __BaseException>);
|
|
346
367
|
}
|
|
347
368
|
/**
|
|
348
369
|
* <p>Invalidation batch specified is too large.</p>
|
|
349
370
|
*/
|
|
350
|
-
export
|
|
351
|
-
name: "BatchTooLarge";
|
|
352
|
-
$fault: "client";
|
|
371
|
+
export declare class BatchTooLarge extends __BaseException {
|
|
372
|
+
readonly name: "BatchTooLarge";
|
|
373
|
+
readonly $fault: "client";
|
|
353
374
|
Message?: string;
|
|
375
|
+
/**
|
|
376
|
+
* @internal
|
|
377
|
+
*/
|
|
378
|
+
constructor(opts: __ExceptionOptionType<BatchTooLarge, __BaseException>);
|
|
354
379
|
}
|
|
355
380
|
export declare type ItemSelection = "all" | "none" | "whitelist";
|
|
356
381
|
/**
|
|
@@ -1412,19 +1437,27 @@ export declare namespace CachePolicy {
|
|
|
1412
1437
|
* <p>A cache policy with this name already exists. You must provide a unique name. To
|
|
1413
1438
|
* modify an existing cache policy, use <code>UpdateCachePolicy</code>.</p>
|
|
1414
1439
|
*/
|
|
1415
|
-
export
|
|
1416
|
-
name: "CachePolicyAlreadyExists";
|
|
1417
|
-
$fault: "client";
|
|
1440
|
+
export declare class CachePolicyAlreadyExists extends __BaseException {
|
|
1441
|
+
readonly name: "CachePolicyAlreadyExists";
|
|
1442
|
+
readonly $fault: "client";
|
|
1418
1443
|
Message?: string;
|
|
1444
|
+
/**
|
|
1445
|
+
* @internal
|
|
1446
|
+
*/
|
|
1447
|
+
constructor(opts: __ExceptionOptionType<CachePolicyAlreadyExists, __BaseException>);
|
|
1419
1448
|
}
|
|
1420
1449
|
/**
|
|
1421
1450
|
* <p>Cannot delete the cache policy because it is attached to one or more cache
|
|
1422
1451
|
* behaviors.</p>
|
|
1423
1452
|
*/
|
|
1424
|
-
export
|
|
1425
|
-
name: "CachePolicyInUse";
|
|
1426
|
-
$fault: "client";
|
|
1453
|
+
export declare class CachePolicyInUse extends __BaseException {
|
|
1454
|
+
readonly name: "CachePolicyInUse";
|
|
1455
|
+
readonly $fault: "client";
|
|
1427
1456
|
Message?: string;
|
|
1457
|
+
/**
|
|
1458
|
+
* @internal
|
|
1459
|
+
*/
|
|
1460
|
+
constructor(opts: __ExceptionOptionType<CachePolicyInUse, __BaseException>);
|
|
1428
1461
|
}
|
|
1429
1462
|
export declare type CachePolicyType = "custom" | "managed";
|
|
1430
1463
|
/**
|
|
@@ -1479,10 +1512,14 @@ export declare namespace CachePolicyList {
|
|
|
1479
1512
|
/**
|
|
1480
1513
|
* <p>You can't change the value of a public key.</p>
|
|
1481
1514
|
*/
|
|
1482
|
-
export
|
|
1483
|
-
name: "CannotChangeImmutablePublicKeyFields";
|
|
1484
|
-
$fault: "client";
|
|
1515
|
+
export declare class CannotChangeImmutablePublicKeyFields extends __BaseException {
|
|
1516
|
+
readonly name: "CannotChangeImmutablePublicKeyFields";
|
|
1517
|
+
readonly $fault: "client";
|
|
1485
1518
|
Message?: string;
|
|
1519
|
+
/**
|
|
1520
|
+
* @internal
|
|
1521
|
+
*/
|
|
1522
|
+
constructor(opts: __ExceptionOptionType<CannotChangeImmutablePublicKeyFields, __BaseException>);
|
|
1486
1523
|
}
|
|
1487
1524
|
export declare type CertificateSource = "acm" | "cloudfront" | "iam";
|
|
1488
1525
|
export interface CreateCachePolicyRequest {
|
|
@@ -1520,60 +1557,84 @@ export declare namespace CreateCachePolicyResult {
|
|
|
1520
1557
|
/**
|
|
1521
1558
|
* <p>The value of <code>Quantity</code> and the size of <code>Items</code> don't match.</p>
|
|
1522
1559
|
*/
|
|
1523
|
-
export
|
|
1524
|
-
name: "InconsistentQuantities";
|
|
1525
|
-
$fault: "client";
|
|
1560
|
+
export declare class InconsistentQuantities extends __BaseException {
|
|
1561
|
+
readonly name: "InconsistentQuantities";
|
|
1562
|
+
readonly $fault: "client";
|
|
1526
1563
|
Message?: string;
|
|
1564
|
+
/**
|
|
1565
|
+
* @internal
|
|
1566
|
+
*/
|
|
1567
|
+
constructor(opts: __ExceptionOptionType<InconsistentQuantities, __BaseException>);
|
|
1527
1568
|
}
|
|
1528
1569
|
/**
|
|
1529
1570
|
* <p>You have reached the maximum number of cache policies for this Amazon Web Services account. For more
|
|
1530
1571
|
* information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
1531
1572
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
1532
1573
|
*/
|
|
1533
|
-
export
|
|
1534
|
-
name: "TooManyCachePolicies";
|
|
1535
|
-
$fault: "client";
|
|
1574
|
+
export declare class TooManyCachePolicies extends __BaseException {
|
|
1575
|
+
readonly name: "TooManyCachePolicies";
|
|
1576
|
+
readonly $fault: "client";
|
|
1536
1577
|
Message?: string;
|
|
1578
|
+
/**
|
|
1579
|
+
* @internal
|
|
1580
|
+
*/
|
|
1581
|
+
constructor(opts: __ExceptionOptionType<TooManyCachePolicies, __BaseException>);
|
|
1537
1582
|
}
|
|
1538
1583
|
/**
|
|
1539
1584
|
* <p>The number of cookies in the cache policy exceeds the maximum. For more information,
|
|
1540
1585
|
* see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
1541
1586
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
1542
1587
|
*/
|
|
1543
|
-
export
|
|
1544
|
-
name: "TooManyCookiesInCachePolicy";
|
|
1545
|
-
$fault: "client";
|
|
1588
|
+
export declare class TooManyCookiesInCachePolicy extends __BaseException {
|
|
1589
|
+
readonly name: "TooManyCookiesInCachePolicy";
|
|
1590
|
+
readonly $fault: "client";
|
|
1546
1591
|
Message?: string;
|
|
1592
|
+
/**
|
|
1593
|
+
* @internal
|
|
1594
|
+
*/
|
|
1595
|
+
constructor(opts: __ExceptionOptionType<TooManyCookiesInCachePolicy, __BaseException>);
|
|
1547
1596
|
}
|
|
1548
1597
|
/**
|
|
1549
1598
|
* <p>The number of headers in the cache policy exceeds the maximum. For more information,
|
|
1550
1599
|
* see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
1551
1600
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
1552
1601
|
*/
|
|
1553
|
-
export
|
|
1554
|
-
name: "TooManyHeadersInCachePolicy";
|
|
1555
|
-
$fault: "client";
|
|
1602
|
+
export declare class TooManyHeadersInCachePolicy extends __BaseException {
|
|
1603
|
+
readonly name: "TooManyHeadersInCachePolicy";
|
|
1604
|
+
readonly $fault: "client";
|
|
1556
1605
|
Message?: string;
|
|
1606
|
+
/**
|
|
1607
|
+
* @internal
|
|
1608
|
+
*/
|
|
1609
|
+
constructor(opts: __ExceptionOptionType<TooManyHeadersInCachePolicy, __BaseException>);
|
|
1557
1610
|
}
|
|
1558
1611
|
/**
|
|
1559
1612
|
* <p>The number of query strings in the cache policy exceeds the maximum. For more
|
|
1560
1613
|
* information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
1561
1614
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
1562
1615
|
*/
|
|
1563
|
-
export
|
|
1564
|
-
name: "TooManyQueryStringsInCachePolicy";
|
|
1565
|
-
$fault: "client";
|
|
1616
|
+
export declare class TooManyQueryStringsInCachePolicy extends __BaseException {
|
|
1617
|
+
readonly name: "TooManyQueryStringsInCachePolicy";
|
|
1618
|
+
readonly $fault: "client";
|
|
1566
1619
|
Message?: string;
|
|
1620
|
+
/**
|
|
1621
|
+
* @internal
|
|
1622
|
+
*/
|
|
1623
|
+
constructor(opts: __ExceptionOptionType<TooManyQueryStringsInCachePolicy, __BaseException>);
|
|
1567
1624
|
}
|
|
1568
1625
|
/**
|
|
1569
1626
|
* <p>If the <code>CallerReference</code> is a value you already sent in a previous request to create an identity but the content
|
|
1570
1627
|
* of the <code>CloudFrontOriginAccessIdentityConfig</code> is different from the original request, CloudFront returns a
|
|
1571
1628
|
* <code>CloudFrontOriginAccessIdentityAlreadyExists</code> error. </p>
|
|
1572
1629
|
*/
|
|
1573
|
-
export
|
|
1574
|
-
name: "CloudFrontOriginAccessIdentityAlreadyExists";
|
|
1575
|
-
$fault: "client";
|
|
1630
|
+
export declare class CloudFrontOriginAccessIdentityAlreadyExists extends __BaseException {
|
|
1631
|
+
readonly name: "CloudFrontOriginAccessIdentityAlreadyExists";
|
|
1632
|
+
readonly $fault: "client";
|
|
1576
1633
|
Message?: string;
|
|
1634
|
+
/**
|
|
1635
|
+
* @internal
|
|
1636
|
+
*/
|
|
1637
|
+
constructor(opts: __ExceptionOptionType<CloudFrontOriginAccessIdentityAlreadyExists, __BaseException>);
|
|
1577
1638
|
}
|
|
1578
1639
|
/**
|
|
1579
1640
|
* <p>Origin access identity configuration. Send a <code>GET</code> request to the
|
|
@@ -1678,26 +1739,38 @@ export declare namespace CreateCloudFrontOriginAccessIdentityResult {
|
|
|
1678
1739
|
/**
|
|
1679
1740
|
* <p>This operation requires a body. Ensure that the body is present and the <code>Content-Type</code> header is set.</p>
|
|
1680
1741
|
*/
|
|
1681
|
-
export
|
|
1682
|
-
name: "MissingBody";
|
|
1683
|
-
$fault: "client";
|
|
1742
|
+
export declare class MissingBody extends __BaseException {
|
|
1743
|
+
readonly name: "MissingBody";
|
|
1744
|
+
readonly $fault: "client";
|
|
1684
1745
|
Message?: string;
|
|
1746
|
+
/**
|
|
1747
|
+
* @internal
|
|
1748
|
+
*/
|
|
1749
|
+
constructor(opts: __ExceptionOptionType<MissingBody, __BaseException>);
|
|
1685
1750
|
}
|
|
1686
1751
|
/**
|
|
1687
1752
|
* <p>Processing your request would cause you to exceed the maximum number of origin access identities allowed.</p>
|
|
1688
1753
|
*/
|
|
1689
|
-
export
|
|
1690
|
-
name: "TooManyCloudFrontOriginAccessIdentities";
|
|
1691
|
-
$fault: "client";
|
|
1754
|
+
export declare class TooManyCloudFrontOriginAccessIdentities extends __BaseException {
|
|
1755
|
+
readonly name: "TooManyCloudFrontOriginAccessIdentities";
|
|
1756
|
+
readonly $fault: "client";
|
|
1692
1757
|
Message?: string;
|
|
1758
|
+
/**
|
|
1759
|
+
* @internal
|
|
1760
|
+
*/
|
|
1761
|
+
constructor(opts: __ExceptionOptionType<TooManyCloudFrontOriginAccessIdentities, __BaseException>);
|
|
1693
1762
|
}
|
|
1694
1763
|
/**
|
|
1695
1764
|
* <p>The CNAME specified is already defined for CloudFront.</p>
|
|
1696
1765
|
*/
|
|
1697
|
-
export
|
|
1698
|
-
name: "CNAMEAlreadyExists";
|
|
1699
|
-
$fault: "client";
|
|
1766
|
+
export declare class CNAMEAlreadyExists extends __BaseException {
|
|
1767
|
+
readonly name: "CNAMEAlreadyExists";
|
|
1768
|
+
readonly $fault: "client";
|
|
1700
1769
|
Message?: string;
|
|
1770
|
+
/**
|
|
1771
|
+
* @internal
|
|
1772
|
+
*/
|
|
1773
|
+
constructor(opts: __ExceptionOptionType<CNAMEAlreadyExists, __BaseException>);
|
|
1701
1774
|
}
|
|
1702
1775
|
/**
|
|
1703
1776
|
* <p>A complex type that controls:</p>
|
|
@@ -3111,181 +3184,269 @@ export declare namespace CreateDistributionResult {
|
|
|
3111
3184
|
/**
|
|
3112
3185
|
* <p>The caller reference you attempted to create the distribution with is associated with another distribution.</p>
|
|
3113
3186
|
*/
|
|
3114
|
-
export
|
|
3115
|
-
name: "DistributionAlreadyExists";
|
|
3116
|
-
$fault: "client";
|
|
3187
|
+
export declare class DistributionAlreadyExists extends __BaseException {
|
|
3188
|
+
readonly name: "DistributionAlreadyExists";
|
|
3189
|
+
readonly $fault: "client";
|
|
3117
3190
|
Message?: string;
|
|
3191
|
+
/**
|
|
3192
|
+
* @internal
|
|
3193
|
+
*/
|
|
3194
|
+
constructor(opts: __ExceptionOptionType<DistributionAlreadyExists, __BaseException>);
|
|
3118
3195
|
}
|
|
3119
3196
|
/**
|
|
3120
3197
|
* <p>The specified configuration for field-level encryption can't be associated with the specified cache behavior.</p>
|
|
3121
3198
|
*/
|
|
3122
|
-
export
|
|
3123
|
-
name: "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior";
|
|
3124
|
-
$fault: "client";
|
|
3199
|
+
export declare class IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior extends __BaseException {
|
|
3200
|
+
readonly name: "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior";
|
|
3201
|
+
readonly $fault: "client";
|
|
3125
3202
|
Message?: string;
|
|
3203
|
+
/**
|
|
3204
|
+
* @internal
|
|
3205
|
+
*/
|
|
3206
|
+
constructor(opts: __ExceptionOptionType<IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior, __BaseException>);
|
|
3126
3207
|
}
|
|
3127
3208
|
/**
|
|
3128
3209
|
* <p>The default root object file name is too big or contains an invalid character.</p>
|
|
3129
3210
|
*/
|
|
3130
|
-
export
|
|
3131
|
-
name: "InvalidDefaultRootObject";
|
|
3132
|
-
$fault: "client";
|
|
3211
|
+
export declare class InvalidDefaultRootObject extends __BaseException {
|
|
3212
|
+
readonly name: "InvalidDefaultRootObject";
|
|
3213
|
+
readonly $fault: "client";
|
|
3133
3214
|
Message?: string;
|
|
3215
|
+
/**
|
|
3216
|
+
* @internal
|
|
3217
|
+
*/
|
|
3218
|
+
constructor(opts: __ExceptionOptionType<InvalidDefaultRootObject, __BaseException>);
|
|
3134
3219
|
}
|
|
3135
3220
|
/**
|
|
3136
3221
|
* <p>An invalid error code was specified.</p>
|
|
3137
3222
|
*/
|
|
3138
|
-
export
|
|
3139
|
-
name: "InvalidErrorCode";
|
|
3140
|
-
$fault: "client";
|
|
3223
|
+
export declare class InvalidErrorCode extends __BaseException {
|
|
3224
|
+
readonly name: "InvalidErrorCode";
|
|
3225
|
+
readonly $fault: "client";
|
|
3141
3226
|
Message?: string;
|
|
3227
|
+
/**
|
|
3228
|
+
* @internal
|
|
3229
|
+
*/
|
|
3230
|
+
constructor(opts: __ExceptionOptionType<InvalidErrorCode, __BaseException>);
|
|
3142
3231
|
}
|
|
3143
3232
|
/**
|
|
3144
3233
|
* <p>Your request contains forward cookies option which doesn't match with the expectation for the <code>whitelisted</code>
|
|
3145
3234
|
* list of cookie names. Either list of cookie names has been specified when not allowed or list of cookie names is missing when expected.</p>
|
|
3146
3235
|
*/
|
|
3147
|
-
export
|
|
3148
|
-
name: "InvalidForwardCookies";
|
|
3149
|
-
$fault: "client";
|
|
3236
|
+
export declare class InvalidForwardCookies extends __BaseException {
|
|
3237
|
+
readonly name: "InvalidForwardCookies";
|
|
3238
|
+
readonly $fault: "client";
|
|
3150
3239
|
Message?: string;
|
|
3240
|
+
/**
|
|
3241
|
+
* @internal
|
|
3242
|
+
*/
|
|
3243
|
+
constructor(opts: __ExceptionOptionType<InvalidForwardCookies, __BaseException>);
|
|
3151
3244
|
}
|
|
3152
3245
|
/**
|
|
3153
3246
|
* <p>A CloudFront function association is invalid.</p>
|
|
3154
3247
|
*/
|
|
3155
|
-
export
|
|
3156
|
-
name: "InvalidFunctionAssociation";
|
|
3157
|
-
$fault: "client";
|
|
3248
|
+
export declare class InvalidFunctionAssociation extends __BaseException {
|
|
3249
|
+
readonly name: "InvalidFunctionAssociation";
|
|
3250
|
+
readonly $fault: "client";
|
|
3158
3251
|
Message?: string;
|
|
3252
|
+
/**
|
|
3253
|
+
* @internal
|
|
3254
|
+
*/
|
|
3255
|
+
constructor(opts: __ExceptionOptionType<InvalidFunctionAssociation, __BaseException>);
|
|
3159
3256
|
}
|
|
3160
3257
|
/**
|
|
3161
3258
|
* <p>The specified geo restriction parameter is not valid.</p>
|
|
3162
3259
|
*/
|
|
3163
|
-
export
|
|
3164
|
-
name: "InvalidGeoRestrictionParameter";
|
|
3165
|
-
$fault: "client";
|
|
3260
|
+
export declare class InvalidGeoRestrictionParameter extends __BaseException {
|
|
3261
|
+
readonly name: "InvalidGeoRestrictionParameter";
|
|
3262
|
+
readonly $fault: "client";
|
|
3166
3263
|
Message?: string;
|
|
3264
|
+
/**
|
|
3265
|
+
* @internal
|
|
3266
|
+
*/
|
|
3267
|
+
constructor(opts: __ExceptionOptionType<InvalidGeoRestrictionParameter, __BaseException>);
|
|
3167
3268
|
}
|
|
3168
3269
|
/**
|
|
3169
3270
|
* <p>The headers specified are not valid for an Amazon S3 origin.</p>
|
|
3170
3271
|
*/
|
|
3171
|
-
export
|
|
3172
|
-
name: "InvalidHeadersForS3Origin";
|
|
3173
|
-
$fault: "client";
|
|
3272
|
+
export declare class InvalidHeadersForS3Origin extends __BaseException {
|
|
3273
|
+
readonly name: "InvalidHeadersForS3Origin";
|
|
3274
|
+
readonly $fault: "client";
|
|
3174
3275
|
Message?: string;
|
|
3276
|
+
/**
|
|
3277
|
+
* @internal
|
|
3278
|
+
*/
|
|
3279
|
+
constructor(opts: __ExceptionOptionType<InvalidHeadersForS3Origin, __BaseException>);
|
|
3175
3280
|
}
|
|
3176
3281
|
/**
|
|
3177
3282
|
* <p>The specified Lambda@Edge function association is invalid.</p>
|
|
3178
3283
|
*/
|
|
3179
|
-
export
|
|
3180
|
-
name: "InvalidLambdaFunctionAssociation";
|
|
3181
|
-
$fault: "client";
|
|
3284
|
+
export declare class InvalidLambdaFunctionAssociation extends __BaseException {
|
|
3285
|
+
readonly name: "InvalidLambdaFunctionAssociation";
|
|
3286
|
+
readonly $fault: "client";
|
|
3182
3287
|
Message?: string;
|
|
3288
|
+
/**
|
|
3289
|
+
* @internal
|
|
3290
|
+
*/
|
|
3291
|
+
constructor(opts: __ExceptionOptionType<InvalidLambdaFunctionAssociation, __BaseException>);
|
|
3183
3292
|
}
|
|
3184
3293
|
/**
|
|
3185
3294
|
* <p>The location code specified is not valid.</p>
|
|
3186
3295
|
*/
|
|
3187
|
-
export
|
|
3188
|
-
name: "InvalidLocationCode";
|
|
3189
|
-
$fault: "client";
|
|
3296
|
+
export declare class InvalidLocationCode extends __BaseException {
|
|
3297
|
+
readonly name: "InvalidLocationCode";
|
|
3298
|
+
readonly $fault: "client";
|
|
3190
3299
|
Message?: string;
|
|
3300
|
+
/**
|
|
3301
|
+
* @internal
|
|
3302
|
+
*/
|
|
3303
|
+
constructor(opts: __ExceptionOptionType<InvalidLocationCode, __BaseException>);
|
|
3191
3304
|
}
|
|
3192
3305
|
/**
|
|
3193
3306
|
* <p>The minimum protocol version specified is not valid.</p>
|
|
3194
3307
|
*/
|
|
3195
|
-
export
|
|
3196
|
-
name: "InvalidMinimumProtocolVersion";
|
|
3197
|
-
$fault: "client";
|
|
3308
|
+
export declare class InvalidMinimumProtocolVersion extends __BaseException {
|
|
3309
|
+
readonly name: "InvalidMinimumProtocolVersion";
|
|
3310
|
+
readonly $fault: "client";
|
|
3198
3311
|
Message?: string;
|
|
3312
|
+
/**
|
|
3313
|
+
* @internal
|
|
3314
|
+
*/
|
|
3315
|
+
constructor(opts: __ExceptionOptionType<InvalidMinimumProtocolVersion, __BaseException>);
|
|
3199
3316
|
}
|
|
3200
3317
|
/**
|
|
3201
3318
|
* <p>The Amazon S3 origin server specified does not refer to a valid Amazon S3 bucket.</p>
|
|
3202
3319
|
*/
|
|
3203
|
-
export
|
|
3204
|
-
name: "InvalidOrigin";
|
|
3205
|
-
$fault: "client";
|
|
3320
|
+
export declare class InvalidOrigin extends __BaseException {
|
|
3321
|
+
readonly name: "InvalidOrigin";
|
|
3322
|
+
readonly $fault: "client";
|
|
3206
3323
|
Message?: string;
|
|
3324
|
+
/**
|
|
3325
|
+
* @internal
|
|
3326
|
+
*/
|
|
3327
|
+
constructor(opts: __ExceptionOptionType<InvalidOrigin, __BaseException>);
|
|
3207
3328
|
}
|
|
3208
3329
|
/**
|
|
3209
3330
|
* <p>The origin access identity is not valid or doesn't exist.</p>
|
|
3210
3331
|
*/
|
|
3211
|
-
export
|
|
3212
|
-
name: "InvalidOriginAccessIdentity";
|
|
3213
|
-
$fault: "client";
|
|
3332
|
+
export declare class InvalidOriginAccessIdentity extends __BaseException {
|
|
3333
|
+
readonly name: "InvalidOriginAccessIdentity";
|
|
3334
|
+
readonly $fault: "client";
|
|
3214
3335
|
Message?: string;
|
|
3336
|
+
/**
|
|
3337
|
+
* @internal
|
|
3338
|
+
*/
|
|
3339
|
+
constructor(opts: __ExceptionOptionType<InvalidOriginAccessIdentity, __BaseException>);
|
|
3215
3340
|
}
|
|
3216
3341
|
/**
|
|
3217
3342
|
* <p>The keep alive timeout specified for the origin is not valid.</p>
|
|
3218
3343
|
*/
|
|
3219
|
-
export
|
|
3220
|
-
name: "InvalidOriginKeepaliveTimeout";
|
|
3221
|
-
$fault: "client";
|
|
3344
|
+
export declare class InvalidOriginKeepaliveTimeout extends __BaseException {
|
|
3345
|
+
readonly name: "InvalidOriginKeepaliveTimeout";
|
|
3346
|
+
readonly $fault: "client";
|
|
3222
3347
|
Message?: string;
|
|
3348
|
+
/**
|
|
3349
|
+
* @internal
|
|
3350
|
+
*/
|
|
3351
|
+
constructor(opts: __ExceptionOptionType<InvalidOriginKeepaliveTimeout, __BaseException>);
|
|
3223
3352
|
}
|
|
3224
3353
|
/**
|
|
3225
3354
|
* <p>The read timeout specified for the origin is not valid.</p>
|
|
3226
3355
|
*/
|
|
3227
|
-
export
|
|
3228
|
-
name: "InvalidOriginReadTimeout";
|
|
3229
|
-
$fault: "client";
|
|
3356
|
+
export declare class InvalidOriginReadTimeout extends __BaseException {
|
|
3357
|
+
readonly name: "InvalidOriginReadTimeout";
|
|
3358
|
+
readonly $fault: "client";
|
|
3230
3359
|
Message?: string;
|
|
3360
|
+
/**
|
|
3361
|
+
* @internal
|
|
3362
|
+
*/
|
|
3363
|
+
constructor(opts: __ExceptionOptionType<InvalidOriginReadTimeout, __BaseException>);
|
|
3231
3364
|
}
|
|
3232
3365
|
/**
|
|
3233
3366
|
* <p>You cannot specify SSLv3 as the minimum protocol version if you only want to support only clients that support
|
|
3234
3367
|
* Server Name Indication (SNI).</p>
|
|
3235
3368
|
*/
|
|
3236
|
-
export
|
|
3237
|
-
name: "InvalidProtocolSettings";
|
|
3238
|
-
$fault: "client";
|
|
3369
|
+
export declare class InvalidProtocolSettings extends __BaseException {
|
|
3370
|
+
readonly name: "InvalidProtocolSettings";
|
|
3371
|
+
readonly $fault: "client";
|
|
3239
3372
|
Message?: string;
|
|
3373
|
+
/**
|
|
3374
|
+
* @internal
|
|
3375
|
+
*/
|
|
3376
|
+
constructor(opts: __ExceptionOptionType<InvalidProtocolSettings, __BaseException>);
|
|
3240
3377
|
}
|
|
3241
3378
|
/**
|
|
3242
3379
|
* <p>The query string parameters specified are not valid.</p>
|
|
3243
3380
|
*/
|
|
3244
|
-
export
|
|
3245
|
-
name: "InvalidQueryStringParameters";
|
|
3246
|
-
$fault: "client";
|
|
3381
|
+
export declare class InvalidQueryStringParameters extends __BaseException {
|
|
3382
|
+
readonly name: "InvalidQueryStringParameters";
|
|
3383
|
+
readonly $fault: "client";
|
|
3247
3384
|
Message?: string;
|
|
3385
|
+
/**
|
|
3386
|
+
* @internal
|
|
3387
|
+
*/
|
|
3388
|
+
constructor(opts: __ExceptionOptionType<InvalidQueryStringParameters, __BaseException>);
|
|
3248
3389
|
}
|
|
3249
3390
|
/**
|
|
3250
3391
|
* <p>The relative path is too big, is not URL-encoded, or does not begin with a slash (/).</p>
|
|
3251
3392
|
*/
|
|
3252
|
-
export
|
|
3253
|
-
name: "InvalidRelativePath";
|
|
3254
|
-
$fault: "client";
|
|
3393
|
+
export declare class InvalidRelativePath extends __BaseException {
|
|
3394
|
+
readonly name: "InvalidRelativePath";
|
|
3395
|
+
readonly $fault: "client";
|
|
3255
3396
|
Message?: string;
|
|
3397
|
+
/**
|
|
3398
|
+
* @internal
|
|
3399
|
+
*/
|
|
3400
|
+
constructor(opts: __ExceptionOptionType<InvalidRelativePath, __BaseException>);
|
|
3256
3401
|
}
|
|
3257
3402
|
/**
|
|
3258
3403
|
* <p>This operation requires the HTTPS protocol. Ensure that you specify the HTTPS protocol in your request, or omit the
|
|
3259
3404
|
* <code>RequiredProtocols</code> element from your distribution configuration.</p>
|
|
3260
3405
|
*/
|
|
3261
|
-
export
|
|
3262
|
-
name: "InvalidRequiredProtocol";
|
|
3263
|
-
$fault: "client";
|
|
3406
|
+
export declare class InvalidRequiredProtocol extends __BaseException {
|
|
3407
|
+
readonly name: "InvalidRequiredProtocol";
|
|
3408
|
+
readonly $fault: "client";
|
|
3264
3409
|
Message?: string;
|
|
3410
|
+
/**
|
|
3411
|
+
* @internal
|
|
3412
|
+
*/
|
|
3413
|
+
constructor(opts: __ExceptionOptionType<InvalidRequiredProtocol, __BaseException>);
|
|
3265
3414
|
}
|
|
3266
3415
|
/**
|
|
3267
3416
|
* <p>A response code is not valid.</p>
|
|
3268
3417
|
*/
|
|
3269
|
-
export
|
|
3270
|
-
name: "InvalidResponseCode";
|
|
3271
|
-
$fault: "client";
|
|
3418
|
+
export declare class InvalidResponseCode extends __BaseException {
|
|
3419
|
+
readonly name: "InvalidResponseCode";
|
|
3420
|
+
readonly $fault: "client";
|
|
3272
3421
|
Message?: string;
|
|
3422
|
+
/**
|
|
3423
|
+
* @internal
|
|
3424
|
+
*/
|
|
3425
|
+
constructor(opts: __ExceptionOptionType<InvalidResponseCode, __BaseException>);
|
|
3273
3426
|
}
|
|
3274
3427
|
/**
|
|
3275
3428
|
* <p>The TTL order specified is not valid.</p>
|
|
3276
3429
|
*/
|
|
3277
|
-
export
|
|
3278
|
-
name: "InvalidTTLOrder";
|
|
3279
|
-
$fault: "client";
|
|
3430
|
+
export declare class InvalidTTLOrder extends __BaseException {
|
|
3431
|
+
readonly name: "InvalidTTLOrder";
|
|
3432
|
+
readonly $fault: "client";
|
|
3280
3433
|
Message?: string;
|
|
3434
|
+
/**
|
|
3435
|
+
* @internal
|
|
3436
|
+
*/
|
|
3437
|
+
constructor(opts: __ExceptionOptionType<InvalidTTLOrder, __BaseException>);
|
|
3281
3438
|
}
|
|
3282
3439
|
/**
|
|
3283
3440
|
* <p>A viewer certificate specified is not valid.</p>
|
|
3284
3441
|
*/
|
|
3285
|
-
export
|
|
3286
|
-
name: "InvalidViewerCertificate";
|
|
3287
|
-
$fault: "client";
|
|
3442
|
+
export declare class InvalidViewerCertificate extends __BaseException {
|
|
3443
|
+
readonly name: "InvalidViewerCertificate";
|
|
3444
|
+
readonly $fault: "client";
|
|
3288
3445
|
Message?: string;
|
|
3446
|
+
/**
|
|
3447
|
+
* @internal
|
|
3448
|
+
*/
|
|
3449
|
+
constructor(opts: __ExceptionOptionType<InvalidViewerCertificate, __BaseException>);
|
|
3289
3450
|
}
|
|
3290
3451
|
/**
|
|
3291
3452
|
* <p>A web ACL ID specified is not valid. To specify a web ACL created using the latest
|
|
@@ -3294,136 +3455,200 @@ export interface InvalidViewerCertificate extends __SmithyException, $MetadataBe
|
|
|
3294
3455
|
* To specify a web ACL created using WAF Classic, use the ACL ID, for example
|
|
3295
3456
|
* <code>473e64fd-f30b-4765-81a0-62ad96dd167a</code>.</p>
|
|
3296
3457
|
*/
|
|
3297
|
-
export
|
|
3298
|
-
name: "InvalidWebACLId";
|
|
3299
|
-
$fault: "client";
|
|
3458
|
+
export declare class InvalidWebACLId extends __BaseException {
|
|
3459
|
+
readonly name: "InvalidWebACLId";
|
|
3460
|
+
readonly $fault: "client";
|
|
3300
3461
|
Message?: string;
|
|
3462
|
+
/**
|
|
3463
|
+
* @internal
|
|
3464
|
+
*/
|
|
3465
|
+
constructor(opts: __ExceptionOptionType<InvalidWebACLId, __BaseException>);
|
|
3301
3466
|
}
|
|
3302
3467
|
/**
|
|
3303
3468
|
* <p>The cache policy does not exist.</p>
|
|
3304
3469
|
*/
|
|
3305
|
-
export
|
|
3306
|
-
name: "NoSuchCachePolicy";
|
|
3307
|
-
$fault: "client";
|
|
3470
|
+
export declare class NoSuchCachePolicy extends __BaseException {
|
|
3471
|
+
readonly name: "NoSuchCachePolicy";
|
|
3472
|
+
readonly $fault: "client";
|
|
3308
3473
|
Message?: string;
|
|
3474
|
+
/**
|
|
3475
|
+
* @internal
|
|
3476
|
+
*/
|
|
3477
|
+
constructor(opts: __ExceptionOptionType<NoSuchCachePolicy, __BaseException>);
|
|
3309
3478
|
}
|
|
3310
3479
|
/**
|
|
3311
3480
|
* <p>The specified configuration for field-level encryption doesn't exist.</p>
|
|
3312
3481
|
*/
|
|
3313
|
-
export
|
|
3314
|
-
name: "NoSuchFieldLevelEncryptionConfig";
|
|
3315
|
-
$fault: "client";
|
|
3482
|
+
export declare class NoSuchFieldLevelEncryptionConfig extends __BaseException {
|
|
3483
|
+
readonly name: "NoSuchFieldLevelEncryptionConfig";
|
|
3484
|
+
readonly $fault: "client";
|
|
3316
3485
|
Message?: string;
|
|
3486
|
+
/**
|
|
3487
|
+
* @internal
|
|
3488
|
+
*/
|
|
3489
|
+
constructor(opts: __ExceptionOptionType<NoSuchFieldLevelEncryptionConfig, __BaseException>);
|
|
3317
3490
|
}
|
|
3318
3491
|
/**
|
|
3319
3492
|
* <p>No origin exists with the specified <code>Origin Id</code>. </p>
|
|
3320
3493
|
*/
|
|
3321
|
-
export
|
|
3322
|
-
name: "NoSuchOrigin";
|
|
3323
|
-
$fault: "client";
|
|
3494
|
+
export declare class NoSuchOrigin extends __BaseException {
|
|
3495
|
+
readonly name: "NoSuchOrigin";
|
|
3496
|
+
readonly $fault: "client";
|
|
3324
3497
|
Message?: string;
|
|
3498
|
+
/**
|
|
3499
|
+
* @internal
|
|
3500
|
+
*/
|
|
3501
|
+
constructor(opts: __ExceptionOptionType<NoSuchOrigin, __BaseException>);
|
|
3325
3502
|
}
|
|
3326
3503
|
/**
|
|
3327
3504
|
* <p>The origin request policy does not exist.</p>
|
|
3328
3505
|
*/
|
|
3329
|
-
export
|
|
3330
|
-
name: "NoSuchOriginRequestPolicy";
|
|
3331
|
-
$fault: "client";
|
|
3506
|
+
export declare class NoSuchOriginRequestPolicy extends __BaseException {
|
|
3507
|
+
readonly name: "NoSuchOriginRequestPolicy";
|
|
3508
|
+
readonly $fault: "client";
|
|
3332
3509
|
Message?: string;
|
|
3510
|
+
/**
|
|
3511
|
+
* @internal
|
|
3512
|
+
*/
|
|
3513
|
+
constructor(opts: __ExceptionOptionType<NoSuchOriginRequestPolicy, __BaseException>);
|
|
3333
3514
|
}
|
|
3334
3515
|
/**
|
|
3335
3516
|
* <p>The real-time log configuration does not exist.</p>
|
|
3336
3517
|
*/
|
|
3337
|
-
export
|
|
3338
|
-
name: "NoSuchRealtimeLogConfig";
|
|
3339
|
-
$fault: "client";
|
|
3518
|
+
export declare class NoSuchRealtimeLogConfig extends __BaseException {
|
|
3519
|
+
readonly name: "NoSuchRealtimeLogConfig";
|
|
3520
|
+
readonly $fault: "client";
|
|
3340
3521
|
Message?: string;
|
|
3522
|
+
/**
|
|
3523
|
+
* @internal
|
|
3524
|
+
*/
|
|
3525
|
+
constructor(opts: __ExceptionOptionType<NoSuchRealtimeLogConfig, __BaseException>);
|
|
3341
3526
|
}
|
|
3342
3527
|
/**
|
|
3343
3528
|
* <p>The response headers policy does not exist.</p>
|
|
3344
3529
|
*/
|
|
3345
|
-
export
|
|
3346
|
-
name: "NoSuchResponseHeadersPolicy";
|
|
3347
|
-
$fault: "client";
|
|
3530
|
+
export declare class NoSuchResponseHeadersPolicy extends __BaseException {
|
|
3531
|
+
readonly name: "NoSuchResponseHeadersPolicy";
|
|
3532
|
+
readonly $fault: "client";
|
|
3348
3533
|
Message?: string;
|
|
3534
|
+
/**
|
|
3535
|
+
* @internal
|
|
3536
|
+
*/
|
|
3537
|
+
constructor(opts: __ExceptionOptionType<NoSuchResponseHeadersPolicy, __BaseException>);
|
|
3349
3538
|
}
|
|
3350
3539
|
/**
|
|
3351
3540
|
* <p>The specified real-time log configuration belongs to a different Amazon Web Services account.</p>
|
|
3352
3541
|
*/
|
|
3353
|
-
export
|
|
3354
|
-
name: "RealtimeLogConfigOwnerMismatch";
|
|
3355
|
-
$fault: "client";
|
|
3542
|
+
export declare class RealtimeLogConfigOwnerMismatch extends __BaseException {
|
|
3543
|
+
readonly name: "RealtimeLogConfigOwnerMismatch";
|
|
3544
|
+
readonly $fault: "client";
|
|
3356
3545
|
Message?: string;
|
|
3546
|
+
/**
|
|
3547
|
+
* @internal
|
|
3548
|
+
*/
|
|
3549
|
+
constructor(opts: __ExceptionOptionType<RealtimeLogConfigOwnerMismatch, __BaseException>);
|
|
3357
3550
|
}
|
|
3358
3551
|
/**
|
|
3359
3552
|
* <p>You cannot create more cache behaviors for the distribution.</p>
|
|
3360
3553
|
*/
|
|
3361
|
-
export
|
|
3362
|
-
name: "TooManyCacheBehaviors";
|
|
3363
|
-
$fault: "client";
|
|
3554
|
+
export declare class TooManyCacheBehaviors extends __BaseException {
|
|
3555
|
+
readonly name: "TooManyCacheBehaviors";
|
|
3556
|
+
readonly $fault: "client";
|
|
3364
3557
|
Message?: string;
|
|
3558
|
+
/**
|
|
3559
|
+
* @internal
|
|
3560
|
+
*/
|
|
3561
|
+
constructor(opts: __ExceptionOptionType<TooManyCacheBehaviors, __BaseException>);
|
|
3365
3562
|
}
|
|
3366
3563
|
/**
|
|
3367
3564
|
* <p>You cannot create anymore custom SSL/TLS certificates.</p>
|
|
3368
3565
|
*/
|
|
3369
|
-
export
|
|
3370
|
-
name: "TooManyCertificates";
|
|
3371
|
-
$fault: "client";
|
|
3566
|
+
export declare class TooManyCertificates extends __BaseException {
|
|
3567
|
+
readonly name: "TooManyCertificates";
|
|
3568
|
+
readonly $fault: "client";
|
|
3372
3569
|
Message?: string;
|
|
3570
|
+
/**
|
|
3571
|
+
* @internal
|
|
3572
|
+
*/
|
|
3573
|
+
constructor(opts: __ExceptionOptionType<TooManyCertificates, __BaseException>);
|
|
3373
3574
|
}
|
|
3374
3575
|
/**
|
|
3375
3576
|
* <p>Your request contains more cookie names in the whitelist than are allowed per cache behavior.</p>
|
|
3376
3577
|
*/
|
|
3377
|
-
export
|
|
3378
|
-
name: "TooManyCookieNamesInWhiteList";
|
|
3379
|
-
$fault: "client";
|
|
3578
|
+
export declare class TooManyCookieNamesInWhiteList extends __BaseException {
|
|
3579
|
+
readonly name: "TooManyCookieNamesInWhiteList";
|
|
3580
|
+
readonly $fault: "client";
|
|
3380
3581
|
Message?: string;
|
|
3582
|
+
/**
|
|
3583
|
+
* @internal
|
|
3584
|
+
*/
|
|
3585
|
+
constructor(opts: __ExceptionOptionType<TooManyCookieNamesInWhiteList, __BaseException>);
|
|
3381
3586
|
}
|
|
3382
3587
|
/**
|
|
3383
3588
|
* <p>Processing your request would cause you to exceed the maximum number of distributions allowed.</p>
|
|
3384
3589
|
*/
|
|
3385
|
-
export
|
|
3386
|
-
name: "TooManyDistributions";
|
|
3387
|
-
$fault: "client";
|
|
3590
|
+
export declare class TooManyDistributions extends __BaseException {
|
|
3591
|
+
readonly name: "TooManyDistributions";
|
|
3592
|
+
readonly $fault: "client";
|
|
3388
3593
|
Message?: string;
|
|
3594
|
+
/**
|
|
3595
|
+
* @internal
|
|
3596
|
+
*/
|
|
3597
|
+
constructor(opts: __ExceptionOptionType<TooManyDistributions, __BaseException>);
|
|
3389
3598
|
}
|
|
3390
3599
|
/**
|
|
3391
3600
|
* <p>The maximum number of distributions have been associated with the specified cache
|
|
3392
3601
|
* policy. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
3393
3602
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
3394
3603
|
*/
|
|
3395
|
-
export
|
|
3396
|
-
name: "TooManyDistributionsAssociatedToCachePolicy";
|
|
3397
|
-
$fault: "client";
|
|
3604
|
+
export declare class TooManyDistributionsAssociatedToCachePolicy extends __BaseException {
|
|
3605
|
+
readonly name: "TooManyDistributionsAssociatedToCachePolicy";
|
|
3606
|
+
readonly $fault: "client";
|
|
3398
3607
|
Message?: string;
|
|
3608
|
+
/**
|
|
3609
|
+
* @internal
|
|
3610
|
+
*/
|
|
3611
|
+
constructor(opts: __ExceptionOptionType<TooManyDistributionsAssociatedToCachePolicy, __BaseException>);
|
|
3399
3612
|
}
|
|
3400
3613
|
/**
|
|
3401
3614
|
* <p>The maximum number of distributions have been associated with the specified configuration for field-level encryption.</p>
|
|
3402
3615
|
*/
|
|
3403
|
-
export
|
|
3404
|
-
name: "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig";
|
|
3405
|
-
$fault: "client";
|
|
3616
|
+
export declare class TooManyDistributionsAssociatedToFieldLevelEncryptionConfig extends __BaseException {
|
|
3617
|
+
readonly name: "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig";
|
|
3618
|
+
readonly $fault: "client";
|
|
3406
3619
|
Message?: string;
|
|
3620
|
+
/**
|
|
3621
|
+
* @internal
|
|
3622
|
+
*/
|
|
3623
|
+
constructor(opts: __ExceptionOptionType<TooManyDistributionsAssociatedToFieldLevelEncryptionConfig, __BaseException>);
|
|
3407
3624
|
}
|
|
3408
3625
|
/**
|
|
3409
3626
|
* <p>The number of distributions that reference this key group is more than the maximum
|
|
3410
3627
|
* allowed. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
3411
3628
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
3412
3629
|
*/
|
|
3413
|
-
export
|
|
3414
|
-
name: "TooManyDistributionsAssociatedToKeyGroup";
|
|
3415
|
-
$fault: "client";
|
|
3630
|
+
export declare class TooManyDistributionsAssociatedToKeyGroup extends __BaseException {
|
|
3631
|
+
readonly name: "TooManyDistributionsAssociatedToKeyGroup";
|
|
3632
|
+
readonly $fault: "client";
|
|
3416
3633
|
Message?: string;
|
|
3634
|
+
/**
|
|
3635
|
+
* @internal
|
|
3636
|
+
*/
|
|
3637
|
+
constructor(opts: __ExceptionOptionType<TooManyDistributionsAssociatedToKeyGroup, __BaseException>);
|
|
3417
3638
|
}
|
|
3418
3639
|
/**
|
|
3419
3640
|
* <p>The maximum number of distributions have been associated with the specified origin
|
|
3420
3641
|
* request policy. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
3421
3642
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
3422
3643
|
*/
|
|
3423
|
-
export
|
|
3424
|
-
name: "TooManyDistributionsAssociatedToOriginRequestPolicy";
|
|
3425
|
-
$fault: "client";
|
|
3644
|
+
export declare class TooManyDistributionsAssociatedToOriginRequestPolicy extends __BaseException {
|
|
3645
|
+
readonly name: "TooManyDistributionsAssociatedToOriginRequestPolicy";
|
|
3646
|
+
readonly $fault: "client";
|
|
3426
3647
|
Message?: string;
|
|
3648
|
+
/**
|
|
3649
|
+
* @internal
|
|
3650
|
+
*/
|
|
3651
|
+
constructor(opts: __ExceptionOptionType<TooManyDistributionsAssociatedToOriginRequestPolicy, __BaseException>);
|
|
3427
3652
|
}
|
|
3428
3653
|
/**
|
|
3429
3654
|
* <p>The maximum number of distributions have been associated with the specified response headers
|
|
@@ -3431,130 +3656,190 @@ export interface TooManyDistributionsAssociatedToOriginRequestPolicy extends __S
|
|
|
3431
3656
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
3432
3657
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
3433
3658
|
*/
|
|
3434
|
-
export
|
|
3435
|
-
name: "TooManyDistributionsAssociatedToResponseHeadersPolicy";
|
|
3436
|
-
$fault: "client";
|
|
3659
|
+
export declare class TooManyDistributionsAssociatedToResponseHeadersPolicy extends __BaseException {
|
|
3660
|
+
readonly name: "TooManyDistributionsAssociatedToResponseHeadersPolicy";
|
|
3661
|
+
readonly $fault: "client";
|
|
3437
3662
|
Message?: string;
|
|
3663
|
+
/**
|
|
3664
|
+
* @internal
|
|
3665
|
+
*/
|
|
3666
|
+
constructor(opts: __ExceptionOptionType<TooManyDistributionsAssociatedToResponseHeadersPolicy, __BaseException>);
|
|
3438
3667
|
}
|
|
3439
3668
|
/**
|
|
3440
3669
|
* <p>You have reached the maximum number of distributions that are associated with a CloudFront
|
|
3441
3670
|
* function. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
3442
3671
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
3443
3672
|
*/
|
|
3444
|
-
export
|
|
3445
|
-
name: "TooManyDistributionsWithFunctionAssociations";
|
|
3446
|
-
$fault: "client";
|
|
3673
|
+
export declare class TooManyDistributionsWithFunctionAssociations extends __BaseException {
|
|
3674
|
+
readonly name: "TooManyDistributionsWithFunctionAssociations";
|
|
3675
|
+
readonly $fault: "client";
|
|
3447
3676
|
Message?: string;
|
|
3677
|
+
/**
|
|
3678
|
+
* @internal
|
|
3679
|
+
*/
|
|
3680
|
+
constructor(opts: __ExceptionOptionType<TooManyDistributionsWithFunctionAssociations, __BaseException>);
|
|
3448
3681
|
}
|
|
3449
3682
|
/**
|
|
3450
3683
|
* <p>Processing your request would cause the maximum number of distributions with Lambda@Edge function associations per owner
|
|
3451
3684
|
* to be exceeded.</p>
|
|
3452
3685
|
*/
|
|
3453
|
-
export
|
|
3454
|
-
name: "TooManyDistributionsWithLambdaAssociations";
|
|
3455
|
-
$fault: "client";
|
|
3686
|
+
export declare class TooManyDistributionsWithLambdaAssociations extends __BaseException {
|
|
3687
|
+
readonly name: "TooManyDistributionsWithLambdaAssociations";
|
|
3688
|
+
readonly $fault: "client";
|
|
3456
3689
|
Message?: string;
|
|
3690
|
+
/**
|
|
3691
|
+
* @internal
|
|
3692
|
+
*/
|
|
3693
|
+
constructor(opts: __ExceptionOptionType<TooManyDistributionsWithLambdaAssociations, __BaseException>);
|
|
3457
3694
|
}
|
|
3458
3695
|
/**
|
|
3459
3696
|
* <p>The maximum number of distributions have been associated with the specified Lambda@Edge
|
|
3460
3697
|
* function.</p>
|
|
3461
3698
|
*/
|
|
3462
|
-
export
|
|
3463
|
-
name: "TooManyDistributionsWithSingleFunctionARN";
|
|
3464
|
-
$fault: "client";
|
|
3699
|
+
export declare class TooManyDistributionsWithSingleFunctionARN extends __BaseException {
|
|
3700
|
+
readonly name: "TooManyDistributionsWithSingleFunctionARN";
|
|
3701
|
+
readonly $fault: "client";
|
|
3465
3702
|
Message?: string;
|
|
3703
|
+
/**
|
|
3704
|
+
* @internal
|
|
3705
|
+
*/
|
|
3706
|
+
constructor(opts: __ExceptionOptionType<TooManyDistributionsWithSingleFunctionARN, __BaseException>);
|
|
3466
3707
|
}
|
|
3467
3708
|
/**
|
|
3468
3709
|
* <p>You have reached the maximum number of CloudFront function associations for this
|
|
3469
3710
|
* distribution. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
3470
3711
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
3471
3712
|
*/
|
|
3472
|
-
export
|
|
3473
|
-
name: "TooManyFunctionAssociations";
|
|
3474
|
-
$fault: "client";
|
|
3713
|
+
export declare class TooManyFunctionAssociations extends __BaseException {
|
|
3714
|
+
readonly name: "TooManyFunctionAssociations";
|
|
3715
|
+
readonly $fault: "client";
|
|
3475
3716
|
Message?: string;
|
|
3717
|
+
/**
|
|
3718
|
+
* @internal
|
|
3719
|
+
*/
|
|
3720
|
+
constructor(opts: __ExceptionOptionType<TooManyFunctionAssociations, __BaseException>);
|
|
3476
3721
|
}
|
|
3477
3722
|
/**
|
|
3478
3723
|
* <p>Your request contains too many headers in forwarded values.</p>
|
|
3479
3724
|
*/
|
|
3480
|
-
export
|
|
3481
|
-
name: "TooManyHeadersInForwardedValues";
|
|
3482
|
-
$fault: "client";
|
|
3725
|
+
export declare class TooManyHeadersInForwardedValues extends __BaseException {
|
|
3726
|
+
readonly name: "TooManyHeadersInForwardedValues";
|
|
3727
|
+
readonly $fault: "client";
|
|
3483
3728
|
Message?: string;
|
|
3729
|
+
/**
|
|
3730
|
+
* @internal
|
|
3731
|
+
*/
|
|
3732
|
+
constructor(opts: __ExceptionOptionType<TooManyHeadersInForwardedValues, __BaseException>);
|
|
3484
3733
|
}
|
|
3485
3734
|
/**
|
|
3486
3735
|
* <p>The number of key groups referenced by this distribution is more than the maximum
|
|
3487
3736
|
* allowed. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
3488
3737
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
3489
3738
|
*/
|
|
3490
|
-
export
|
|
3491
|
-
name: "TooManyKeyGroupsAssociatedToDistribution";
|
|
3492
|
-
$fault: "client";
|
|
3739
|
+
export declare class TooManyKeyGroupsAssociatedToDistribution extends __BaseException {
|
|
3740
|
+
readonly name: "TooManyKeyGroupsAssociatedToDistribution";
|
|
3741
|
+
readonly $fault: "client";
|
|
3493
3742
|
Message?: string;
|
|
3743
|
+
/**
|
|
3744
|
+
* @internal
|
|
3745
|
+
*/
|
|
3746
|
+
constructor(opts: __ExceptionOptionType<TooManyKeyGroupsAssociatedToDistribution, __BaseException>);
|
|
3494
3747
|
}
|
|
3495
3748
|
/**
|
|
3496
3749
|
* <p>Your request contains more Lambda@Edge function associations than are allowed per distribution.</p>
|
|
3497
3750
|
*/
|
|
3498
|
-
export
|
|
3499
|
-
name: "TooManyLambdaFunctionAssociations";
|
|
3500
|
-
$fault: "client";
|
|
3751
|
+
export declare class TooManyLambdaFunctionAssociations extends __BaseException {
|
|
3752
|
+
readonly name: "TooManyLambdaFunctionAssociations";
|
|
3753
|
+
readonly $fault: "client";
|
|
3501
3754
|
Message?: string;
|
|
3755
|
+
/**
|
|
3756
|
+
* @internal
|
|
3757
|
+
*/
|
|
3758
|
+
constructor(opts: __ExceptionOptionType<TooManyLambdaFunctionAssociations, __BaseException>);
|
|
3502
3759
|
}
|
|
3503
3760
|
/**
|
|
3504
3761
|
* <p>Your request contains too many origin custom headers.</p>
|
|
3505
3762
|
*/
|
|
3506
|
-
export
|
|
3507
|
-
name: "TooManyOriginCustomHeaders";
|
|
3508
|
-
$fault: "client";
|
|
3763
|
+
export declare class TooManyOriginCustomHeaders extends __BaseException {
|
|
3764
|
+
readonly name: "TooManyOriginCustomHeaders";
|
|
3765
|
+
readonly $fault: "client";
|
|
3509
3766
|
Message?: string;
|
|
3767
|
+
/**
|
|
3768
|
+
* @internal
|
|
3769
|
+
*/
|
|
3770
|
+
constructor(opts: __ExceptionOptionType<TooManyOriginCustomHeaders, __BaseException>);
|
|
3510
3771
|
}
|
|
3511
3772
|
/**
|
|
3512
3773
|
* <p>Processing your request would cause you to exceed the maximum number of origin groups allowed.</p>
|
|
3513
3774
|
*/
|
|
3514
|
-
export
|
|
3515
|
-
name: "TooManyOriginGroupsPerDistribution";
|
|
3516
|
-
$fault: "client";
|
|
3775
|
+
export declare class TooManyOriginGroupsPerDistribution extends __BaseException {
|
|
3776
|
+
readonly name: "TooManyOriginGroupsPerDistribution";
|
|
3777
|
+
readonly $fault: "client";
|
|
3517
3778
|
Message?: string;
|
|
3779
|
+
/**
|
|
3780
|
+
* @internal
|
|
3781
|
+
*/
|
|
3782
|
+
constructor(opts: __ExceptionOptionType<TooManyOriginGroupsPerDistribution, __BaseException>);
|
|
3518
3783
|
}
|
|
3519
3784
|
/**
|
|
3520
3785
|
* <p>You cannot create more origins for the distribution.</p>
|
|
3521
3786
|
*/
|
|
3522
|
-
export
|
|
3523
|
-
name: "TooManyOrigins";
|
|
3524
|
-
$fault: "client";
|
|
3787
|
+
export declare class TooManyOrigins extends __BaseException {
|
|
3788
|
+
readonly name: "TooManyOrigins";
|
|
3789
|
+
readonly $fault: "client";
|
|
3525
3790
|
Message?: string;
|
|
3791
|
+
/**
|
|
3792
|
+
* @internal
|
|
3793
|
+
*/
|
|
3794
|
+
constructor(opts: __ExceptionOptionType<TooManyOrigins, __BaseException>);
|
|
3526
3795
|
}
|
|
3527
3796
|
/**
|
|
3528
3797
|
* <p>Your request contains too many query string parameters.</p>
|
|
3529
3798
|
*/
|
|
3530
|
-
export
|
|
3531
|
-
name: "TooManyQueryStringParameters";
|
|
3532
|
-
$fault: "client";
|
|
3799
|
+
export declare class TooManyQueryStringParameters extends __BaseException {
|
|
3800
|
+
readonly name: "TooManyQueryStringParameters";
|
|
3801
|
+
readonly $fault: "client";
|
|
3533
3802
|
Message?: string;
|
|
3803
|
+
/**
|
|
3804
|
+
* @internal
|
|
3805
|
+
*/
|
|
3806
|
+
constructor(opts: __ExceptionOptionType<TooManyQueryStringParameters, __BaseException>);
|
|
3534
3807
|
}
|
|
3535
3808
|
/**
|
|
3536
3809
|
* <p>Your request contains more trusted signers than are allowed per distribution.</p>
|
|
3537
3810
|
*/
|
|
3538
|
-
export
|
|
3539
|
-
name: "TooManyTrustedSigners";
|
|
3540
|
-
$fault: "client";
|
|
3811
|
+
export declare class TooManyTrustedSigners extends __BaseException {
|
|
3812
|
+
readonly name: "TooManyTrustedSigners";
|
|
3813
|
+
readonly $fault: "client";
|
|
3541
3814
|
Message?: string;
|
|
3815
|
+
/**
|
|
3816
|
+
* @internal
|
|
3817
|
+
*/
|
|
3818
|
+
constructor(opts: __ExceptionOptionType<TooManyTrustedSigners, __BaseException>);
|
|
3542
3819
|
}
|
|
3543
3820
|
/**
|
|
3544
3821
|
* <p>The specified key group does not exist.</p>
|
|
3545
3822
|
*/
|
|
3546
|
-
export
|
|
3547
|
-
name: "TrustedKeyGroupDoesNotExist";
|
|
3548
|
-
$fault: "client";
|
|
3823
|
+
export declare class TrustedKeyGroupDoesNotExist extends __BaseException {
|
|
3824
|
+
readonly name: "TrustedKeyGroupDoesNotExist";
|
|
3825
|
+
readonly $fault: "client";
|
|
3549
3826
|
Message?: string;
|
|
3827
|
+
/**
|
|
3828
|
+
* @internal
|
|
3829
|
+
*/
|
|
3830
|
+
constructor(opts: __ExceptionOptionType<TrustedKeyGroupDoesNotExist, __BaseException>);
|
|
3550
3831
|
}
|
|
3551
3832
|
/**
|
|
3552
3833
|
* <p>One or more of your trusted signers don't exist.</p>
|
|
3553
3834
|
*/
|
|
3554
|
-
export
|
|
3555
|
-
name: "TrustedSignerDoesNotExist";
|
|
3556
|
-
$fault: "client";
|
|
3835
|
+
export declare class TrustedSignerDoesNotExist extends __BaseException {
|
|
3836
|
+
readonly name: "TrustedSignerDoesNotExist";
|
|
3837
|
+
readonly $fault: "client";
|
|
3557
3838
|
Message?: string;
|
|
3839
|
+
/**
|
|
3840
|
+
* @internal
|
|
3841
|
+
*/
|
|
3842
|
+
constructor(opts: __ExceptionOptionType<TrustedSignerDoesNotExist, __BaseException>);
|
|
3558
3843
|
}
|
|
3559
3844
|
/**
|
|
3560
3845
|
* <p> A complex type that contains <code>Tag</code> key and <code>Tag</code> value.</p>
|
|
@@ -3657,10 +3942,14 @@ export declare namespace CreateDistributionWithTagsResult {
|
|
|
3657
3942
|
/**
|
|
3658
3943
|
* <p>The tagging specified is not valid.</p>
|
|
3659
3944
|
*/
|
|
3660
|
-
export
|
|
3661
|
-
name: "InvalidTagging";
|
|
3662
|
-
$fault: "client";
|
|
3945
|
+
export declare class InvalidTagging extends __BaseException {
|
|
3946
|
+
readonly name: "InvalidTagging";
|
|
3947
|
+
readonly $fault: "client";
|
|
3663
3948
|
Message?: string;
|
|
3949
|
+
/**
|
|
3950
|
+
* @internal
|
|
3951
|
+
*/
|
|
3952
|
+
constructor(opts: __ExceptionOptionType<InvalidTagging, __BaseException>);
|
|
3664
3953
|
}
|
|
3665
3954
|
export declare type Format = "URLEncoded";
|
|
3666
3955
|
/**
|
|
@@ -3874,50 +4163,74 @@ export declare namespace CreateFieldLevelEncryptionConfigResult {
|
|
|
3874
4163
|
/**
|
|
3875
4164
|
* <p>The specified configuration for field-level encryption already exists.</p>
|
|
3876
4165
|
*/
|
|
3877
|
-
export
|
|
3878
|
-
name: "FieldLevelEncryptionConfigAlreadyExists";
|
|
3879
|
-
$fault: "client";
|
|
4166
|
+
export declare class FieldLevelEncryptionConfigAlreadyExists extends __BaseException {
|
|
4167
|
+
readonly name: "FieldLevelEncryptionConfigAlreadyExists";
|
|
4168
|
+
readonly $fault: "client";
|
|
3880
4169
|
Message?: string;
|
|
4170
|
+
/**
|
|
4171
|
+
* @internal
|
|
4172
|
+
*/
|
|
4173
|
+
constructor(opts: __ExceptionOptionType<FieldLevelEncryptionConfigAlreadyExists, __BaseException>);
|
|
3881
4174
|
}
|
|
3882
4175
|
/**
|
|
3883
4176
|
* <p>The specified profile for field-level encryption doesn't exist.</p>
|
|
3884
4177
|
*/
|
|
3885
|
-
export
|
|
3886
|
-
name: "NoSuchFieldLevelEncryptionProfile";
|
|
3887
|
-
$fault: "client";
|
|
4178
|
+
export declare class NoSuchFieldLevelEncryptionProfile extends __BaseException {
|
|
4179
|
+
readonly name: "NoSuchFieldLevelEncryptionProfile";
|
|
4180
|
+
readonly $fault: "client";
|
|
3888
4181
|
Message?: string;
|
|
4182
|
+
/**
|
|
4183
|
+
* @internal
|
|
4184
|
+
*/
|
|
4185
|
+
constructor(opts: __ExceptionOptionType<NoSuchFieldLevelEncryptionProfile, __BaseException>);
|
|
3889
4186
|
}
|
|
3890
4187
|
/**
|
|
3891
4188
|
* <p>No profile specified for the field-level encryption query argument.</p>
|
|
3892
4189
|
*/
|
|
3893
|
-
export
|
|
3894
|
-
name: "QueryArgProfileEmpty";
|
|
3895
|
-
$fault: "client";
|
|
4190
|
+
export declare class QueryArgProfileEmpty extends __BaseException {
|
|
4191
|
+
readonly name: "QueryArgProfileEmpty";
|
|
4192
|
+
readonly $fault: "client";
|
|
3896
4193
|
Message?: string;
|
|
4194
|
+
/**
|
|
4195
|
+
* @internal
|
|
4196
|
+
*/
|
|
4197
|
+
constructor(opts: __ExceptionOptionType<QueryArgProfileEmpty, __BaseException>);
|
|
3897
4198
|
}
|
|
3898
4199
|
/**
|
|
3899
4200
|
* <p>The maximum number of configurations for field-level encryption have been created.</p>
|
|
3900
4201
|
*/
|
|
3901
|
-
export
|
|
3902
|
-
name: "TooManyFieldLevelEncryptionConfigs";
|
|
3903
|
-
$fault: "client";
|
|
4202
|
+
export declare class TooManyFieldLevelEncryptionConfigs extends __BaseException {
|
|
4203
|
+
readonly name: "TooManyFieldLevelEncryptionConfigs";
|
|
4204
|
+
readonly $fault: "client";
|
|
3904
4205
|
Message?: string;
|
|
4206
|
+
/**
|
|
4207
|
+
* @internal
|
|
4208
|
+
*/
|
|
4209
|
+
constructor(opts: __ExceptionOptionType<TooManyFieldLevelEncryptionConfigs, __BaseException>);
|
|
3905
4210
|
}
|
|
3906
4211
|
/**
|
|
3907
4212
|
* <p>The maximum number of content type profiles for field-level encryption have been created.</p>
|
|
3908
4213
|
*/
|
|
3909
|
-
export
|
|
3910
|
-
name: "TooManyFieldLevelEncryptionContentTypeProfiles";
|
|
3911
|
-
$fault: "client";
|
|
4214
|
+
export declare class TooManyFieldLevelEncryptionContentTypeProfiles extends __BaseException {
|
|
4215
|
+
readonly name: "TooManyFieldLevelEncryptionContentTypeProfiles";
|
|
4216
|
+
readonly $fault: "client";
|
|
3912
4217
|
Message?: string;
|
|
4218
|
+
/**
|
|
4219
|
+
* @internal
|
|
4220
|
+
*/
|
|
4221
|
+
constructor(opts: __ExceptionOptionType<TooManyFieldLevelEncryptionContentTypeProfiles, __BaseException>);
|
|
3913
4222
|
}
|
|
3914
4223
|
/**
|
|
3915
4224
|
* <p>The maximum number of query arg profiles for field-level encryption have been created.</p>
|
|
3916
4225
|
*/
|
|
3917
|
-
export
|
|
3918
|
-
name: "TooManyFieldLevelEncryptionQueryArgProfiles";
|
|
3919
|
-
$fault: "client";
|
|
4226
|
+
export declare class TooManyFieldLevelEncryptionQueryArgProfiles extends __BaseException {
|
|
4227
|
+
readonly name: "TooManyFieldLevelEncryptionQueryArgProfiles";
|
|
4228
|
+
readonly $fault: "client";
|
|
3920
4229
|
Message?: string;
|
|
4230
|
+
/**
|
|
4231
|
+
* @internal
|
|
4232
|
+
*/
|
|
4233
|
+
constructor(opts: __ExceptionOptionType<TooManyFieldLevelEncryptionQueryArgProfiles, __BaseException>);
|
|
3921
4234
|
}
|
|
3922
4235
|
/**
|
|
3923
4236
|
* <p>A complex data type that includes the field patterns to match for field-level encryption.</p>
|
|
@@ -4072,50 +4385,74 @@ export declare namespace CreateFieldLevelEncryptionProfileResult {
|
|
|
4072
4385
|
/**
|
|
4073
4386
|
* <p>The specified profile for field-level encryption already exists.</p>
|
|
4074
4387
|
*/
|
|
4075
|
-
export
|
|
4076
|
-
name: "FieldLevelEncryptionProfileAlreadyExists";
|
|
4077
|
-
$fault: "client";
|
|
4388
|
+
export declare class FieldLevelEncryptionProfileAlreadyExists extends __BaseException {
|
|
4389
|
+
readonly name: "FieldLevelEncryptionProfileAlreadyExists";
|
|
4390
|
+
readonly $fault: "client";
|
|
4078
4391
|
Message?: string;
|
|
4392
|
+
/**
|
|
4393
|
+
* @internal
|
|
4394
|
+
*/
|
|
4395
|
+
constructor(opts: __ExceptionOptionType<FieldLevelEncryptionProfileAlreadyExists, __BaseException>);
|
|
4079
4396
|
}
|
|
4080
4397
|
/**
|
|
4081
4398
|
* <p>The maximum size of a profile for field-level encryption was exceeded.</p>
|
|
4082
4399
|
*/
|
|
4083
|
-
export
|
|
4084
|
-
name: "FieldLevelEncryptionProfileSizeExceeded";
|
|
4085
|
-
$fault: "client";
|
|
4400
|
+
export declare class FieldLevelEncryptionProfileSizeExceeded extends __BaseException {
|
|
4401
|
+
readonly name: "FieldLevelEncryptionProfileSizeExceeded";
|
|
4402
|
+
readonly $fault: "client";
|
|
4086
4403
|
Message?: string;
|
|
4404
|
+
/**
|
|
4405
|
+
* @internal
|
|
4406
|
+
*/
|
|
4407
|
+
constructor(opts: __ExceptionOptionType<FieldLevelEncryptionProfileSizeExceeded, __BaseException>);
|
|
4087
4408
|
}
|
|
4088
4409
|
/**
|
|
4089
4410
|
* <p>The specified public key doesn't exist.</p>
|
|
4090
4411
|
*/
|
|
4091
|
-
export
|
|
4092
|
-
name: "NoSuchPublicKey";
|
|
4093
|
-
$fault: "client";
|
|
4412
|
+
export declare class NoSuchPublicKey extends __BaseException {
|
|
4413
|
+
readonly name: "NoSuchPublicKey";
|
|
4414
|
+
readonly $fault: "client";
|
|
4094
4415
|
Message?: string;
|
|
4416
|
+
/**
|
|
4417
|
+
* @internal
|
|
4418
|
+
*/
|
|
4419
|
+
constructor(opts: __ExceptionOptionType<NoSuchPublicKey, __BaseException>);
|
|
4095
4420
|
}
|
|
4096
4421
|
/**
|
|
4097
4422
|
* <p>The maximum number of encryption entities for field-level encryption have been created.</p>
|
|
4098
4423
|
*/
|
|
4099
|
-
export
|
|
4100
|
-
name: "TooManyFieldLevelEncryptionEncryptionEntities";
|
|
4101
|
-
$fault: "client";
|
|
4424
|
+
export declare class TooManyFieldLevelEncryptionEncryptionEntities extends __BaseException {
|
|
4425
|
+
readonly name: "TooManyFieldLevelEncryptionEncryptionEntities";
|
|
4426
|
+
readonly $fault: "client";
|
|
4102
4427
|
Message?: string;
|
|
4428
|
+
/**
|
|
4429
|
+
* @internal
|
|
4430
|
+
*/
|
|
4431
|
+
constructor(opts: __ExceptionOptionType<TooManyFieldLevelEncryptionEncryptionEntities, __BaseException>);
|
|
4103
4432
|
}
|
|
4104
4433
|
/**
|
|
4105
4434
|
* <p>The maximum number of field patterns for field-level encryption have been created.</p>
|
|
4106
4435
|
*/
|
|
4107
|
-
export
|
|
4108
|
-
name: "TooManyFieldLevelEncryptionFieldPatterns";
|
|
4109
|
-
$fault: "client";
|
|
4436
|
+
export declare class TooManyFieldLevelEncryptionFieldPatterns extends __BaseException {
|
|
4437
|
+
readonly name: "TooManyFieldLevelEncryptionFieldPatterns";
|
|
4438
|
+
readonly $fault: "client";
|
|
4110
4439
|
Message?: string;
|
|
4440
|
+
/**
|
|
4441
|
+
* @internal
|
|
4442
|
+
*/
|
|
4443
|
+
constructor(opts: __ExceptionOptionType<TooManyFieldLevelEncryptionFieldPatterns, __BaseException>);
|
|
4111
4444
|
}
|
|
4112
4445
|
/**
|
|
4113
4446
|
* <p>The maximum number of profiles for field-level encryption have been created.</p>
|
|
4114
4447
|
*/
|
|
4115
|
-
export
|
|
4116
|
-
name: "TooManyFieldLevelEncryptionProfiles";
|
|
4117
|
-
$fault: "client";
|
|
4448
|
+
export declare class TooManyFieldLevelEncryptionProfiles extends __BaseException {
|
|
4449
|
+
readonly name: "TooManyFieldLevelEncryptionProfiles";
|
|
4450
|
+
readonly $fault: "client";
|
|
4118
4451
|
Message?: string;
|
|
4452
|
+
/**
|
|
4453
|
+
* @internal
|
|
4454
|
+
*/
|
|
4455
|
+
constructor(opts: __ExceptionOptionType<TooManyFieldLevelEncryptionProfiles, __BaseException>);
|
|
4119
4456
|
}
|
|
4120
4457
|
export declare enum FunctionRuntime {
|
|
4121
4458
|
cloudfront_js_1_0 = "cloudfront-js-1.0"
|
|
@@ -4252,37 +4589,53 @@ export declare namespace CreateFunctionResult {
|
|
|
4252
4589
|
* function, you must provide a unique name. To update an existing function, use
|
|
4253
4590
|
* <code>UpdateFunction</code>.</p>
|
|
4254
4591
|
*/
|
|
4255
|
-
export
|
|
4256
|
-
name: "FunctionAlreadyExists";
|
|
4257
|
-
$fault: "client";
|
|
4592
|
+
export declare class FunctionAlreadyExists extends __BaseException {
|
|
4593
|
+
readonly name: "FunctionAlreadyExists";
|
|
4594
|
+
readonly $fault: "client";
|
|
4258
4595
|
Message?: string;
|
|
4596
|
+
/**
|
|
4597
|
+
* @internal
|
|
4598
|
+
*/
|
|
4599
|
+
constructor(opts: __ExceptionOptionType<FunctionAlreadyExists, __BaseException>);
|
|
4259
4600
|
}
|
|
4260
4601
|
/**
|
|
4261
4602
|
* <p>The function is too large. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
4262
4603
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
4263
4604
|
*/
|
|
4264
|
-
export
|
|
4265
|
-
name: "FunctionSizeLimitExceeded";
|
|
4266
|
-
$fault: "client";
|
|
4605
|
+
export declare class FunctionSizeLimitExceeded extends __BaseException {
|
|
4606
|
+
readonly name: "FunctionSizeLimitExceeded";
|
|
4607
|
+
readonly $fault: "client";
|
|
4267
4608
|
Message?: string;
|
|
4609
|
+
/**
|
|
4610
|
+
* @internal
|
|
4611
|
+
*/
|
|
4612
|
+
constructor(opts: __ExceptionOptionType<FunctionSizeLimitExceeded, __BaseException>);
|
|
4268
4613
|
}
|
|
4269
4614
|
/**
|
|
4270
4615
|
* <p>You have reached the maximum number of CloudFront functions for this Amazon Web Services account. For more
|
|
4271
4616
|
* information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
4272
4617
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
4273
4618
|
*/
|
|
4274
|
-
export
|
|
4275
|
-
name: "TooManyFunctions";
|
|
4276
|
-
$fault: "client";
|
|
4619
|
+
export declare class TooManyFunctions extends __BaseException {
|
|
4620
|
+
readonly name: "TooManyFunctions";
|
|
4621
|
+
readonly $fault: "client";
|
|
4277
4622
|
Message?: string;
|
|
4623
|
+
/**
|
|
4624
|
+
* @internal
|
|
4625
|
+
*/
|
|
4626
|
+
constructor(opts: __ExceptionOptionType<TooManyFunctions, __BaseException>);
|
|
4278
4627
|
}
|
|
4279
4628
|
/**
|
|
4280
4629
|
* <p>This operation is not supported in this region.</p>
|
|
4281
4630
|
*/
|
|
4282
|
-
export
|
|
4283
|
-
name: "UnsupportedOperation";
|
|
4284
|
-
$fault: "client";
|
|
4631
|
+
export declare class UnsupportedOperation extends __BaseException {
|
|
4632
|
+
readonly name: "UnsupportedOperation";
|
|
4633
|
+
readonly $fault: "client";
|
|
4285
4634
|
Message?: string;
|
|
4635
|
+
/**
|
|
4636
|
+
* @internal
|
|
4637
|
+
*/
|
|
4638
|
+
constructor(opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>);
|
|
4286
4639
|
}
|
|
4287
4640
|
/**
|
|
4288
4641
|
* <p>A complex type that contains information about the objects that you want to invalidate.
|
|
@@ -4409,10 +4762,14 @@ export declare namespace CreateInvalidationResult {
|
|
|
4409
4762
|
/**
|
|
4410
4763
|
* <p>You have exceeded the maximum number of allowable InProgress invalidation batch requests, or invalidation objects.</p>
|
|
4411
4764
|
*/
|
|
4412
|
-
export
|
|
4413
|
-
name: "TooManyInvalidationsInProgress";
|
|
4414
|
-
$fault: "client";
|
|
4765
|
+
export declare class TooManyInvalidationsInProgress extends __BaseException {
|
|
4766
|
+
readonly name: "TooManyInvalidationsInProgress";
|
|
4767
|
+
readonly $fault: "client";
|
|
4415
4768
|
Message?: string;
|
|
4769
|
+
/**
|
|
4770
|
+
* @internal
|
|
4771
|
+
*/
|
|
4772
|
+
constructor(opts: __ExceptionOptionType<TooManyInvalidationsInProgress, __BaseException>);
|
|
4416
4773
|
}
|
|
4417
4774
|
/**
|
|
4418
4775
|
* <p>A key group configuration.</p>
|
|
@@ -4499,30 +4856,42 @@ export declare namespace CreateKeyGroupResult {
|
|
|
4499
4856
|
* <p>A key group with this name already exists. You must provide a unique name. To modify an
|
|
4500
4857
|
* existing key group, use <code>UpdateKeyGroup</code>.</p>
|
|
4501
4858
|
*/
|
|
4502
|
-
export
|
|
4503
|
-
name: "KeyGroupAlreadyExists";
|
|
4504
|
-
$fault: "client";
|
|
4859
|
+
export declare class KeyGroupAlreadyExists extends __BaseException {
|
|
4860
|
+
readonly name: "KeyGroupAlreadyExists";
|
|
4861
|
+
readonly $fault: "client";
|
|
4505
4862
|
Message?: string;
|
|
4863
|
+
/**
|
|
4864
|
+
* @internal
|
|
4865
|
+
*/
|
|
4866
|
+
constructor(opts: __ExceptionOptionType<KeyGroupAlreadyExists, __BaseException>);
|
|
4506
4867
|
}
|
|
4507
4868
|
/**
|
|
4508
4869
|
* <p>You have reached the maximum number of key groups for this Amazon Web Services account. For more
|
|
4509
4870
|
* information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
4510
4871
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
4511
4872
|
*/
|
|
4512
|
-
export
|
|
4513
|
-
name: "TooManyKeyGroups";
|
|
4514
|
-
$fault: "client";
|
|
4873
|
+
export declare class TooManyKeyGroups extends __BaseException {
|
|
4874
|
+
readonly name: "TooManyKeyGroups";
|
|
4875
|
+
readonly $fault: "client";
|
|
4515
4876
|
Message?: string;
|
|
4877
|
+
/**
|
|
4878
|
+
* @internal
|
|
4879
|
+
*/
|
|
4880
|
+
constructor(opts: __ExceptionOptionType<TooManyKeyGroups, __BaseException>);
|
|
4516
4881
|
}
|
|
4517
4882
|
/**
|
|
4518
4883
|
* <p>The number of public keys in this key group is more than the maximum allowed. For more
|
|
4519
4884
|
* information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
4520
4885
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
4521
4886
|
*/
|
|
4522
|
-
export
|
|
4523
|
-
name: "TooManyPublicKeysInKeyGroup";
|
|
4524
|
-
$fault: "client";
|
|
4887
|
+
export declare class TooManyPublicKeysInKeyGroup extends __BaseException {
|
|
4888
|
+
readonly name: "TooManyPublicKeysInKeyGroup";
|
|
4889
|
+
readonly $fault: "client";
|
|
4525
4890
|
Message?: string;
|
|
4891
|
+
/**
|
|
4892
|
+
* @internal
|
|
4893
|
+
*/
|
|
4894
|
+
constructor(opts: __ExceptionOptionType<TooManyPublicKeysInKeyGroup, __BaseException>);
|
|
4526
4895
|
}
|
|
4527
4896
|
export declare enum RealtimeMetricsSubscriptionStatus {
|
|
4528
4897
|
Disabled = "Disabled",
|
|
@@ -4861,50 +5230,70 @@ export declare namespace CreateOriginRequestPolicyResult {
|
|
|
4861
5230
|
* name. To modify an existing origin request policy, use
|
|
4862
5231
|
* <code>UpdateOriginRequestPolicy</code>.</p>
|
|
4863
5232
|
*/
|
|
4864
|
-
export
|
|
4865
|
-
name: "OriginRequestPolicyAlreadyExists";
|
|
4866
|
-
$fault: "client";
|
|
5233
|
+
export declare class OriginRequestPolicyAlreadyExists extends __BaseException {
|
|
5234
|
+
readonly name: "OriginRequestPolicyAlreadyExists";
|
|
5235
|
+
readonly $fault: "client";
|
|
4867
5236
|
Message?: string;
|
|
5237
|
+
/**
|
|
5238
|
+
* @internal
|
|
5239
|
+
*/
|
|
5240
|
+
constructor(opts: __ExceptionOptionType<OriginRequestPolicyAlreadyExists, __BaseException>);
|
|
4868
5241
|
}
|
|
4869
5242
|
/**
|
|
4870
5243
|
* <p>The number of cookies in the origin request policy exceeds the maximum. For more
|
|
4871
5244
|
* information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
4872
5245
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
4873
5246
|
*/
|
|
4874
|
-
export
|
|
4875
|
-
name: "TooManyCookiesInOriginRequestPolicy";
|
|
4876
|
-
$fault: "client";
|
|
5247
|
+
export declare class TooManyCookiesInOriginRequestPolicy extends __BaseException {
|
|
5248
|
+
readonly name: "TooManyCookiesInOriginRequestPolicy";
|
|
5249
|
+
readonly $fault: "client";
|
|
4877
5250
|
Message?: string;
|
|
5251
|
+
/**
|
|
5252
|
+
* @internal
|
|
5253
|
+
*/
|
|
5254
|
+
constructor(opts: __ExceptionOptionType<TooManyCookiesInOriginRequestPolicy, __BaseException>);
|
|
4878
5255
|
}
|
|
4879
5256
|
/**
|
|
4880
5257
|
* <p>The number of headers in the origin request policy exceeds the maximum. For more
|
|
4881
5258
|
* information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
4882
5259
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
4883
5260
|
*/
|
|
4884
|
-
export
|
|
4885
|
-
name: "TooManyHeadersInOriginRequestPolicy";
|
|
4886
|
-
$fault: "client";
|
|
5261
|
+
export declare class TooManyHeadersInOriginRequestPolicy extends __BaseException {
|
|
5262
|
+
readonly name: "TooManyHeadersInOriginRequestPolicy";
|
|
5263
|
+
readonly $fault: "client";
|
|
4887
5264
|
Message?: string;
|
|
5265
|
+
/**
|
|
5266
|
+
* @internal
|
|
5267
|
+
*/
|
|
5268
|
+
constructor(opts: __ExceptionOptionType<TooManyHeadersInOriginRequestPolicy, __BaseException>);
|
|
4888
5269
|
}
|
|
4889
5270
|
/**
|
|
4890
5271
|
* <p>You have reached the maximum number of origin request policies for this Amazon Web Services account.
|
|
4891
5272
|
* For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
4892
5273
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
4893
5274
|
*/
|
|
4894
|
-
export
|
|
4895
|
-
name: "TooManyOriginRequestPolicies";
|
|
4896
|
-
$fault: "client";
|
|
5275
|
+
export declare class TooManyOriginRequestPolicies extends __BaseException {
|
|
5276
|
+
readonly name: "TooManyOriginRequestPolicies";
|
|
5277
|
+
readonly $fault: "client";
|
|
4897
5278
|
Message?: string;
|
|
5279
|
+
/**
|
|
5280
|
+
* @internal
|
|
5281
|
+
*/
|
|
5282
|
+
constructor(opts: __ExceptionOptionType<TooManyOriginRequestPolicies, __BaseException>);
|
|
4898
5283
|
}
|
|
4899
5284
|
/**
|
|
4900
5285
|
* <p>The number of query strings in the origin request policy exceeds the maximum. For more
|
|
4901
5286
|
* information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
4902
5287
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
4903
5288
|
*/
|
|
4904
|
-
export
|
|
4905
|
-
name: "TooManyQueryStringsInOriginRequestPolicy";
|
|
4906
|
-
$fault: "client";
|
|
5289
|
+
export declare class TooManyQueryStringsInOriginRequestPolicy extends __BaseException {
|
|
5290
|
+
readonly name: "TooManyQueryStringsInOriginRequestPolicy";
|
|
5291
|
+
readonly $fault: "client";
|
|
4907
5292
|
Message?: string;
|
|
5293
|
+
/**
|
|
5294
|
+
* @internal
|
|
5295
|
+
*/
|
|
5296
|
+
constructor(opts: __ExceptionOptionType<TooManyQueryStringsInOriginRequestPolicy, __BaseException>);
|
|
4908
5297
|
}
|
|
4909
5298
|
/**
|
|
4910
5299
|
* <p>Configuration information about a public key that you can use with <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html">signed URLs and signed cookies</a>, or with <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html">field-level encryption</a>.</p>
|
|
@@ -4993,18 +5382,26 @@ export declare namespace CreatePublicKeyResult {
|
|
|
4993
5382
|
/**
|
|
4994
5383
|
* <p>The specified public key already exists.</p>
|
|
4995
5384
|
*/
|
|
4996
|
-
export
|
|
4997
|
-
name: "PublicKeyAlreadyExists";
|
|
4998
|
-
$fault: "client";
|
|
5385
|
+
export declare class PublicKeyAlreadyExists extends __BaseException {
|
|
5386
|
+
readonly name: "PublicKeyAlreadyExists";
|
|
5387
|
+
readonly $fault: "client";
|
|
4999
5388
|
Message?: string;
|
|
5389
|
+
/**
|
|
5390
|
+
* @internal
|
|
5391
|
+
*/
|
|
5392
|
+
constructor(opts: __ExceptionOptionType<PublicKeyAlreadyExists, __BaseException>);
|
|
5000
5393
|
}
|
|
5001
5394
|
/**
|
|
5002
5395
|
* <p>The maximum number of public keys for field-level encryption have been created. To create a new public key, delete one of the existing keys.</p>
|
|
5003
5396
|
*/
|
|
5004
|
-
export
|
|
5005
|
-
name: "TooManyPublicKeys";
|
|
5006
|
-
$fault: "client";
|
|
5397
|
+
export declare class TooManyPublicKeys extends __BaseException {
|
|
5398
|
+
readonly name: "TooManyPublicKeys";
|
|
5399
|
+
readonly $fault: "client";
|
|
5007
5400
|
Message?: string;
|
|
5401
|
+
/**
|
|
5402
|
+
* @internal
|
|
5403
|
+
*/
|
|
5404
|
+
constructor(opts: __ExceptionOptionType<TooManyPublicKeys, __BaseException>);
|
|
5008
5405
|
}
|
|
5009
5406
|
/**
|
|
5010
5407
|
* <p>Contains information about the Amazon Kinesis data stream where you are sending
|
|
@@ -5136,20 +5533,28 @@ export declare namespace CreateRealtimeLogConfigResult {
|
|
|
5136
5533
|
* To modify an existing real-time log configuration, use
|
|
5137
5534
|
* <code>UpdateRealtimeLogConfig</code>.</p>
|
|
5138
5535
|
*/
|
|
5139
|
-
export
|
|
5140
|
-
name: "RealtimeLogConfigAlreadyExists";
|
|
5141
|
-
$fault: "client";
|
|
5536
|
+
export declare class RealtimeLogConfigAlreadyExists extends __BaseException {
|
|
5537
|
+
readonly name: "RealtimeLogConfigAlreadyExists";
|
|
5538
|
+
readonly $fault: "client";
|
|
5142
5539
|
Message?: string;
|
|
5540
|
+
/**
|
|
5541
|
+
* @internal
|
|
5542
|
+
*/
|
|
5543
|
+
constructor(opts: __ExceptionOptionType<RealtimeLogConfigAlreadyExists, __BaseException>);
|
|
5143
5544
|
}
|
|
5144
5545
|
/**
|
|
5145
5546
|
* <p>You have reached the maximum number of real-time log configurations for this Amazon Web Services account.
|
|
5146
5547
|
* For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
5147
5548
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
5148
5549
|
*/
|
|
5149
|
-
export
|
|
5150
|
-
name: "TooManyRealtimeLogConfigs";
|
|
5151
|
-
$fault: "client";
|
|
5550
|
+
export declare class TooManyRealtimeLogConfigs extends __BaseException {
|
|
5551
|
+
readonly name: "TooManyRealtimeLogConfigs";
|
|
5552
|
+
readonly $fault: "client";
|
|
5152
5553
|
Message?: string;
|
|
5554
|
+
/**
|
|
5555
|
+
* @internal
|
|
5556
|
+
*/
|
|
5557
|
+
constructor(opts: __ExceptionOptionType<TooManyRealtimeLogConfigs, __BaseException>);
|
|
5153
5558
|
}
|
|
5154
5559
|
/**
|
|
5155
5560
|
* <p>A list of HTTP header names that CloudFront includes as values for the
|
|
@@ -5791,20 +6196,28 @@ export declare namespace CreateResponseHeadersPolicyResult {
|
|
|
5791
6196
|
* modify an existing response headers policy, use
|
|
5792
6197
|
* <code>UpdateResponseHeadersPolicy</code>.</p>
|
|
5793
6198
|
*/
|
|
5794
|
-
export
|
|
5795
|
-
name: "ResponseHeadersPolicyAlreadyExists";
|
|
5796
|
-
$fault: "client";
|
|
6199
|
+
export declare class ResponseHeadersPolicyAlreadyExists extends __BaseException {
|
|
6200
|
+
readonly name: "ResponseHeadersPolicyAlreadyExists";
|
|
6201
|
+
readonly $fault: "client";
|
|
5797
6202
|
Message?: string;
|
|
6203
|
+
/**
|
|
6204
|
+
* @internal
|
|
6205
|
+
*/
|
|
6206
|
+
constructor(opts: __ExceptionOptionType<ResponseHeadersPolicyAlreadyExists, __BaseException>);
|
|
5798
6207
|
}
|
|
5799
6208
|
/**
|
|
5800
6209
|
* <p>The number of custom headers in the response headers policy exceeds the maximum.</p>
|
|
5801
6210
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
5802
6211
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
5803
6212
|
*/
|
|
5804
|
-
export
|
|
5805
|
-
name: "TooManyCustomHeadersInResponseHeadersPolicy";
|
|
5806
|
-
$fault: "client";
|
|
6213
|
+
export declare class TooManyCustomHeadersInResponseHeadersPolicy extends __BaseException {
|
|
6214
|
+
readonly name: "TooManyCustomHeadersInResponseHeadersPolicy";
|
|
6215
|
+
readonly $fault: "client";
|
|
5807
6216
|
Message?: string;
|
|
6217
|
+
/**
|
|
6218
|
+
* @internal
|
|
6219
|
+
*/
|
|
6220
|
+
constructor(opts: __ExceptionOptionType<TooManyCustomHeadersInResponseHeadersPolicy, __BaseException>);
|
|
5808
6221
|
}
|
|
5809
6222
|
/**
|
|
5810
6223
|
* <p>You have reached the maximum number of response headers policies for this
|
|
@@ -5812,10 +6225,14 @@ export interface TooManyCustomHeadersInResponseHeadersPolicy extends __SmithyExc
|
|
|
5812
6225
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
|
|
5813
6226
|
* <i>Amazon CloudFront Developer Guide</i>.</p>
|
|
5814
6227
|
*/
|
|
5815
|
-
export
|
|
5816
|
-
name: "TooManyResponseHeadersPolicies";
|
|
5817
|
-
$fault: "client";
|
|
6228
|
+
export declare class TooManyResponseHeadersPolicies extends __BaseException {
|
|
6229
|
+
readonly name: "TooManyResponseHeadersPolicies";
|
|
6230
|
+
readonly $fault: "client";
|
|
5818
6231
|
Message?: string;
|
|
6232
|
+
/**
|
|
6233
|
+
* @internal
|
|
6234
|
+
*/
|
|
6235
|
+
constructor(opts: __ExceptionOptionType<TooManyResponseHeadersPolicies, __BaseException>);
|
|
5819
6236
|
}
|
|
5820
6237
|
/**
|
|
5821
6238
|
* <p>A complex type that controls whether access logs are written for this streaming distribution.</p>
|
|
@@ -6032,26 +6449,38 @@ export declare namespace CreateStreamingDistributionResult {
|
|
|
6032
6449
|
* <p>The caller reference you attempted to create the streaming distribution with
|
|
6033
6450
|
* is associated with another distribution</p>
|
|
6034
6451
|
*/
|
|
6035
|
-
export
|
|
6036
|
-
name: "StreamingDistributionAlreadyExists";
|
|
6037
|
-
$fault: "client";
|
|
6452
|
+
export declare class StreamingDistributionAlreadyExists extends __BaseException {
|
|
6453
|
+
readonly name: "StreamingDistributionAlreadyExists";
|
|
6454
|
+
readonly $fault: "client";
|
|
6038
6455
|
Message?: string;
|
|
6456
|
+
/**
|
|
6457
|
+
* @internal
|
|
6458
|
+
*/
|
|
6459
|
+
constructor(opts: __ExceptionOptionType<StreamingDistributionAlreadyExists, __BaseException>);
|
|
6039
6460
|
}
|
|
6040
6461
|
/**
|
|
6041
6462
|
* <p>Your request contains more CNAMEs than are allowed per distribution.</p>
|
|
6042
6463
|
*/
|
|
6043
|
-
export
|
|
6044
|
-
name: "TooManyStreamingDistributionCNAMEs";
|
|
6045
|
-
$fault: "client";
|
|
6464
|
+
export declare class TooManyStreamingDistributionCNAMEs extends __BaseException {
|
|
6465
|
+
readonly name: "TooManyStreamingDistributionCNAMEs";
|
|
6466
|
+
readonly $fault: "client";
|
|
6046
6467
|
Message?: string;
|
|
6468
|
+
/**
|
|
6469
|
+
* @internal
|
|
6470
|
+
*/
|
|
6471
|
+
constructor(opts: __ExceptionOptionType<TooManyStreamingDistributionCNAMEs, __BaseException>);
|
|
6047
6472
|
}
|
|
6048
6473
|
/**
|
|
6049
6474
|
* <p>Processing your request would cause you to exceed the maximum number of streaming distributions allowed.</p>
|
|
6050
6475
|
*/
|
|
6051
|
-
export
|
|
6052
|
-
name: "TooManyStreamingDistributions";
|
|
6053
|
-
$fault: "client";
|
|
6476
|
+
export declare class TooManyStreamingDistributions extends __BaseException {
|
|
6477
|
+
readonly name: "TooManyStreamingDistributions";
|
|
6478
|
+
readonly $fault: "client";
|
|
6054
6479
|
Message?: string;
|
|
6480
|
+
/**
|
|
6481
|
+
* @internal
|
|
6482
|
+
*/
|
|
6483
|
+
constructor(opts: __ExceptionOptionType<TooManyStreamingDistributions, __BaseException>);
|
|
6055
6484
|
}
|
|
6056
6485
|
/**
|
|
6057
6486
|
* <p>A streaming distribution Configuration and a list of tags to be associated with the
|
|
@@ -6134,35 +6563,51 @@ export declare namespace DeleteCachePolicyRequest {
|
|
|
6134
6563
|
/**
|
|
6135
6564
|
* <p>You cannot delete a managed policy.</p>
|
|
6136
6565
|
*/
|
|
6137
|
-
export
|
|
6138
|
-
name: "IllegalDelete";
|
|
6139
|
-
$fault: "client";
|
|
6566
|
+
export declare class IllegalDelete extends __BaseException {
|
|
6567
|
+
readonly name: "IllegalDelete";
|
|
6568
|
+
readonly $fault: "client";
|
|
6140
6569
|
Message?: string;
|
|
6570
|
+
/**
|
|
6571
|
+
* @internal
|
|
6572
|
+
*/
|
|
6573
|
+
constructor(opts: __ExceptionOptionType<IllegalDelete, __BaseException>);
|
|
6141
6574
|
}
|
|
6142
6575
|
/**
|
|
6143
6576
|
* <p>The <code>If-Match</code> version is missing or not valid.</p>
|
|
6144
6577
|
*/
|
|
6145
|
-
export
|
|
6146
|
-
name: "InvalidIfMatchVersion";
|
|
6147
|
-
$fault: "client";
|
|
6578
|
+
export declare class InvalidIfMatchVersion extends __BaseException {
|
|
6579
|
+
readonly name: "InvalidIfMatchVersion";
|
|
6580
|
+
readonly $fault: "client";
|
|
6148
6581
|
Message?: string;
|
|
6582
|
+
/**
|
|
6583
|
+
* @internal
|
|
6584
|
+
*/
|
|
6585
|
+
constructor(opts: __ExceptionOptionType<InvalidIfMatchVersion, __BaseException>);
|
|
6149
6586
|
}
|
|
6150
6587
|
/**
|
|
6151
6588
|
* <p>The precondition in one or more of the request fields evaluated to
|
|
6152
6589
|
* <code>false</code>.</p>
|
|
6153
6590
|
*/
|
|
6154
|
-
export
|
|
6155
|
-
name: "PreconditionFailed";
|
|
6156
|
-
$fault: "client";
|
|
6591
|
+
export declare class PreconditionFailed extends __BaseException {
|
|
6592
|
+
readonly name: "PreconditionFailed";
|
|
6593
|
+
readonly $fault: "client";
|
|
6157
6594
|
Message?: string;
|
|
6595
|
+
/**
|
|
6596
|
+
* @internal
|
|
6597
|
+
*/
|
|
6598
|
+
constructor(opts: __ExceptionOptionType<PreconditionFailed, __BaseException>);
|
|
6158
6599
|
}
|
|
6159
6600
|
/**
|
|
6160
6601
|
* <p>The Origin Access Identity specified is already in use.</p>
|
|
6161
6602
|
*/
|
|
6162
|
-
export
|
|
6163
|
-
name: "CloudFrontOriginAccessIdentityInUse";
|
|
6164
|
-
$fault: "client";
|
|
6603
|
+
export declare class CloudFrontOriginAccessIdentityInUse extends __BaseException {
|
|
6604
|
+
readonly name: "CloudFrontOriginAccessIdentityInUse";
|
|
6605
|
+
readonly $fault: "client";
|
|
6165
6606
|
Message?: string;
|
|
6607
|
+
/**
|
|
6608
|
+
* @internal
|
|
6609
|
+
*/
|
|
6610
|
+
constructor(opts: __ExceptionOptionType<CloudFrontOriginAccessIdentityInUse, __BaseException>);
|
|
6166
6611
|
}
|
|
6167
6612
|
/**
|
|
6168
6613
|
* <p>Deletes a origin access identity.</p>
|
|
@@ -6187,10 +6632,14 @@ export declare namespace DeleteCloudFrontOriginAccessIdentityRequest {
|
|
|
6187
6632
|
/**
|
|
6188
6633
|
* <p>The specified origin access identity does not exist.</p>
|
|
6189
6634
|
*/
|
|
6190
|
-
export
|
|
6191
|
-
name: "NoSuchCloudFrontOriginAccessIdentity";
|
|
6192
|
-
$fault: "client";
|
|
6635
|
+
export declare class NoSuchCloudFrontOriginAccessIdentity extends __BaseException {
|
|
6636
|
+
readonly name: "NoSuchCloudFrontOriginAccessIdentity";
|
|
6637
|
+
readonly $fault: "client";
|
|
6193
6638
|
Message?: string;
|
|
6639
|
+
/**
|
|
6640
|
+
* @internal
|
|
6641
|
+
*/
|
|
6642
|
+
constructor(opts: __ExceptionOptionType<NoSuchCloudFrontOriginAccessIdentity, __BaseException>);
|
|
6194
6643
|
}
|
|
6195
6644
|
/**
|
|
6196
6645
|
* <p>This action deletes a web distribution. To delete a web distribution using the CloudFront
|
|
@@ -6262,10 +6711,14 @@ export declare namespace DeleteDistributionRequest {
|
|
|
6262
6711
|
* <p>The specified CloudFront distribution is not disabled. You must disable
|
|
6263
6712
|
* the distribution before you can delete it.</p>
|
|
6264
6713
|
*/
|
|
6265
|
-
export
|
|
6266
|
-
name: "DistributionNotDisabled";
|
|
6267
|
-
$fault: "client";
|
|
6714
|
+
export declare class DistributionNotDisabled extends __BaseException {
|
|
6715
|
+
readonly name: "DistributionNotDisabled";
|
|
6716
|
+
readonly $fault: "client";
|
|
6268
6717
|
Message?: string;
|
|
6718
|
+
/**
|
|
6719
|
+
* @internal
|
|
6720
|
+
*/
|
|
6721
|
+
constructor(opts: __ExceptionOptionType<DistributionNotDisabled, __BaseException>);
|
|
6269
6722
|
}
|
|
6270
6723
|
export interface DeleteFieldLevelEncryptionConfigRequest {
|
|
6271
6724
|
/**
|
|
@@ -6287,10 +6740,14 @@ export declare namespace DeleteFieldLevelEncryptionConfigRequest {
|
|
|
6287
6740
|
/**
|
|
6288
6741
|
* <p>The specified configuration for field-level encryption is in use.</p>
|
|
6289
6742
|
*/
|
|
6290
|
-
export
|
|
6291
|
-
name: "FieldLevelEncryptionConfigInUse";
|
|
6292
|
-
$fault: "client";
|
|
6743
|
+
export declare class FieldLevelEncryptionConfigInUse extends __BaseException {
|
|
6744
|
+
readonly name: "FieldLevelEncryptionConfigInUse";
|
|
6745
|
+
readonly $fault: "client";
|
|
6293
6746
|
Message?: string;
|
|
6747
|
+
/**
|
|
6748
|
+
* @internal
|
|
6749
|
+
*/
|
|
6750
|
+
constructor(opts: __ExceptionOptionType<FieldLevelEncryptionConfigInUse, __BaseException>);
|
|
6294
6751
|
}
|
|
6295
6752
|
export interface DeleteFieldLevelEncryptionProfileRequest {
|
|
6296
6753
|
/**
|
|
@@ -6312,10 +6769,14 @@ export declare namespace DeleteFieldLevelEncryptionProfileRequest {
|
|
|
6312
6769
|
/**
|
|
6313
6770
|
* <p>The specified profile for field-level encryption is in use.</p>
|
|
6314
6771
|
*/
|
|
6315
|
-
export
|
|
6316
|
-
name: "FieldLevelEncryptionProfileInUse";
|
|
6317
|
-
$fault: "client";
|
|
6772
|
+
export declare class FieldLevelEncryptionProfileInUse extends __BaseException {
|
|
6773
|
+
readonly name: "FieldLevelEncryptionProfileInUse";
|
|
6774
|
+
readonly $fault: "client";
|
|
6318
6775
|
Message?: string;
|
|
6776
|
+
/**
|
|
6777
|
+
* @internal
|
|
6778
|
+
*/
|
|
6779
|
+
constructor(opts: __ExceptionOptionType<FieldLevelEncryptionProfileInUse, __BaseException>);
|
|
6319
6780
|
}
|
|
6320
6781
|
export interface DeleteFunctionRequest {
|
|
6321
6782
|
/**
|
|
@@ -6338,18 +6799,26 @@ export declare namespace DeleteFunctionRequest {
|
|
|
6338
6799
|
* <p>Cannot delete the function because it’s attached to one or more cache
|
|
6339
6800
|
* behaviors.</p>
|
|
6340
6801
|
*/
|
|
6341
|
-
export
|
|
6342
|
-
name: "FunctionInUse";
|
|
6343
|
-
$fault: "client";
|
|
6802
|
+
export declare class FunctionInUse extends __BaseException {
|
|
6803
|
+
readonly name: "FunctionInUse";
|
|
6804
|
+
readonly $fault: "client";
|
|
6344
6805
|
Message?: string;
|
|
6806
|
+
/**
|
|
6807
|
+
* @internal
|
|
6808
|
+
*/
|
|
6809
|
+
constructor(opts: __ExceptionOptionType<FunctionInUse, __BaseException>);
|
|
6345
6810
|
}
|
|
6346
6811
|
/**
|
|
6347
6812
|
* <p>The function does not exist.</p>
|
|
6348
6813
|
*/
|
|
6349
|
-
export
|
|
6350
|
-
name: "NoSuchFunctionExists";
|
|
6351
|
-
$fault: "client";
|
|
6814
|
+
export declare class NoSuchFunctionExists extends __BaseException {
|
|
6815
|
+
readonly name: "NoSuchFunctionExists";
|
|
6816
|
+
readonly $fault: "client";
|
|
6352
6817
|
Message?: string;
|
|
6818
|
+
/**
|
|
6819
|
+
* @internal
|
|
6820
|
+
*/
|
|
6821
|
+
constructor(opts: __ExceptionOptionType<NoSuchFunctionExists, __BaseException>);
|
|
6353
6822
|
}
|
|
6354
6823
|
export interface DeleteKeyGroupRequest {
|
|
6355
6824
|
/**
|
|
@@ -6373,18 +6842,26 @@ export declare namespace DeleteKeyGroupRequest {
|
|
|
6373
6842
|
/**
|
|
6374
6843
|
* <p>A resource that was specified is not valid.</p>
|
|
6375
6844
|
*/
|
|
6376
|
-
export
|
|
6377
|
-
name: "NoSuchResource";
|
|
6378
|
-
$fault: "client";
|
|
6845
|
+
export declare class NoSuchResource extends __BaseException {
|
|
6846
|
+
readonly name: "NoSuchResource";
|
|
6847
|
+
readonly $fault: "client";
|
|
6379
6848
|
Message?: string;
|
|
6849
|
+
/**
|
|
6850
|
+
* @internal
|
|
6851
|
+
*/
|
|
6852
|
+
constructor(opts: __ExceptionOptionType<NoSuchResource, __BaseException>);
|
|
6380
6853
|
}
|
|
6381
6854
|
/**
|
|
6382
6855
|
* <p>Cannot delete this resource because it is in use.</p>
|
|
6383
6856
|
*/
|
|
6384
|
-
export
|
|
6385
|
-
name: "ResourceInUse";
|
|
6386
|
-
$fault: "client";
|
|
6857
|
+
export declare class ResourceInUse extends __BaseException {
|
|
6858
|
+
readonly name: "ResourceInUse";
|
|
6859
|
+
readonly $fault: "client";
|
|
6387
6860
|
Message?: string;
|
|
6861
|
+
/**
|
|
6862
|
+
* @internal
|
|
6863
|
+
*/
|
|
6864
|
+
constructor(opts: __ExceptionOptionType<ResourceInUse, __BaseException>);
|
|
6388
6865
|
}
|
|
6389
6866
|
export interface DeleteMonitoringSubscriptionRequest {
|
|
6390
6867
|
/**
|