@aws-sdk/client-cloudfront 3.693.0 → 3.697.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/README.md +88 -0
- package/dist-cjs/index.js +976 -199
- package/dist-es/CloudFront.js +22 -0
- package/dist-es/commands/CreateAnycastIpListCommand.js +22 -0
- package/dist-es/commands/CreateVpcOriginCommand.js +22 -0
- package/dist-es/commands/DeleteAnycastIpListCommand.js +22 -0
- package/dist-es/commands/DeleteVpcOriginCommand.js +22 -0
- package/dist-es/commands/GetAnycastIpListCommand.js +22 -0
- package/dist-es/commands/GetVpcOriginCommand.js +22 -0
- package/dist-es/commands/ListAnycastIpListsCommand.js +22 -0
- package/dist-es/commands/ListDistributionsByAnycastIpListIdCommand.js +23 -0
- package/dist-es/commands/ListDistributionsByVpcOriginIdCommand.js +22 -0
- package/dist-es/commands/ListVpcOriginsCommand.js +22 -0
- package/dist-es/commands/UpdateVpcOriginCommand.js +22 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/models/models_0.js +78 -52
- package/dist-es/models/models_1.js +3 -13
- package/dist-es/protocols/Aws_restXml.js +630 -56
- package/dist-types/CloudFront.d.ts +79 -0
- package/dist-types/CloudFrontClient.d.ts +13 -2
- package/dist-types/commands/CopyDistributionCommand.d.ts +14 -4
- package/dist-types/commands/CreateAnycastIpListCommand.d.ts +110 -0
- package/dist-types/commands/CreateDistributionCommand.d.ts +31 -8
- package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +31 -8
- package/dist-types/commands/CreateKeyValueStoreCommand.d.ts +3 -3
- package/dist-types/commands/CreateVpcOriginCommand.d.ts +135 -0
- package/dist-types/commands/DeleteAnycastIpListCommand.d.ts +95 -0
- package/dist-types/commands/DeleteCachePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteKeyValueStoreCommand.d.ts +2 -2
- package/dist-types/commands/DeleteOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResponseHeadersPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVpcOriginCommand.d.ts +117 -0
- package/dist-types/commands/DescribeKeyValueStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetAnycastIpListCommand.d.ts +94 -0
- package/dist-types/commands/GetDistributionCommand.d.ts +14 -4
- package/dist-types/commands/GetDistributionConfigCommand.d.ts +14 -4
- package/dist-types/commands/GetVpcOriginCommand.d.ts +103 -0
- package/dist-types/commands/ListAnycastIpListsCommand.d.ts +100 -0
- package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +392 -0
- package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +10 -0
- package/dist-types/commands/ListDistributionsByVpcOriginIdCommand.d.ts +94 -0
- package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +10 -0
- package/dist-types/commands/ListDistributionsCommand.d.ts +10 -0
- package/dist-types/commands/ListVpcOriginsCommand.d.ts +101 -0
- package/dist-types/commands/UpdateDistributionCommand.d.ts +31 -8
- package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +17 -4
- package/dist-types/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcOriginCommand.d.ts +141 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/models/models_0.d.ts +337 -314
- package/dist-types/models/models_1.d.ts +668 -24
- package/dist-types/protocols/Aws_restXml.d.ts +99 -0
- package/dist-types/ts3.4/CloudFront.d.ts +195 -0
- package/dist-types/ts3.4/CloudFrontClient.d.ts +68 -2
- package/dist-types/ts3.4/commands/CreateAnycastIpListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateVpcOriginCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteAnycastIpListCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteVpcOriginCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAnycastIpListCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetVpcOriginCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAnycastIpListsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByVpcOriginIdCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListVpcOriginsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateVpcOriginCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/models/models_0.d.ts +99 -89
- package/dist-types/ts3.4/models/models_1.d.ts +167 -13
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +132 -0
- package/package.json +38 -38
|
@@ -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
|
|
375
|
-
IncludeCookies
|
|
376
|
-
Bucket
|
|
377
|
-
Prefix
|
|
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;
|
|
@@ -440,6 +478,9 @@ export interface OriginShield {
|
|
|
440
478
|
export interface S3OriginConfig {
|
|
441
479
|
OriginAccessIdentity: string | undefined;
|
|
442
480
|
}
|
|
481
|
+
export interface VpcOriginConfig {
|
|
482
|
+
VpcOriginId: string | undefined;
|
|
483
|
+
}
|
|
443
484
|
export interface Origin {
|
|
444
485
|
Id: string | undefined;
|
|
445
486
|
DomainName: string | undefined;
|
|
@@ -447,6 +488,7 @@ export interface Origin {
|
|
|
447
488
|
CustomHeaders?: CustomHeaders | undefined;
|
|
448
489
|
S3OriginConfig?: S3OriginConfig | undefined;
|
|
449
490
|
CustomOriginConfig?: CustomOriginConfig | undefined;
|
|
491
|
+
VpcOriginConfig?: VpcOriginConfig | undefined;
|
|
450
492
|
ConnectionAttempts?: number | undefined;
|
|
451
493
|
ConnectionTimeout?: number | undefined;
|
|
452
494
|
OriginShield?: OriginShield | undefined;
|
|
@@ -524,6 +566,7 @@ export interface DistributionConfig {
|
|
|
524
566
|
IsIPV6Enabled?: boolean | undefined;
|
|
525
567
|
ContinuousDeploymentPolicyId?: string | undefined;
|
|
526
568
|
Staging?: boolean | undefined;
|
|
569
|
+
AnycastIpListId?: string | undefined;
|
|
527
570
|
}
|
|
528
571
|
export interface Distribution {
|
|
529
572
|
Id: string | undefined;
|
|
@@ -1044,6 +1087,52 @@ export declare class TrustedSignerDoesNotExist extends __BaseException {
|
|
|
1044
1087
|
opts: __ExceptionOptionType<TrustedSignerDoesNotExist, __BaseException>
|
|
1045
1088
|
);
|
|
1046
1089
|
}
|
|
1090
|
+
export interface Tag {
|
|
1091
|
+
Key: string | undefined;
|
|
1092
|
+
Value?: string | undefined;
|
|
1093
|
+
}
|
|
1094
|
+
export interface Tags {
|
|
1095
|
+
Items?: Tag[] | undefined;
|
|
1096
|
+
}
|
|
1097
|
+
export interface CreateAnycastIpListRequest {
|
|
1098
|
+
Name: string | undefined;
|
|
1099
|
+
IpCount: number | undefined;
|
|
1100
|
+
Tags?: Tags | undefined;
|
|
1101
|
+
}
|
|
1102
|
+
export interface CreateAnycastIpListResult {
|
|
1103
|
+
AnycastIpList?: AnycastIpList | undefined;
|
|
1104
|
+
ETag?: string | undefined;
|
|
1105
|
+
}
|
|
1106
|
+
export declare class EntityAlreadyExists extends __BaseException {
|
|
1107
|
+
readonly name: "EntityAlreadyExists";
|
|
1108
|
+
readonly $fault: "client";
|
|
1109
|
+
Message?: string | undefined;
|
|
1110
|
+
constructor(
|
|
1111
|
+
opts: __ExceptionOptionType<EntityAlreadyExists, __BaseException>
|
|
1112
|
+
);
|
|
1113
|
+
}
|
|
1114
|
+
export declare class EntityLimitExceeded extends __BaseException {
|
|
1115
|
+
readonly name: "EntityLimitExceeded";
|
|
1116
|
+
readonly $fault: "client";
|
|
1117
|
+
Message?: string | undefined;
|
|
1118
|
+
constructor(
|
|
1119
|
+
opts: __ExceptionOptionType<EntityLimitExceeded, __BaseException>
|
|
1120
|
+
);
|
|
1121
|
+
}
|
|
1122
|
+
export declare class InvalidTagging extends __BaseException {
|
|
1123
|
+
readonly name: "InvalidTagging";
|
|
1124
|
+
readonly $fault: "client";
|
|
1125
|
+
Message?: string | undefined;
|
|
1126
|
+
constructor(opts: __ExceptionOptionType<InvalidTagging, __BaseException>);
|
|
1127
|
+
}
|
|
1128
|
+
export declare class UnsupportedOperation extends __BaseException {
|
|
1129
|
+
readonly name: "UnsupportedOperation";
|
|
1130
|
+
readonly $fault: "client";
|
|
1131
|
+
Message?: string | undefined;
|
|
1132
|
+
constructor(
|
|
1133
|
+
opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>
|
|
1134
|
+
);
|
|
1135
|
+
}
|
|
1047
1136
|
export interface CreateCachePolicyRequest {
|
|
1048
1137
|
CachePolicyConfig: CachePolicyConfig | undefined;
|
|
1049
1138
|
}
|
|
@@ -1228,6 +1317,12 @@ export interface CreateDistributionResult {
|
|
|
1228
1317
|
Location?: string | undefined;
|
|
1229
1318
|
ETag?: string | undefined;
|
|
1230
1319
|
}
|
|
1320
|
+
export declare class EntityNotFound extends __BaseException {
|
|
1321
|
+
readonly name: "EntityNotFound";
|
|
1322
|
+
readonly $fault: "client";
|
|
1323
|
+
Message?: string | undefined;
|
|
1324
|
+
constructor(opts: __ExceptionOptionType<EntityNotFound, __BaseException>);
|
|
1325
|
+
}
|
|
1231
1326
|
export declare class IllegalOriginAccessConfiguration extends __BaseException {
|
|
1232
1327
|
readonly name: "IllegalOriginAccessConfiguration";
|
|
1233
1328
|
readonly $fault: "client";
|
|
@@ -1261,13 +1356,6 @@ export declare class NoSuchContinuousDeploymentPolicy extends __BaseException {
|
|
|
1261
1356
|
>
|
|
1262
1357
|
);
|
|
1263
1358
|
}
|
|
1264
|
-
export interface Tag {
|
|
1265
|
-
Key: string | undefined;
|
|
1266
|
-
Value?: string | undefined;
|
|
1267
|
-
}
|
|
1268
|
-
export interface Tags {
|
|
1269
|
-
Items?: Tag[] | undefined;
|
|
1270
|
-
}
|
|
1271
1359
|
export interface DistributionConfigWithTags {
|
|
1272
1360
|
DistributionConfig: DistributionConfig | undefined;
|
|
1273
1361
|
Tags: Tags | undefined;
|
|
@@ -1280,12 +1368,6 @@ export interface CreateDistributionWithTagsResult {
|
|
|
1280
1368
|
Location?: string | undefined;
|
|
1281
1369
|
ETag?: string | undefined;
|
|
1282
1370
|
}
|
|
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
1371
|
export declare const Format: {
|
|
1290
1372
|
readonly URLEncoded: "URLEncoded";
|
|
1291
1373
|
};
|
|
@@ -1561,14 +1643,6 @@ export declare class TooManyFunctions extends __BaseException {
|
|
|
1561
1643
|
Message?: string | undefined;
|
|
1562
1644
|
constructor(opts: __ExceptionOptionType<TooManyFunctions, __BaseException>);
|
|
1563
1645
|
}
|
|
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
1646
|
export interface Paths {
|
|
1573
1647
|
Quantity: number | undefined;
|
|
1574
1648
|
Items?: string[] | undefined;
|
|
@@ -1666,22 +1740,6 @@ export interface CreateKeyValueStoreResult {
|
|
|
1666
1740
|
ETag?: string | undefined;
|
|
1667
1741
|
Location?: string | undefined;
|
|
1668
1742
|
}
|
|
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
1743
|
export declare class EntitySizeLimitExceeded extends __BaseException {
|
|
1686
1744
|
readonly name: "EntitySizeLimitExceeded";
|
|
1687
1745
|
readonly $fault: "client";
|
|
@@ -1972,54 +2030,6 @@ export interface ResponseHeadersPolicyAccessControlAllowMethods {
|
|
|
1972
2030
|
Quantity: number | undefined;
|
|
1973
2031
|
Items: ResponseHeadersPolicyAccessControlAllowMethodsValues[] | undefined;
|
|
1974
2032
|
}
|
|
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
2033
|
export declare const OriginCustomHeaderFilterSensitiveLog: (
|
|
2024
2034
|
obj: OriginCustomHeader
|
|
2025
2035
|
) => any;
|