@aws-sdk/client-cloudfront 3.696.0 → 3.698.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.
Files changed (70) hide show
  1. package/README.md +88 -0
  2. package/dist-cjs/index.js +988 -197
  3. package/dist-es/CloudFront.js +22 -0
  4. package/dist-es/commands/CreateAnycastIpListCommand.js +22 -0
  5. package/dist-es/commands/CreateVpcOriginCommand.js +22 -0
  6. package/dist-es/commands/DeleteAnycastIpListCommand.js +22 -0
  7. package/dist-es/commands/DeleteVpcOriginCommand.js +22 -0
  8. package/dist-es/commands/GetAnycastIpListCommand.js +22 -0
  9. package/dist-es/commands/GetVpcOriginCommand.js +22 -0
  10. package/dist-es/commands/ListAnycastIpListsCommand.js +22 -0
  11. package/dist-es/commands/ListDistributionsByAnycastIpListIdCommand.js +23 -0
  12. package/dist-es/commands/ListDistributionsByVpcOriginIdCommand.js +22 -0
  13. package/dist-es/commands/ListVpcOriginsCommand.js +22 -0
  14. package/dist-es/commands/UpdateVpcOriginCommand.js +22 -0
  15. package/dist-es/commands/index.js +11 -0
  16. package/dist-es/models/models_0.js +82 -52
  17. package/dist-es/models/models_1.js +3 -13
  18. package/dist-es/protocols/Aws_restXml.js +648 -66
  19. package/dist-types/CloudFront.d.ts +79 -0
  20. package/dist-types/CloudFrontClient.d.ts +13 -2
  21. package/dist-types/commands/CopyDistributionCommand.d.ts +15 -4
  22. package/dist-types/commands/CreateAnycastIpListCommand.d.ts +110 -0
  23. package/dist-types/commands/CreateDistributionCommand.d.ts +33 -8
  24. package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +33 -8
  25. package/dist-types/commands/CreateKeyValueStoreCommand.d.ts +4 -4
  26. package/dist-types/commands/CreateVpcOriginCommand.d.ts +186 -0
  27. package/dist-types/commands/DeleteAnycastIpListCommand.d.ts +95 -0
  28. package/dist-types/commands/DeleteCachePolicyCommand.d.ts +1 -1
  29. package/dist-types/commands/DeleteKeyValueStoreCommand.d.ts +2 -2
  30. package/dist-types/commands/DeleteOriginRequestPolicyCommand.d.ts +1 -1
  31. package/dist-types/commands/DeleteResponseHeadersPolicyCommand.d.ts +1 -1
  32. package/dist-types/commands/DeleteVpcOriginCommand.d.ts +155 -0
  33. package/dist-types/commands/DescribeKeyValueStoreCommand.d.ts +1 -1
  34. package/dist-types/commands/GetAnycastIpListCommand.d.ts +94 -0
  35. package/dist-types/commands/GetDistributionCommand.d.ts +15 -4
  36. package/dist-types/commands/GetDistributionConfigCommand.d.ts +15 -4
  37. package/dist-types/commands/GetVpcOriginCommand.d.ts +140 -0
  38. package/dist-types/commands/ListAnycastIpListsCommand.d.ts +100 -0
  39. package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +393 -0
  40. package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +11 -0
  41. package/dist-types/commands/ListDistributionsByVpcOriginIdCommand.d.ts +116 -0
  42. package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +11 -0
  43. package/dist-types/commands/ListDistributionsCommand.d.ts +11 -0
  44. package/dist-types/commands/ListVpcOriginsCommand.d.ts +131 -0
  45. package/dist-types/commands/UpdateDistributionCommand.d.ts +33 -8
  46. package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +18 -4
  47. package/dist-types/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
  48. package/dist-types/commands/UpdateVpcOriginCommand.d.ts +193 -0
  49. package/dist-types/commands/index.d.ts +11 -0
  50. package/dist-types/models/models_0.d.ts +361 -383
  51. package/dist-types/models/models_1.d.ts +733 -25
  52. package/dist-types/protocols/Aws_restXml.d.ts +99 -0
  53. package/dist-types/ts3.4/CloudFront.d.ts +195 -0
  54. package/dist-types/ts3.4/CloudFrontClient.d.ts +68 -2
  55. package/dist-types/ts3.4/commands/CreateAnycastIpListCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/CreateVpcOriginCommand.d.ts +50 -0
  57. package/dist-types/ts3.4/commands/DeleteAnycastIpListCommand.d.ts +46 -0
  58. package/dist-types/ts3.4/commands/DeleteVpcOriginCommand.d.ts +50 -0
  59. package/dist-types/ts3.4/commands/GetAnycastIpListCommand.d.ts +50 -0
  60. package/dist-types/ts3.4/commands/GetVpcOriginCommand.d.ts +47 -0
  61. package/dist-types/ts3.4/commands/ListAnycastIpListsCommand.d.ts +51 -0
  62. package/dist-types/ts3.4/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +51 -0
  63. package/dist-types/ts3.4/commands/ListDistributionsByVpcOriginIdCommand.d.ts +51 -0
  64. package/dist-types/ts3.4/commands/ListVpcOriginsCommand.d.ts +50 -0
  65. package/dist-types/ts3.4/commands/UpdateVpcOriginCommand.d.ts +50 -0
  66. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  67. package/dist-types/ts3.4/models/models_0.d.ts +106 -93
  68. package/dist-types/ts3.4/models/models_1.d.ts +171 -13
  69. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +132 -0
  70. package/package.json +1 -1
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudFrontClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudFrontClient";
8
+ import {
9
+ ListVpcOriginsRequest,
10
+ ListVpcOriginsResult,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListVpcOriginsCommandInput extends ListVpcOriginsRequest {}
15
+ export interface ListVpcOriginsCommandOutput
16
+ extends ListVpcOriginsResult,
17
+ __MetadataBearer {}
18
+ declare const ListVpcOriginsCommand_base: {
19
+ new (
20
+ input: ListVpcOriginsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListVpcOriginsCommandInput,
23
+ ListVpcOriginsCommandOutput,
24
+ CloudFrontClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListVpcOriginsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListVpcOriginsCommandInput,
32
+ ListVpcOriginsCommandOutput,
33
+ CloudFrontClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListVpcOriginsCommand extends ListVpcOriginsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListVpcOriginsRequest;
43
+ output: ListVpcOriginsResult;
44
+ };
45
+ sdk: {
46
+ input: ListVpcOriginsCommandInput;
47
+ output: ListVpcOriginsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudFrontClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudFrontClient";
8
+ import {
9
+ UpdateVpcOriginRequest,
10
+ UpdateVpcOriginResult,
11
+ } from "../models/models_1";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateVpcOriginCommandInput extends UpdateVpcOriginRequest {}
15
+ export interface UpdateVpcOriginCommandOutput
16
+ extends UpdateVpcOriginResult,
17
+ __MetadataBearer {}
18
+ declare const UpdateVpcOriginCommand_base: {
19
+ new (
20
+ input: UpdateVpcOriginCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateVpcOriginCommandInput,
23
+ UpdateVpcOriginCommandOutput,
24
+ CloudFrontClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: UpdateVpcOriginCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateVpcOriginCommandInput,
32
+ UpdateVpcOriginCommandOutput,
33
+ CloudFrontClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateVpcOriginCommand extends UpdateVpcOriginCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateVpcOriginRequest;
43
+ output: UpdateVpcOriginResult;
44
+ };
45
+ sdk: {
46
+ input: UpdateVpcOriginCommandInput;
47
+ output: UpdateVpcOriginCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -1,5 +1,6 @@
1
1
  export * from "./AssociateAliasCommand";
2
2
  export * from "./CopyDistributionCommand";
3
+ export * from "./CreateAnycastIpListCommand";
3
4
  export * from "./CreateCachePolicyCommand";
4
5
  export * from "./CreateCloudFrontOriginAccessIdentityCommand";
5
6
  export * from "./CreateContinuousDeploymentPolicyCommand";
@@ -19,6 +20,8 @@ export * from "./CreateRealtimeLogConfigCommand";
19
20
  export * from "./CreateResponseHeadersPolicyCommand";
20
21
  export * from "./CreateStreamingDistributionCommand";
21
22
  export * from "./CreateStreamingDistributionWithTagsCommand";
23
+ export * from "./CreateVpcOriginCommand";
24
+ export * from "./DeleteAnycastIpListCommand";
22
25
  export * from "./DeleteCachePolicyCommand";
23
26
  export * from "./DeleteCloudFrontOriginAccessIdentityCommand";
24
27
  export * from "./DeleteContinuousDeploymentPolicyCommand";
@@ -35,8 +38,10 @@ export * from "./DeletePublicKeyCommand";
35
38
  export * from "./DeleteRealtimeLogConfigCommand";
36
39
  export * from "./DeleteResponseHeadersPolicyCommand";
37
40
  export * from "./DeleteStreamingDistributionCommand";
41
+ export * from "./DeleteVpcOriginCommand";
38
42
  export * from "./DescribeFunctionCommand";
39
43
  export * from "./DescribeKeyValueStoreCommand";
44
+ export * from "./GetAnycastIpListCommand";
40
45
  export * from "./GetCachePolicyCommand";
41
46
  export * from "./GetCachePolicyConfigCommand";
42
47
  export * from "./GetCloudFrontOriginAccessIdentityCommand";
@@ -65,15 +70,19 @@ export * from "./GetResponseHeadersPolicyCommand";
65
70
  export * from "./GetResponseHeadersPolicyConfigCommand";
66
71
  export * from "./GetStreamingDistributionCommand";
67
72
  export * from "./GetStreamingDistributionConfigCommand";
73
+ export * from "./GetVpcOriginCommand";
74
+ export * from "./ListAnycastIpListsCommand";
68
75
  export * from "./ListCachePoliciesCommand";
69
76
  export * from "./ListCloudFrontOriginAccessIdentitiesCommand";
70
77
  export * from "./ListConflictingAliasesCommand";
71
78
  export * from "./ListContinuousDeploymentPoliciesCommand";
79
+ export * from "./ListDistributionsByAnycastIpListIdCommand";
72
80
  export * from "./ListDistributionsByCachePolicyIdCommand";
73
81
  export * from "./ListDistributionsByKeyGroupCommand";
74
82
  export * from "./ListDistributionsByOriginRequestPolicyIdCommand";
75
83
  export * from "./ListDistributionsByRealtimeLogConfigCommand";
76
84
  export * from "./ListDistributionsByResponseHeadersPolicyIdCommand";
85
+ export * from "./ListDistributionsByVpcOriginIdCommand";
77
86
  export * from "./ListDistributionsByWebACLIdCommand";
78
87
  export * from "./ListDistributionsCommand";
79
88
  export * from "./ListFieldLevelEncryptionConfigsCommand";
@@ -89,6 +98,7 @@ export * from "./ListRealtimeLogConfigsCommand";
89
98
  export * from "./ListResponseHeadersPoliciesCommand";
90
99
  export * from "./ListStreamingDistributionsCommand";
91
100
  export * from "./ListTagsForResourceCommand";
101
+ export * from "./ListVpcOriginsCommand";
92
102
  export * from "./PublishFunctionCommand";
93
103
  export * from "./TagResourceCommand";
94
104
  export * from "./TestFunctionCommand";
@@ -109,3 +119,4 @@ export * from "./UpdatePublicKeyCommand";
109
119
  export * from "./UpdateRealtimeLogConfigCommand";
110
120
  export * from "./UpdateResponseHeadersPolicyCommand";
111
121
  export * from "./UpdateStreamingDistributionCommand";
122
+ export * from "./UpdateVpcOriginCommand";
@@ -74,6 +74,31 @@ export interface AllowedMethods {
74
74
  Items: Method[] | undefined;
75
75
  CachedMethods?: CachedMethods | undefined;
76
76
  }
77
+ export interface AnycastIpList {
78
+ Id: string | undefined;
79
+ Name: string | undefined;
80
+ Status: string | undefined;
81
+ Arn: string | undefined;
82
+ AnycastIps: string[] | undefined;
83
+ IpCount: number | undefined;
84
+ LastModifiedTime: Date | undefined;
85
+ }
86
+ export interface AnycastIpListSummary {
87
+ Id: string | undefined;
88
+ Name: string | undefined;
89
+ Status: string | undefined;
90
+ Arn: string | undefined;
91
+ IpCount: number | undefined;
92
+ LastModifiedTime: Date | undefined;
93
+ }
94
+ export interface AnycastIpListCollection {
95
+ Items?: AnycastIpListSummary[] | undefined;
96
+ Marker: string | undefined;
97
+ NextMarker?: string | undefined;
98
+ MaxItems: number | undefined;
99
+ IsTruncated: boolean | undefined;
100
+ Quantity: number | undefined;
101
+ }
77
102
  export interface AssociateAliasRequest {
78
103
  TargetDistributionId: string | undefined;
79
104
  Alias: string | undefined;
@@ -153,6 +178,9 @@ export interface FunctionAssociations {
153
178
  Quantity: number | undefined;
154
179
  Items?: FunctionAssociation[] | undefined;
155
180
  }
181
+ export interface GrpcConfig {
182
+ Enabled: boolean | undefined;
183
+ }
156
184
  export interface LambdaFunctionAssociation {
157
185
  LambdaFunctionARN: string | undefined;
158
186
  EventType: EventType | undefined;
@@ -195,6 +223,7 @@ export interface CacheBehavior {
195
223
  CachePolicyId?: string | undefined;
196
224
  OriginRequestPolicyId?: string | undefined;
197
225
  ResponseHeadersPolicyId?: string | undefined;
226
+ GrpcConfig?: GrpcConfig | undefined;
198
227
  ForwardedValues?: ForwardedValues | undefined;
199
228
  MinTTL?: number | undefined;
200
229
  DefaultTTL?: number | undefined;
@@ -313,6 +342,14 @@ export declare class CannotDeleteEntityWhileInUse extends __BaseException {
313
342
  opts: __ExceptionOptionType<CannotDeleteEntityWhileInUse, __BaseException>
314
343
  );
315
344
  }
345
+ export declare class CannotUpdateEntityWhileInUse extends __BaseException {
346
+ readonly name: "CannotUpdateEntityWhileInUse";
347
+ readonly $fault: "client";
348
+ Message?: string | undefined;
349
+ constructor(
350
+ opts: __ExceptionOptionType<CannotUpdateEntityWhileInUse, __BaseException>
351
+ );
352
+ }
316
353
  export declare const CertificateSource: {
317
354
  readonly acm: "acm";
318
355
  readonly cloudfront: "cloudfront";
@@ -358,6 +395,7 @@ export interface DefaultCacheBehavior {
358
395
  CachePolicyId?: string | undefined;
359
396
  OriginRequestPolicyId?: string | undefined;
360
397
  ResponseHeadersPolicyId?: string | undefined;
398
+ GrpcConfig?: GrpcConfig | undefined;
361
399
  ForwardedValues?: ForwardedValues | undefined;
362
400
  MinTTL?: number | undefined;
363
401
  DefaultTTL?: number | undefined;
@@ -371,10 +409,10 @@ export declare const HttpVersion: {
371
409
  };
372
410
  export type HttpVersion = (typeof HttpVersion)[keyof typeof HttpVersion];
373
411
  export interface LoggingConfig {
374
- Enabled: boolean | undefined;
375
- IncludeCookies: boolean | undefined;
376
- Bucket: string | undefined;
377
- Prefix: string | undefined;
412
+ Enabled?: boolean | undefined;
413
+ IncludeCookies?: boolean | undefined;
414
+ Bucket?: string | undefined;
415
+ Prefix?: string | undefined;
378
416
  }
379
417
  export interface StatusCodes {
380
418
  Quantity: number | undefined;
@@ -390,10 +428,17 @@ export interface OriginGroupMembers {
390
428
  Quantity: number | undefined;
391
429
  Items: OriginGroupMember[] | undefined;
392
430
  }
431
+ export declare const OriginGroupSelectionCriteria: {
432
+ readonly Default: "default";
433
+ readonly MediaQualityBased: "media-quality-based";
434
+ };
435
+ export type OriginGroupSelectionCriteria =
436
+ (typeof OriginGroupSelectionCriteria)[keyof typeof OriginGroupSelectionCriteria];
393
437
  export interface OriginGroup {
394
438
  Id: string | undefined;
395
439
  FailoverCriteria: OriginGroupFailoverCriteria | undefined;
396
440
  Members: OriginGroupMembers | undefined;
441
+ SelectionCriteria?: OriginGroupSelectionCriteria | undefined;
397
442
  }
398
443
  export interface OriginGroups {
399
444
  Quantity: number | undefined;
@@ -440,6 +485,9 @@ export interface OriginShield {
440
485
  export interface S3OriginConfig {
441
486
  OriginAccessIdentity: string | undefined;
442
487
  }
488
+ export interface VpcOriginConfig {
489
+ VpcOriginId: string | undefined;
490
+ }
443
491
  export interface Origin {
444
492
  Id: string | undefined;
445
493
  DomainName: string | undefined;
@@ -447,6 +495,7 @@ export interface Origin {
447
495
  CustomHeaders?: CustomHeaders | undefined;
448
496
  S3OriginConfig?: S3OriginConfig | undefined;
449
497
  CustomOriginConfig?: CustomOriginConfig | undefined;
498
+ VpcOriginConfig?: VpcOriginConfig | undefined;
450
499
  ConnectionAttempts?: number | undefined;
451
500
  ConnectionTimeout?: number | undefined;
452
501
  OriginShield?: OriginShield | undefined;
@@ -524,6 +573,7 @@ export interface DistributionConfig {
524
573
  IsIPV6Enabled?: boolean | undefined;
525
574
  ContinuousDeploymentPolicyId?: string | undefined;
526
575
  Staging?: boolean | undefined;
576
+ AnycastIpListId?: string | undefined;
527
577
  }
528
578
  export interface Distribution {
529
579
  Id: string | undefined;
@@ -1044,6 +1094,52 @@ export declare class TrustedSignerDoesNotExist extends __BaseException {
1044
1094
  opts: __ExceptionOptionType<TrustedSignerDoesNotExist, __BaseException>
1045
1095
  );
1046
1096
  }
1097
+ export interface Tag {
1098
+ Key: string | undefined;
1099
+ Value?: string | undefined;
1100
+ }
1101
+ export interface Tags {
1102
+ Items?: Tag[] | undefined;
1103
+ }
1104
+ export interface CreateAnycastIpListRequest {
1105
+ Name: string | undefined;
1106
+ IpCount: number | undefined;
1107
+ Tags?: Tags | undefined;
1108
+ }
1109
+ export interface CreateAnycastIpListResult {
1110
+ AnycastIpList?: AnycastIpList | undefined;
1111
+ ETag?: string | undefined;
1112
+ }
1113
+ export declare class EntityAlreadyExists extends __BaseException {
1114
+ readonly name: "EntityAlreadyExists";
1115
+ readonly $fault: "client";
1116
+ Message?: string | undefined;
1117
+ constructor(
1118
+ opts: __ExceptionOptionType<EntityAlreadyExists, __BaseException>
1119
+ );
1120
+ }
1121
+ export declare class EntityLimitExceeded extends __BaseException {
1122
+ readonly name: "EntityLimitExceeded";
1123
+ readonly $fault: "client";
1124
+ Message?: string | undefined;
1125
+ constructor(
1126
+ opts: __ExceptionOptionType<EntityLimitExceeded, __BaseException>
1127
+ );
1128
+ }
1129
+ export declare class InvalidTagging extends __BaseException {
1130
+ readonly name: "InvalidTagging";
1131
+ readonly $fault: "client";
1132
+ Message?: string | undefined;
1133
+ constructor(opts: __ExceptionOptionType<InvalidTagging, __BaseException>);
1134
+ }
1135
+ export declare class UnsupportedOperation extends __BaseException {
1136
+ readonly name: "UnsupportedOperation";
1137
+ readonly $fault: "client";
1138
+ Message?: string | undefined;
1139
+ constructor(
1140
+ opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>
1141
+ );
1142
+ }
1047
1143
  export interface CreateCachePolicyRequest {
1048
1144
  CachePolicyConfig: CachePolicyConfig | undefined;
1049
1145
  }
@@ -1228,6 +1324,12 @@ export interface CreateDistributionResult {
1228
1324
  Location?: string | undefined;
1229
1325
  ETag?: string | undefined;
1230
1326
  }
1327
+ export declare class EntityNotFound extends __BaseException {
1328
+ readonly name: "EntityNotFound";
1329
+ readonly $fault: "client";
1330
+ Message?: string | undefined;
1331
+ constructor(opts: __ExceptionOptionType<EntityNotFound, __BaseException>);
1332
+ }
1231
1333
  export declare class IllegalOriginAccessConfiguration extends __BaseException {
1232
1334
  readonly name: "IllegalOriginAccessConfiguration";
1233
1335
  readonly $fault: "client";
@@ -1261,13 +1363,6 @@ export declare class NoSuchContinuousDeploymentPolicy extends __BaseException {
1261
1363
  >
1262
1364
  );
1263
1365
  }
1264
- export interface Tag {
1265
- Key: string | undefined;
1266
- Value?: string | undefined;
1267
- }
1268
- export interface Tags {
1269
- Items?: Tag[] | undefined;
1270
- }
1271
1366
  export interface DistributionConfigWithTags {
1272
1367
  DistributionConfig: DistributionConfig | undefined;
1273
1368
  Tags: Tags | undefined;
@@ -1280,12 +1375,6 @@ export interface CreateDistributionWithTagsResult {
1280
1375
  Location?: string | undefined;
1281
1376
  ETag?: string | undefined;
1282
1377
  }
1283
- export declare class InvalidTagging extends __BaseException {
1284
- readonly name: "InvalidTagging";
1285
- readonly $fault: "client";
1286
- Message?: string | undefined;
1287
- constructor(opts: __ExceptionOptionType<InvalidTagging, __BaseException>);
1288
- }
1289
1378
  export declare const Format: {
1290
1379
  readonly URLEncoded: "URLEncoded";
1291
1380
  };
@@ -1561,14 +1650,6 @@ export declare class TooManyFunctions extends __BaseException {
1561
1650
  Message?: string | undefined;
1562
1651
  constructor(opts: __ExceptionOptionType<TooManyFunctions, __BaseException>);
1563
1652
  }
1564
- export declare class UnsupportedOperation extends __BaseException {
1565
- readonly name: "UnsupportedOperation";
1566
- readonly $fault: "client";
1567
- Message?: string | undefined;
1568
- constructor(
1569
- opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>
1570
- );
1571
- }
1572
1653
  export interface Paths {
1573
1654
  Quantity: number | undefined;
1574
1655
  Items?: string[] | undefined;
@@ -1666,22 +1747,6 @@ export interface CreateKeyValueStoreResult {
1666
1747
  ETag?: string | undefined;
1667
1748
  Location?: string | undefined;
1668
1749
  }
1669
- export declare class EntityAlreadyExists extends __BaseException {
1670
- readonly name: "EntityAlreadyExists";
1671
- readonly $fault: "client";
1672
- Message?: string | undefined;
1673
- constructor(
1674
- opts: __ExceptionOptionType<EntityAlreadyExists, __BaseException>
1675
- );
1676
- }
1677
- export declare class EntityLimitExceeded extends __BaseException {
1678
- readonly name: "EntityLimitExceeded";
1679
- readonly $fault: "client";
1680
- Message?: string | undefined;
1681
- constructor(
1682
- opts: __ExceptionOptionType<EntityLimitExceeded, __BaseException>
1683
- );
1684
- }
1685
1750
  export declare class EntitySizeLimitExceeded extends __BaseException {
1686
1751
  readonly name: "EntitySizeLimitExceeded";
1687
1752
  readonly $fault: "client";
@@ -1968,58 +2033,6 @@ export interface ResponseHeadersPolicyAccessControlAllowHeaders {
1968
2033
  Quantity: number | undefined;
1969
2034
  Items: string[] | undefined;
1970
2035
  }
1971
- export interface ResponseHeadersPolicyAccessControlAllowMethods {
1972
- Quantity: number | undefined;
1973
- Items: ResponseHeadersPolicyAccessControlAllowMethodsValues[] | undefined;
1974
- }
1975
- export interface ResponseHeadersPolicyAccessControlAllowOrigins {
1976
- Quantity: number | undefined;
1977
- Items: string[] | undefined;
1978
- }
1979
- export interface ResponseHeadersPolicyAccessControlExposeHeaders {
1980
- Quantity: number | undefined;
1981
- Items?: string[] | undefined;
1982
- }
1983
- export interface ResponseHeadersPolicyCorsConfig {
1984
- AccessControlAllowOrigins:
1985
- | ResponseHeadersPolicyAccessControlAllowOrigins
1986
- | undefined;
1987
- AccessControlAllowHeaders:
1988
- | ResponseHeadersPolicyAccessControlAllowHeaders
1989
- | undefined;
1990
- AccessControlAllowMethods:
1991
- | ResponseHeadersPolicyAccessControlAllowMethods
1992
- | undefined;
1993
- AccessControlAllowCredentials: boolean | undefined;
1994
- AccessControlExposeHeaders?:
1995
- | ResponseHeadersPolicyAccessControlExposeHeaders
1996
- | undefined;
1997
- AccessControlMaxAgeSec?: number | undefined;
1998
- OriginOverride: boolean | undefined;
1999
- }
2000
- export interface ResponseHeadersPolicyCustomHeader {
2001
- Header: string | undefined;
2002
- Value: string | undefined;
2003
- Override: boolean | undefined;
2004
- }
2005
- export interface ResponseHeadersPolicyCustomHeadersConfig {
2006
- Quantity: number | undefined;
2007
- Items?: ResponseHeadersPolicyCustomHeader[] | undefined;
2008
- }
2009
- export interface ResponseHeadersPolicyRemoveHeader {
2010
- Header: string | undefined;
2011
- }
2012
- export interface ResponseHeadersPolicyRemoveHeadersConfig {
2013
- Quantity: number | undefined;
2014
- Items?: ResponseHeadersPolicyRemoveHeader[] | undefined;
2015
- }
2016
- export interface ResponseHeadersPolicyContentSecurityPolicy {
2017
- Override: boolean | undefined;
2018
- ContentSecurityPolicy: string | undefined;
2019
- }
2020
- export interface ResponseHeadersPolicyContentTypeOptions {
2021
- Override: boolean | undefined;
2022
- }
2023
2036
  export declare const OriginCustomHeaderFilterSensitiveLog: (
2024
2037
  obj: OriginCustomHeader
2025
2038
  ) => any;