@aws-sdk/client-cloudfront 3.690.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CreateFunctionCommand.d.ts +0 -52
- package/dist-types/commands/CreateKeyValueStoreCommand.d.ts +0 -30
- package/dist-types/commands/DeleteKeyValueStoreCommand.d.ts +0 -12
- package/dist-types/commands/DescribeKeyValueStoreCommand.d.ts +0 -24
- package/dist-types/commands/ListKeyValueStoresCommand.d.ts +0 -32
- package/dist-types/commands/UpdateFunctionCommand.d.ts +0 -52
- package/dist-types/commands/UpdateKeyValueStoreCommand.d.ts +0 -26
- package/dist-types/models/models_0.d.ts +320 -320
- package/dist-types/models/models_1.d.ts +317 -317
- package/dist-types/ts3.4/models/models_0.d.ts +328 -320
- package/dist-types/ts3.4/models/models_1.d.ts +333 -317
- package/package.json +7 -7
|
@@ -15,34 +15,34 @@ export type ResponseHeadersPolicyAccessControlAllowMethodsValues =
|
|
|
15
15
|
export declare class AccessDenied extends __BaseException {
|
|
16
16
|
readonly name: "AccessDenied";
|
|
17
17
|
readonly $fault: "client";
|
|
18
|
-
Message?: string;
|
|
18
|
+
Message?: string | undefined;
|
|
19
19
|
constructor(opts: __ExceptionOptionType<AccessDenied, __BaseException>);
|
|
20
20
|
}
|
|
21
21
|
export interface KeyPairIds {
|
|
22
22
|
Quantity: number | undefined;
|
|
23
|
-
Items?: string[];
|
|
23
|
+
Items?: string[] | undefined;
|
|
24
24
|
}
|
|
25
25
|
export interface KGKeyPairIds {
|
|
26
|
-
KeyGroupId?: string;
|
|
27
|
-
KeyPairIds?: KeyPairIds;
|
|
26
|
+
KeyGroupId?: string | undefined;
|
|
27
|
+
KeyPairIds?: KeyPairIds | undefined;
|
|
28
28
|
}
|
|
29
29
|
export interface ActiveTrustedKeyGroups {
|
|
30
30
|
Enabled: boolean | undefined;
|
|
31
31
|
Quantity: number | undefined;
|
|
32
|
-
Items?: KGKeyPairIds[];
|
|
32
|
+
Items?: KGKeyPairIds[] | undefined;
|
|
33
33
|
}
|
|
34
34
|
export interface Signer {
|
|
35
|
-
AwsAccountNumber?: string;
|
|
36
|
-
KeyPairIds?: KeyPairIds;
|
|
35
|
+
AwsAccountNumber?: string | undefined;
|
|
36
|
+
KeyPairIds?: KeyPairIds | undefined;
|
|
37
37
|
}
|
|
38
38
|
export interface ActiveTrustedSigners {
|
|
39
39
|
Enabled: boolean | undefined;
|
|
40
40
|
Quantity: number | undefined;
|
|
41
|
-
Items?: Signer[];
|
|
41
|
+
Items?: Signer[] | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface Aliases {
|
|
44
44
|
Quantity: number | undefined;
|
|
45
|
-
Items?: string[];
|
|
45
|
+
Items?: string[] | undefined;
|
|
46
46
|
}
|
|
47
47
|
export declare const ICPRecordalStatus: {
|
|
48
48
|
readonly APPROVED: "APPROVED";
|
|
@@ -52,8 +52,8 @@ export declare const ICPRecordalStatus: {
|
|
|
52
52
|
export type ICPRecordalStatus =
|
|
53
53
|
(typeof ICPRecordalStatus)[keyof typeof ICPRecordalStatus];
|
|
54
54
|
export interface AliasICPRecordal {
|
|
55
|
-
CNAME?: string;
|
|
56
|
-
ICPRecordalStatus?: ICPRecordalStatus;
|
|
55
|
+
CNAME?: string | undefined;
|
|
56
|
+
ICPRecordalStatus?: ICPRecordalStatus | undefined;
|
|
57
57
|
}
|
|
58
58
|
export declare const Method: {
|
|
59
59
|
readonly DELETE: "DELETE";
|
|
@@ -72,7 +72,7 @@ export interface CachedMethods {
|
|
|
72
72
|
export interface AllowedMethods {
|
|
73
73
|
Quantity: number | undefined;
|
|
74
74
|
Items: Method[] | undefined;
|
|
75
|
-
CachedMethods?: CachedMethods;
|
|
75
|
+
CachedMethods?: CachedMethods | undefined;
|
|
76
76
|
}
|
|
77
77
|
export interface AssociateAliasRequest {
|
|
78
78
|
TargetDistributionId: string | undefined;
|
|
@@ -81,25 +81,25 @@ export interface AssociateAliasRequest {
|
|
|
81
81
|
export declare class IllegalUpdate extends __BaseException {
|
|
82
82
|
readonly name: "IllegalUpdate";
|
|
83
83
|
readonly $fault: "client";
|
|
84
|
-
Message?: string;
|
|
84
|
+
Message?: string | undefined;
|
|
85
85
|
constructor(opts: __ExceptionOptionType<IllegalUpdate, __BaseException>);
|
|
86
86
|
}
|
|
87
87
|
export declare class InvalidArgument extends __BaseException {
|
|
88
88
|
readonly name: "InvalidArgument";
|
|
89
89
|
readonly $fault: "client";
|
|
90
|
-
Message?: string;
|
|
90
|
+
Message?: string | undefined;
|
|
91
91
|
constructor(opts: __ExceptionOptionType<InvalidArgument, __BaseException>);
|
|
92
92
|
}
|
|
93
93
|
export declare class NoSuchDistribution extends __BaseException {
|
|
94
94
|
readonly name: "NoSuchDistribution";
|
|
95
95
|
readonly $fault: "client";
|
|
96
|
-
Message?: string;
|
|
96
|
+
Message?: string | undefined;
|
|
97
97
|
constructor(opts: __ExceptionOptionType<NoSuchDistribution, __BaseException>);
|
|
98
98
|
}
|
|
99
99
|
export declare class TooManyDistributionCNAMEs extends __BaseException {
|
|
100
100
|
readonly name: "TooManyDistributionCNAMEs";
|
|
101
101
|
readonly $fault: "client";
|
|
102
|
-
Message?: string;
|
|
102
|
+
Message?: string | undefined;
|
|
103
103
|
constructor(
|
|
104
104
|
opts: __ExceptionOptionType<TooManyDistributionCNAMEs, __BaseException>
|
|
105
105
|
);
|
|
@@ -107,7 +107,7 @@ export declare class TooManyDistributionCNAMEs extends __BaseException {
|
|
|
107
107
|
export declare class BatchTooLarge extends __BaseException {
|
|
108
108
|
readonly name: "BatchTooLarge";
|
|
109
109
|
readonly $fault: "client";
|
|
110
|
-
Message?: string;
|
|
110
|
+
Message?: string | undefined;
|
|
111
111
|
constructor(opts: __ExceptionOptionType<BatchTooLarge, __BaseException>);
|
|
112
112
|
}
|
|
113
113
|
export declare const ItemSelection: {
|
|
@@ -118,25 +118,25 @@ export declare const ItemSelection: {
|
|
|
118
118
|
export type ItemSelection = (typeof ItemSelection)[keyof typeof ItemSelection];
|
|
119
119
|
export interface CookieNames {
|
|
120
120
|
Quantity: number | undefined;
|
|
121
|
-
Items?: string[];
|
|
121
|
+
Items?: string[] | undefined;
|
|
122
122
|
}
|
|
123
123
|
export interface CookiePreference {
|
|
124
124
|
Forward: ItemSelection | undefined;
|
|
125
|
-
WhitelistedNames?: CookieNames;
|
|
125
|
+
WhitelistedNames?: CookieNames | undefined;
|
|
126
126
|
}
|
|
127
127
|
export interface Headers {
|
|
128
128
|
Quantity: number | undefined;
|
|
129
|
-
Items?: string[];
|
|
129
|
+
Items?: string[] | undefined;
|
|
130
130
|
}
|
|
131
131
|
export interface QueryStringCacheKeys {
|
|
132
132
|
Quantity: number | undefined;
|
|
133
|
-
Items?: string[];
|
|
133
|
+
Items?: string[] | undefined;
|
|
134
134
|
}
|
|
135
135
|
export interface ForwardedValues {
|
|
136
136
|
QueryString: boolean | undefined;
|
|
137
137
|
Cookies: CookiePreference | undefined;
|
|
138
|
-
Headers?: Headers;
|
|
139
|
-
QueryStringCacheKeys?: QueryStringCacheKeys;
|
|
138
|
+
Headers?: Headers | undefined;
|
|
139
|
+
QueryStringCacheKeys?: QueryStringCacheKeys | undefined;
|
|
140
140
|
}
|
|
141
141
|
export declare const EventType: {
|
|
142
142
|
readonly origin_request: "origin-request";
|
|
@@ -151,26 +151,26 @@ export interface FunctionAssociation {
|
|
|
151
151
|
}
|
|
152
152
|
export interface FunctionAssociations {
|
|
153
153
|
Quantity: number | undefined;
|
|
154
|
-
Items?: FunctionAssociation[];
|
|
154
|
+
Items?: FunctionAssociation[] | undefined;
|
|
155
155
|
}
|
|
156
156
|
export interface LambdaFunctionAssociation {
|
|
157
157
|
LambdaFunctionARN: string | undefined;
|
|
158
158
|
EventType: EventType | undefined;
|
|
159
|
-
IncludeBody?: boolean;
|
|
159
|
+
IncludeBody?: boolean | undefined;
|
|
160
160
|
}
|
|
161
161
|
export interface LambdaFunctionAssociations {
|
|
162
162
|
Quantity: number | undefined;
|
|
163
|
-
Items?: LambdaFunctionAssociation[];
|
|
163
|
+
Items?: LambdaFunctionAssociation[] | undefined;
|
|
164
164
|
}
|
|
165
165
|
export interface TrustedKeyGroups {
|
|
166
166
|
Enabled: boolean | undefined;
|
|
167
167
|
Quantity: number | undefined;
|
|
168
|
-
Items?: string[];
|
|
168
|
+
Items?: string[] | undefined;
|
|
169
169
|
}
|
|
170
170
|
export interface TrustedSigners {
|
|
171
171
|
Enabled: boolean | undefined;
|
|
172
172
|
Quantity: number | undefined;
|
|
173
|
-
Items?: string[];
|
|
173
|
+
Items?: string[] | undefined;
|
|
174
174
|
}
|
|
175
175
|
export declare const ViewerProtocolPolicy: {
|
|
176
176
|
readonly allow_all: "allow-all";
|
|
@@ -182,27 +182,27 @@ export type ViewerProtocolPolicy =
|
|
|
182
182
|
export interface CacheBehavior {
|
|
183
183
|
PathPattern: string | undefined;
|
|
184
184
|
TargetOriginId: string | undefined;
|
|
185
|
-
TrustedSigners?: TrustedSigners;
|
|
186
|
-
TrustedKeyGroups?: TrustedKeyGroups;
|
|
185
|
+
TrustedSigners?: TrustedSigners | undefined;
|
|
186
|
+
TrustedKeyGroups?: TrustedKeyGroups | undefined;
|
|
187
187
|
ViewerProtocolPolicy: ViewerProtocolPolicy | undefined;
|
|
188
|
-
AllowedMethods?: AllowedMethods;
|
|
189
|
-
SmoothStreaming?: boolean;
|
|
190
|
-
Compress?: boolean;
|
|
191
|
-
LambdaFunctionAssociations?: LambdaFunctionAssociations;
|
|
192
|
-
FunctionAssociations?: FunctionAssociations;
|
|
193
|
-
FieldLevelEncryptionId?: string;
|
|
194
|
-
RealtimeLogConfigArn?: string;
|
|
195
|
-
CachePolicyId?: string;
|
|
196
|
-
OriginRequestPolicyId?: string;
|
|
197
|
-
ResponseHeadersPolicyId?: string;
|
|
198
|
-
ForwardedValues?: ForwardedValues;
|
|
199
|
-
MinTTL?: number;
|
|
200
|
-
DefaultTTL?: number;
|
|
201
|
-
MaxTTL?: number;
|
|
188
|
+
AllowedMethods?: AllowedMethods | undefined;
|
|
189
|
+
SmoothStreaming?: boolean | undefined;
|
|
190
|
+
Compress?: boolean | undefined;
|
|
191
|
+
LambdaFunctionAssociations?: LambdaFunctionAssociations | undefined;
|
|
192
|
+
FunctionAssociations?: FunctionAssociations | undefined;
|
|
193
|
+
FieldLevelEncryptionId?: string | undefined;
|
|
194
|
+
RealtimeLogConfigArn?: string | undefined;
|
|
195
|
+
CachePolicyId?: string | undefined;
|
|
196
|
+
OriginRequestPolicyId?: string | undefined;
|
|
197
|
+
ResponseHeadersPolicyId?: string | undefined;
|
|
198
|
+
ForwardedValues?: ForwardedValues | undefined;
|
|
199
|
+
MinTTL?: number | undefined;
|
|
200
|
+
DefaultTTL?: number | undefined;
|
|
201
|
+
MaxTTL?: number | undefined;
|
|
202
202
|
}
|
|
203
203
|
export interface CacheBehaviors {
|
|
204
204
|
Quantity: number | undefined;
|
|
205
|
-
Items?: CacheBehavior[];
|
|
205
|
+
Items?: CacheBehavior[] | undefined;
|
|
206
206
|
}
|
|
207
207
|
export declare const CachePolicyCookieBehavior: {
|
|
208
208
|
readonly all: "all";
|
|
@@ -214,7 +214,7 @@ export type CachePolicyCookieBehavior =
|
|
|
214
214
|
(typeof CachePolicyCookieBehavior)[keyof typeof CachePolicyCookieBehavior];
|
|
215
215
|
export interface CachePolicyCookiesConfig {
|
|
216
216
|
CookieBehavior: CachePolicyCookieBehavior | undefined;
|
|
217
|
-
Cookies?: CookieNames;
|
|
217
|
+
Cookies?: CookieNames | undefined;
|
|
218
218
|
}
|
|
219
219
|
export declare const CachePolicyHeaderBehavior: {
|
|
220
220
|
readonly none: "none";
|
|
@@ -224,7 +224,7 @@ export type CachePolicyHeaderBehavior =
|
|
|
224
224
|
(typeof CachePolicyHeaderBehavior)[keyof typeof CachePolicyHeaderBehavior];
|
|
225
225
|
export interface CachePolicyHeadersConfig {
|
|
226
226
|
HeaderBehavior: CachePolicyHeaderBehavior | undefined;
|
|
227
|
-
Headers?: Headers;
|
|
227
|
+
Headers?: Headers | undefined;
|
|
228
228
|
}
|
|
229
229
|
export declare const CachePolicyQueryStringBehavior: {
|
|
230
230
|
readonly all: "all";
|
|
@@ -236,26 +236,28 @@ export type CachePolicyQueryStringBehavior =
|
|
|
236
236
|
(typeof CachePolicyQueryStringBehavior)[keyof typeof CachePolicyQueryStringBehavior];
|
|
237
237
|
export interface QueryStringNames {
|
|
238
238
|
Quantity: number | undefined;
|
|
239
|
-
Items?: string[];
|
|
239
|
+
Items?: string[] | undefined;
|
|
240
240
|
}
|
|
241
241
|
export interface CachePolicyQueryStringsConfig {
|
|
242
242
|
QueryStringBehavior: CachePolicyQueryStringBehavior | undefined;
|
|
243
|
-
QueryStrings?: QueryStringNames;
|
|
243
|
+
QueryStrings?: QueryStringNames | undefined;
|
|
244
244
|
}
|
|
245
245
|
export interface ParametersInCacheKeyAndForwardedToOrigin {
|
|
246
246
|
EnableAcceptEncodingGzip: boolean | undefined;
|
|
247
|
-
EnableAcceptEncodingBrotli?: boolean;
|
|
247
|
+
EnableAcceptEncodingBrotli?: boolean | undefined;
|
|
248
248
|
HeadersConfig: CachePolicyHeadersConfig | undefined;
|
|
249
249
|
CookiesConfig: CachePolicyCookiesConfig | undefined;
|
|
250
250
|
QueryStringsConfig: CachePolicyQueryStringsConfig | undefined;
|
|
251
251
|
}
|
|
252
252
|
export interface CachePolicyConfig {
|
|
253
|
-
Comment?: string;
|
|
253
|
+
Comment?: string | undefined;
|
|
254
254
|
Name: string | undefined;
|
|
255
|
-
DefaultTTL?: number;
|
|
256
|
-
MaxTTL?: number;
|
|
255
|
+
DefaultTTL?: number | undefined;
|
|
256
|
+
MaxTTL?: number | undefined;
|
|
257
257
|
MinTTL: number | undefined;
|
|
258
|
-
ParametersInCacheKeyAndForwardedToOrigin?:
|
|
258
|
+
ParametersInCacheKeyAndForwardedToOrigin?:
|
|
259
|
+
| ParametersInCacheKeyAndForwardedToOrigin
|
|
260
|
+
| undefined;
|
|
259
261
|
}
|
|
260
262
|
export interface CachePolicy {
|
|
261
263
|
Id: string | undefined;
|
|
@@ -265,7 +267,7 @@ export interface CachePolicy {
|
|
|
265
267
|
export declare class CachePolicyAlreadyExists extends __BaseException {
|
|
266
268
|
readonly name: "CachePolicyAlreadyExists";
|
|
267
269
|
readonly $fault: "client";
|
|
268
|
-
Message?: string;
|
|
270
|
+
Message?: string | undefined;
|
|
269
271
|
constructor(
|
|
270
272
|
opts: __ExceptionOptionType<CachePolicyAlreadyExists, __BaseException>
|
|
271
273
|
);
|
|
@@ -273,7 +275,7 @@ export declare class CachePolicyAlreadyExists extends __BaseException {
|
|
|
273
275
|
export declare class CachePolicyInUse extends __BaseException {
|
|
274
276
|
readonly name: "CachePolicyInUse";
|
|
275
277
|
readonly $fault: "client";
|
|
276
|
-
Message?: string;
|
|
278
|
+
Message?: string | undefined;
|
|
277
279
|
constructor(opts: __ExceptionOptionType<CachePolicyInUse, __BaseException>);
|
|
278
280
|
}
|
|
279
281
|
export declare const CachePolicyType: {
|
|
@@ -287,15 +289,15 @@ export interface CachePolicySummary {
|
|
|
287
289
|
CachePolicy: CachePolicy | undefined;
|
|
288
290
|
}
|
|
289
291
|
export interface CachePolicyList {
|
|
290
|
-
NextMarker?: string;
|
|
292
|
+
NextMarker?: string | undefined;
|
|
291
293
|
MaxItems: number | undefined;
|
|
292
294
|
Quantity: number | undefined;
|
|
293
|
-
Items?: CachePolicySummary[];
|
|
295
|
+
Items?: CachePolicySummary[] | undefined;
|
|
294
296
|
}
|
|
295
297
|
export declare class CannotChangeImmutablePublicKeyFields extends __BaseException {
|
|
296
298
|
readonly name: "CannotChangeImmutablePublicKeyFields";
|
|
297
299
|
readonly $fault: "client";
|
|
298
|
-
Message?: string;
|
|
300
|
+
Message?: string | undefined;
|
|
299
301
|
constructor(
|
|
300
302
|
opts: __ExceptionOptionType<
|
|
301
303
|
CannotChangeImmutablePublicKeyFields,
|
|
@@ -306,7 +308,7 @@ export declare class CannotChangeImmutablePublicKeyFields extends __BaseExceptio
|
|
|
306
308
|
export declare class CannotDeleteEntityWhileInUse extends __BaseException {
|
|
307
309
|
readonly name: "CannotDeleteEntityWhileInUse";
|
|
308
310
|
readonly $fault: "client";
|
|
309
|
-
Message?: string;
|
|
311
|
+
Message?: string | undefined;
|
|
310
312
|
constructor(
|
|
311
313
|
opts: __ExceptionOptionType<CannotDeleteEntityWhileInUse, __BaseException>
|
|
312
314
|
);
|
|
@@ -321,45 +323,45 @@ export type CertificateSource =
|
|
|
321
323
|
export declare class CNAMEAlreadyExists extends __BaseException {
|
|
322
324
|
readonly name: "CNAMEAlreadyExists";
|
|
323
325
|
readonly $fault: "client";
|
|
324
|
-
Message?: string;
|
|
326
|
+
Message?: string | undefined;
|
|
325
327
|
constructor(opts: __ExceptionOptionType<CNAMEAlreadyExists, __BaseException>);
|
|
326
328
|
}
|
|
327
329
|
export interface CopyDistributionRequest {
|
|
328
330
|
PrimaryDistributionId: string | undefined;
|
|
329
|
-
Staging?: boolean;
|
|
330
|
-
IfMatch?: string;
|
|
331
|
+
Staging?: boolean | undefined;
|
|
332
|
+
IfMatch?: string | undefined;
|
|
331
333
|
CallerReference: string | undefined;
|
|
332
|
-
Enabled?: boolean;
|
|
334
|
+
Enabled?: boolean | undefined;
|
|
333
335
|
}
|
|
334
336
|
export interface CustomErrorResponse {
|
|
335
337
|
ErrorCode: number | undefined;
|
|
336
|
-
ResponsePagePath?: string;
|
|
337
|
-
ResponseCode?: string;
|
|
338
|
-
ErrorCachingMinTTL?: number;
|
|
338
|
+
ResponsePagePath?: string | undefined;
|
|
339
|
+
ResponseCode?: string | undefined;
|
|
340
|
+
ErrorCachingMinTTL?: number | undefined;
|
|
339
341
|
}
|
|
340
342
|
export interface CustomErrorResponses {
|
|
341
343
|
Quantity: number | undefined;
|
|
342
|
-
Items?: CustomErrorResponse[];
|
|
344
|
+
Items?: CustomErrorResponse[] | undefined;
|
|
343
345
|
}
|
|
344
346
|
export interface DefaultCacheBehavior {
|
|
345
347
|
TargetOriginId: string | undefined;
|
|
346
|
-
TrustedSigners?: TrustedSigners;
|
|
347
|
-
TrustedKeyGroups?: TrustedKeyGroups;
|
|
348
|
+
TrustedSigners?: TrustedSigners | undefined;
|
|
349
|
+
TrustedKeyGroups?: TrustedKeyGroups | undefined;
|
|
348
350
|
ViewerProtocolPolicy: ViewerProtocolPolicy | undefined;
|
|
349
|
-
AllowedMethods?: AllowedMethods;
|
|
350
|
-
SmoothStreaming?: boolean;
|
|
351
|
-
Compress?: boolean;
|
|
352
|
-
LambdaFunctionAssociations?: LambdaFunctionAssociations;
|
|
353
|
-
FunctionAssociations?: FunctionAssociations;
|
|
354
|
-
FieldLevelEncryptionId?: string;
|
|
355
|
-
RealtimeLogConfigArn?: string;
|
|
356
|
-
CachePolicyId?: string;
|
|
357
|
-
OriginRequestPolicyId?: string;
|
|
358
|
-
ResponseHeadersPolicyId?: string;
|
|
359
|
-
ForwardedValues?: ForwardedValues;
|
|
360
|
-
MinTTL?: number;
|
|
361
|
-
DefaultTTL?: number;
|
|
362
|
-
MaxTTL?: number;
|
|
351
|
+
AllowedMethods?: AllowedMethods | undefined;
|
|
352
|
+
SmoothStreaming?: boolean | undefined;
|
|
353
|
+
Compress?: boolean | undefined;
|
|
354
|
+
LambdaFunctionAssociations?: LambdaFunctionAssociations | undefined;
|
|
355
|
+
FunctionAssociations?: FunctionAssociations | undefined;
|
|
356
|
+
FieldLevelEncryptionId?: string | undefined;
|
|
357
|
+
RealtimeLogConfigArn?: string | undefined;
|
|
358
|
+
CachePolicyId?: string | undefined;
|
|
359
|
+
OriginRequestPolicyId?: string | undefined;
|
|
360
|
+
ResponseHeadersPolicyId?: string | undefined;
|
|
361
|
+
ForwardedValues?: ForwardedValues | undefined;
|
|
362
|
+
MinTTL?: number | undefined;
|
|
363
|
+
DefaultTTL?: number | undefined;
|
|
364
|
+
MaxTTL?: number | undefined;
|
|
363
365
|
}
|
|
364
366
|
export declare const HttpVersion: {
|
|
365
367
|
readonly http1_1: "http1.1";
|
|
@@ -395,7 +397,7 @@ export interface OriginGroup {
|
|
|
395
397
|
}
|
|
396
398
|
export interface OriginGroups {
|
|
397
399
|
Quantity: number | undefined;
|
|
398
|
-
Items?: OriginGroup[];
|
|
400
|
+
Items?: OriginGroup[] | undefined;
|
|
399
401
|
}
|
|
400
402
|
export interface OriginCustomHeader {
|
|
401
403
|
HeaderName: string | undefined;
|
|
@@ -403,7 +405,7 @@ export interface OriginCustomHeader {
|
|
|
403
405
|
}
|
|
404
406
|
export interface CustomHeaders {
|
|
405
407
|
Quantity: number | undefined;
|
|
406
|
-
Items?: OriginCustomHeader[];
|
|
408
|
+
Items?: OriginCustomHeader[] | undefined;
|
|
407
409
|
}
|
|
408
410
|
export declare const OriginProtocolPolicy: {
|
|
409
411
|
readonly http_only: "http-only";
|
|
@@ -427,13 +429,13 @@ export interface CustomOriginConfig {
|
|
|
427
429
|
HTTPPort: number | undefined;
|
|
428
430
|
HTTPSPort: number | undefined;
|
|
429
431
|
OriginProtocolPolicy: OriginProtocolPolicy | undefined;
|
|
430
|
-
OriginSslProtocols?: OriginSslProtocols;
|
|
431
|
-
OriginReadTimeout?: number;
|
|
432
|
-
OriginKeepaliveTimeout?: number;
|
|
432
|
+
OriginSslProtocols?: OriginSslProtocols | undefined;
|
|
433
|
+
OriginReadTimeout?: number | undefined;
|
|
434
|
+
OriginKeepaliveTimeout?: number | undefined;
|
|
433
435
|
}
|
|
434
436
|
export interface OriginShield {
|
|
435
437
|
Enabled: boolean | undefined;
|
|
436
|
-
OriginShieldRegion?: string;
|
|
438
|
+
OriginShieldRegion?: string | undefined;
|
|
437
439
|
}
|
|
438
440
|
export interface S3OriginConfig {
|
|
439
441
|
OriginAccessIdentity: string | undefined;
|
|
@@ -441,14 +443,14 @@ export interface S3OriginConfig {
|
|
|
441
443
|
export interface Origin {
|
|
442
444
|
Id: string | undefined;
|
|
443
445
|
DomainName: string | undefined;
|
|
444
|
-
OriginPath?: string;
|
|
445
|
-
CustomHeaders?: CustomHeaders;
|
|
446
|
-
S3OriginConfig?: S3OriginConfig;
|
|
447
|
-
CustomOriginConfig?: CustomOriginConfig;
|
|
448
|
-
ConnectionAttempts?: number;
|
|
449
|
-
ConnectionTimeout?: number;
|
|
450
|
-
OriginShield?: OriginShield;
|
|
451
|
-
OriginAccessControlId?: string;
|
|
446
|
+
OriginPath?: string | undefined;
|
|
447
|
+
CustomHeaders?: CustomHeaders | undefined;
|
|
448
|
+
S3OriginConfig?: S3OriginConfig | undefined;
|
|
449
|
+
CustomOriginConfig?: CustomOriginConfig | undefined;
|
|
450
|
+
ConnectionAttempts?: number | undefined;
|
|
451
|
+
ConnectionTimeout?: number | undefined;
|
|
452
|
+
OriginShield?: OriginShield | undefined;
|
|
453
|
+
OriginAccessControlId?: string | undefined;
|
|
452
454
|
}
|
|
453
455
|
export interface Origins {
|
|
454
456
|
Quantity: number | undefined;
|
|
@@ -470,7 +472,7 @@ export type GeoRestrictionType =
|
|
|
470
472
|
export interface GeoRestriction {
|
|
471
473
|
RestrictionType: GeoRestrictionType | undefined;
|
|
472
474
|
Quantity: number | undefined;
|
|
473
|
-
Items?: string[];
|
|
475
|
+
Items?: string[] | undefined;
|
|
474
476
|
}
|
|
475
477
|
export interface Restrictions {
|
|
476
478
|
GeoRestriction: GeoRestriction | undefined;
|
|
@@ -494,34 +496,34 @@ export declare const SSLSupportMethod: {
|
|
|
494
496
|
export type SSLSupportMethod =
|
|
495
497
|
(typeof SSLSupportMethod)[keyof typeof SSLSupportMethod];
|
|
496
498
|
export interface ViewerCertificate {
|
|
497
|
-
CloudFrontDefaultCertificate?: boolean;
|
|
498
|
-
IAMCertificateId?: string;
|
|
499
|
-
ACMCertificateArn?: string;
|
|
500
|
-
SSLSupportMethod?: SSLSupportMethod;
|
|
501
|
-
MinimumProtocolVersion?: MinimumProtocolVersion;
|
|
502
|
-
Certificate?: string;
|
|
503
|
-
CertificateSource?: CertificateSource;
|
|
499
|
+
CloudFrontDefaultCertificate?: boolean | undefined;
|
|
500
|
+
IAMCertificateId?: string | undefined;
|
|
501
|
+
ACMCertificateArn?: string | undefined;
|
|
502
|
+
SSLSupportMethod?: SSLSupportMethod | undefined;
|
|
503
|
+
MinimumProtocolVersion?: MinimumProtocolVersion | undefined;
|
|
504
|
+
Certificate?: string | undefined;
|
|
505
|
+
CertificateSource?: CertificateSource | undefined;
|
|
504
506
|
}
|
|
505
507
|
export interface DistributionConfig {
|
|
506
508
|
CallerReference: string | undefined;
|
|
507
|
-
Aliases?: Aliases;
|
|
508
|
-
DefaultRootObject?: string;
|
|
509
|
+
Aliases?: Aliases | undefined;
|
|
510
|
+
DefaultRootObject?: string | undefined;
|
|
509
511
|
Origins: Origins | undefined;
|
|
510
|
-
OriginGroups?: OriginGroups;
|
|
512
|
+
OriginGroups?: OriginGroups | undefined;
|
|
511
513
|
DefaultCacheBehavior: DefaultCacheBehavior | undefined;
|
|
512
|
-
CacheBehaviors?: CacheBehaviors;
|
|
513
|
-
CustomErrorResponses?: CustomErrorResponses;
|
|
514
|
+
CacheBehaviors?: CacheBehaviors | undefined;
|
|
515
|
+
CustomErrorResponses?: CustomErrorResponses | undefined;
|
|
514
516
|
Comment: string | undefined;
|
|
515
|
-
Logging?: LoggingConfig;
|
|
516
|
-
PriceClass?: PriceClass;
|
|
517
|
+
Logging?: LoggingConfig | undefined;
|
|
518
|
+
PriceClass?: PriceClass | undefined;
|
|
517
519
|
Enabled: boolean | undefined;
|
|
518
|
-
ViewerCertificate?: ViewerCertificate;
|
|
519
|
-
Restrictions?: Restrictions;
|
|
520
|
-
WebACLId?: string;
|
|
521
|
-
HttpVersion?: HttpVersion;
|
|
522
|
-
IsIPV6Enabled?: boolean;
|
|
523
|
-
ContinuousDeploymentPolicyId?: string;
|
|
524
|
-
Staging?: boolean;
|
|
520
|
+
ViewerCertificate?: ViewerCertificate | undefined;
|
|
521
|
+
Restrictions?: Restrictions | undefined;
|
|
522
|
+
WebACLId?: string | undefined;
|
|
523
|
+
HttpVersion?: HttpVersion | undefined;
|
|
524
|
+
IsIPV6Enabled?: boolean | undefined;
|
|
525
|
+
ContinuousDeploymentPolicyId?: string | undefined;
|
|
526
|
+
Staging?: boolean | undefined;
|
|
525
527
|
}
|
|
526
528
|
export interface Distribution {
|
|
527
529
|
Id: string | undefined;
|
|
@@ -530,20 +532,20 @@ export interface Distribution {
|
|
|
530
532
|
LastModifiedTime: Date | undefined;
|
|
531
533
|
InProgressInvalidationBatches: number | undefined;
|
|
532
534
|
DomainName: string | undefined;
|
|
533
|
-
ActiveTrustedSigners?: ActiveTrustedSigners;
|
|
534
|
-
ActiveTrustedKeyGroups?: ActiveTrustedKeyGroups;
|
|
535
|
+
ActiveTrustedSigners?: ActiveTrustedSigners | undefined;
|
|
536
|
+
ActiveTrustedKeyGroups?: ActiveTrustedKeyGroups | undefined;
|
|
535
537
|
DistributionConfig: DistributionConfig | undefined;
|
|
536
|
-
AliasICPRecordals?: AliasICPRecordal[];
|
|
538
|
+
AliasICPRecordals?: AliasICPRecordal[] | undefined;
|
|
537
539
|
}
|
|
538
540
|
export interface CopyDistributionResult {
|
|
539
|
-
Distribution?: Distribution;
|
|
540
|
-
Location?: string;
|
|
541
|
-
ETag?: string;
|
|
541
|
+
Distribution?: Distribution | undefined;
|
|
542
|
+
Location?: string | undefined;
|
|
543
|
+
ETag?: string | undefined;
|
|
542
544
|
}
|
|
543
545
|
export declare class DistributionAlreadyExists extends __BaseException {
|
|
544
546
|
readonly name: "DistributionAlreadyExists";
|
|
545
547
|
readonly $fault: "client";
|
|
546
|
-
Message?: string;
|
|
548
|
+
Message?: string | undefined;
|
|
547
549
|
constructor(
|
|
548
550
|
opts: __ExceptionOptionType<DistributionAlreadyExists, __BaseException>
|
|
549
551
|
);
|
|
@@ -551,7 +553,7 @@ export declare class DistributionAlreadyExists extends __BaseException {
|
|
|
551
553
|
export declare class IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior extends __BaseException {
|
|
552
554
|
readonly name: "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior";
|
|
553
555
|
readonly $fault: "client";
|
|
554
|
-
Message?: string;
|
|
556
|
+
Message?: string | undefined;
|
|
555
557
|
constructor(
|
|
556
558
|
opts: __ExceptionOptionType<
|
|
557
559
|
IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior,
|
|
@@ -562,7 +564,7 @@ export declare class IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavi
|
|
|
562
564
|
export declare class InconsistentQuantities extends __BaseException {
|
|
563
565
|
readonly name: "InconsistentQuantities";
|
|
564
566
|
readonly $fault: "client";
|
|
565
|
-
Message?: string;
|
|
567
|
+
Message?: string | undefined;
|
|
566
568
|
constructor(
|
|
567
569
|
opts: __ExceptionOptionType<InconsistentQuantities, __BaseException>
|
|
568
570
|
);
|
|
@@ -570,7 +572,7 @@ export declare class InconsistentQuantities extends __BaseException {
|
|
|
570
572
|
export declare class InvalidDefaultRootObject extends __BaseException {
|
|
571
573
|
readonly name: "InvalidDefaultRootObject";
|
|
572
574
|
readonly $fault: "client";
|
|
573
|
-
Message?: string;
|
|
575
|
+
Message?: string | undefined;
|
|
574
576
|
constructor(
|
|
575
577
|
opts: __ExceptionOptionType<InvalidDefaultRootObject, __BaseException>
|
|
576
578
|
);
|
|
@@ -578,13 +580,13 @@ export declare class InvalidDefaultRootObject extends __BaseException {
|
|
|
578
580
|
export declare class InvalidErrorCode extends __BaseException {
|
|
579
581
|
readonly name: "InvalidErrorCode";
|
|
580
582
|
readonly $fault: "client";
|
|
581
|
-
Message?: string;
|
|
583
|
+
Message?: string | undefined;
|
|
582
584
|
constructor(opts: __ExceptionOptionType<InvalidErrorCode, __BaseException>);
|
|
583
585
|
}
|
|
584
586
|
export declare class InvalidForwardCookies extends __BaseException {
|
|
585
587
|
readonly name: "InvalidForwardCookies";
|
|
586
588
|
readonly $fault: "client";
|
|
587
|
-
Message?: string;
|
|
589
|
+
Message?: string | undefined;
|
|
588
590
|
constructor(
|
|
589
591
|
opts: __ExceptionOptionType<InvalidForwardCookies, __BaseException>
|
|
590
592
|
);
|
|
@@ -592,7 +594,7 @@ export declare class InvalidForwardCookies extends __BaseException {
|
|
|
592
594
|
export declare class InvalidFunctionAssociation extends __BaseException {
|
|
593
595
|
readonly name: "InvalidFunctionAssociation";
|
|
594
596
|
readonly $fault: "client";
|
|
595
|
-
Message?: string;
|
|
597
|
+
Message?: string | undefined;
|
|
596
598
|
constructor(
|
|
597
599
|
opts: __ExceptionOptionType<InvalidFunctionAssociation, __BaseException>
|
|
598
600
|
);
|
|
@@ -600,7 +602,7 @@ export declare class InvalidFunctionAssociation extends __BaseException {
|
|
|
600
602
|
export declare class InvalidGeoRestrictionParameter extends __BaseException {
|
|
601
603
|
readonly name: "InvalidGeoRestrictionParameter";
|
|
602
604
|
readonly $fault: "client";
|
|
603
|
-
Message?: string;
|
|
605
|
+
Message?: string | undefined;
|
|
604
606
|
constructor(
|
|
605
607
|
opts: __ExceptionOptionType<InvalidGeoRestrictionParameter, __BaseException>
|
|
606
608
|
);
|
|
@@ -608,7 +610,7 @@ export declare class InvalidGeoRestrictionParameter extends __BaseException {
|
|
|
608
610
|
export declare class InvalidHeadersForS3Origin extends __BaseException {
|
|
609
611
|
readonly name: "InvalidHeadersForS3Origin";
|
|
610
612
|
readonly $fault: "client";
|
|
611
|
-
Message?: string;
|
|
613
|
+
Message?: string | undefined;
|
|
612
614
|
constructor(
|
|
613
615
|
opts: __ExceptionOptionType<InvalidHeadersForS3Origin, __BaseException>
|
|
614
616
|
);
|
|
@@ -616,7 +618,7 @@ export declare class InvalidHeadersForS3Origin extends __BaseException {
|
|
|
616
618
|
export declare class InvalidIfMatchVersion extends __BaseException {
|
|
617
619
|
readonly name: "InvalidIfMatchVersion";
|
|
618
620
|
readonly $fault: "client";
|
|
619
|
-
Message?: string;
|
|
621
|
+
Message?: string | undefined;
|
|
620
622
|
constructor(
|
|
621
623
|
opts: __ExceptionOptionType<InvalidIfMatchVersion, __BaseException>
|
|
622
624
|
);
|
|
@@ -624,7 +626,7 @@ export declare class InvalidIfMatchVersion extends __BaseException {
|
|
|
624
626
|
export declare class InvalidLambdaFunctionAssociation extends __BaseException {
|
|
625
627
|
readonly name: "InvalidLambdaFunctionAssociation";
|
|
626
628
|
readonly $fault: "client";
|
|
627
|
-
Message?: string;
|
|
629
|
+
Message?: string | undefined;
|
|
628
630
|
constructor(
|
|
629
631
|
opts: __ExceptionOptionType<
|
|
630
632
|
InvalidLambdaFunctionAssociation,
|
|
@@ -635,7 +637,7 @@ export declare class InvalidLambdaFunctionAssociation extends __BaseException {
|
|
|
635
637
|
export declare class InvalidLocationCode extends __BaseException {
|
|
636
638
|
readonly name: "InvalidLocationCode";
|
|
637
639
|
readonly $fault: "client";
|
|
638
|
-
Message?: string;
|
|
640
|
+
Message?: string | undefined;
|
|
639
641
|
constructor(
|
|
640
642
|
opts: __ExceptionOptionType<InvalidLocationCode, __BaseException>
|
|
641
643
|
);
|
|
@@ -643,7 +645,7 @@ export declare class InvalidLocationCode extends __BaseException {
|
|
|
643
645
|
export declare class InvalidMinimumProtocolVersion extends __BaseException {
|
|
644
646
|
readonly name: "InvalidMinimumProtocolVersion";
|
|
645
647
|
readonly $fault: "client";
|
|
646
|
-
Message?: string;
|
|
648
|
+
Message?: string | undefined;
|
|
647
649
|
constructor(
|
|
648
650
|
opts: __ExceptionOptionType<InvalidMinimumProtocolVersion, __BaseException>
|
|
649
651
|
);
|
|
@@ -651,13 +653,13 @@ export declare class InvalidMinimumProtocolVersion extends __BaseException {
|
|
|
651
653
|
export declare class InvalidOrigin extends __BaseException {
|
|
652
654
|
readonly name: "InvalidOrigin";
|
|
653
655
|
readonly $fault: "client";
|
|
654
|
-
Message?: string;
|
|
656
|
+
Message?: string | undefined;
|
|
655
657
|
constructor(opts: __ExceptionOptionType<InvalidOrigin, __BaseException>);
|
|
656
658
|
}
|
|
657
659
|
export declare class InvalidOriginAccessControl extends __BaseException {
|
|
658
660
|
readonly name: "InvalidOriginAccessControl";
|
|
659
661
|
readonly $fault: "client";
|
|
660
|
-
Message?: string;
|
|
662
|
+
Message?: string | undefined;
|
|
661
663
|
constructor(
|
|
662
664
|
opts: __ExceptionOptionType<InvalidOriginAccessControl, __BaseException>
|
|
663
665
|
);
|
|
@@ -665,7 +667,7 @@ export declare class InvalidOriginAccessControl extends __BaseException {
|
|
|
665
667
|
export declare class InvalidOriginAccessIdentity extends __BaseException {
|
|
666
668
|
readonly name: "InvalidOriginAccessIdentity";
|
|
667
669
|
readonly $fault: "client";
|
|
668
|
-
Message?: string;
|
|
670
|
+
Message?: string | undefined;
|
|
669
671
|
constructor(
|
|
670
672
|
opts: __ExceptionOptionType<InvalidOriginAccessIdentity, __BaseException>
|
|
671
673
|
);
|
|
@@ -673,7 +675,7 @@ export declare class InvalidOriginAccessIdentity extends __BaseException {
|
|
|
673
675
|
export declare class InvalidOriginKeepaliveTimeout extends __BaseException {
|
|
674
676
|
readonly name: "InvalidOriginKeepaliveTimeout";
|
|
675
677
|
readonly $fault: "client";
|
|
676
|
-
Message?: string;
|
|
678
|
+
Message?: string | undefined;
|
|
677
679
|
constructor(
|
|
678
680
|
opts: __ExceptionOptionType<InvalidOriginKeepaliveTimeout, __BaseException>
|
|
679
681
|
);
|
|
@@ -681,7 +683,7 @@ export declare class InvalidOriginKeepaliveTimeout extends __BaseException {
|
|
|
681
683
|
export declare class InvalidOriginReadTimeout extends __BaseException {
|
|
682
684
|
readonly name: "InvalidOriginReadTimeout";
|
|
683
685
|
readonly $fault: "client";
|
|
684
|
-
Message?: string;
|
|
686
|
+
Message?: string | undefined;
|
|
685
687
|
constructor(
|
|
686
688
|
opts: __ExceptionOptionType<InvalidOriginReadTimeout, __BaseException>
|
|
687
689
|
);
|
|
@@ -689,7 +691,7 @@ export declare class InvalidOriginReadTimeout extends __BaseException {
|
|
|
689
691
|
export declare class InvalidProtocolSettings extends __BaseException {
|
|
690
692
|
readonly name: "InvalidProtocolSettings";
|
|
691
693
|
readonly $fault: "client";
|
|
692
|
-
Message?: string;
|
|
694
|
+
Message?: string | undefined;
|
|
693
695
|
constructor(
|
|
694
696
|
opts: __ExceptionOptionType<InvalidProtocolSettings, __BaseException>
|
|
695
697
|
);
|
|
@@ -697,7 +699,7 @@ export declare class InvalidProtocolSettings extends __BaseException {
|
|
|
697
699
|
export declare class InvalidQueryStringParameters extends __BaseException {
|
|
698
700
|
readonly name: "InvalidQueryStringParameters";
|
|
699
701
|
readonly $fault: "client";
|
|
700
|
-
Message?: string;
|
|
702
|
+
Message?: string | undefined;
|
|
701
703
|
constructor(
|
|
702
704
|
opts: __ExceptionOptionType<InvalidQueryStringParameters, __BaseException>
|
|
703
705
|
);
|
|
@@ -705,7 +707,7 @@ export declare class InvalidQueryStringParameters extends __BaseException {
|
|
|
705
707
|
export declare class InvalidRelativePath extends __BaseException {
|
|
706
708
|
readonly name: "InvalidRelativePath";
|
|
707
709
|
readonly $fault: "client";
|
|
708
|
-
Message?: string;
|
|
710
|
+
Message?: string | undefined;
|
|
709
711
|
constructor(
|
|
710
712
|
opts: __ExceptionOptionType<InvalidRelativePath, __BaseException>
|
|
711
713
|
);
|
|
@@ -713,7 +715,7 @@ export declare class InvalidRelativePath extends __BaseException {
|
|
|
713
715
|
export declare class InvalidRequiredProtocol extends __BaseException {
|
|
714
716
|
readonly name: "InvalidRequiredProtocol";
|
|
715
717
|
readonly $fault: "client";
|
|
716
|
-
Message?: string;
|
|
718
|
+
Message?: string | undefined;
|
|
717
719
|
constructor(
|
|
718
720
|
opts: __ExceptionOptionType<InvalidRequiredProtocol, __BaseException>
|
|
719
721
|
);
|
|
@@ -721,7 +723,7 @@ export declare class InvalidRequiredProtocol extends __BaseException {
|
|
|
721
723
|
export declare class InvalidResponseCode extends __BaseException {
|
|
722
724
|
readonly name: "InvalidResponseCode";
|
|
723
725
|
readonly $fault: "client";
|
|
724
|
-
Message?: string;
|
|
726
|
+
Message?: string | undefined;
|
|
725
727
|
constructor(
|
|
726
728
|
opts: __ExceptionOptionType<InvalidResponseCode, __BaseException>
|
|
727
729
|
);
|
|
@@ -729,13 +731,13 @@ export declare class InvalidResponseCode extends __BaseException {
|
|
|
729
731
|
export declare class InvalidTTLOrder extends __BaseException {
|
|
730
732
|
readonly name: "InvalidTTLOrder";
|
|
731
733
|
readonly $fault: "client";
|
|
732
|
-
Message?: string;
|
|
734
|
+
Message?: string | undefined;
|
|
733
735
|
constructor(opts: __ExceptionOptionType<InvalidTTLOrder, __BaseException>);
|
|
734
736
|
}
|
|
735
737
|
export declare class InvalidViewerCertificate extends __BaseException {
|
|
736
738
|
readonly name: "InvalidViewerCertificate";
|
|
737
739
|
readonly $fault: "client";
|
|
738
|
-
Message?: string;
|
|
740
|
+
Message?: string | undefined;
|
|
739
741
|
constructor(
|
|
740
742
|
opts: __ExceptionOptionType<InvalidViewerCertificate, __BaseException>
|
|
741
743
|
);
|
|
@@ -743,25 +745,25 @@ export declare class InvalidViewerCertificate extends __BaseException {
|
|
|
743
745
|
export declare class InvalidWebACLId extends __BaseException {
|
|
744
746
|
readonly name: "InvalidWebACLId";
|
|
745
747
|
readonly $fault: "client";
|
|
746
|
-
Message?: string;
|
|
748
|
+
Message?: string | undefined;
|
|
747
749
|
constructor(opts: __ExceptionOptionType<InvalidWebACLId, __BaseException>);
|
|
748
750
|
}
|
|
749
751
|
export declare class MissingBody extends __BaseException {
|
|
750
752
|
readonly name: "MissingBody";
|
|
751
753
|
readonly $fault: "client";
|
|
752
|
-
Message?: string;
|
|
754
|
+
Message?: string | undefined;
|
|
753
755
|
constructor(opts: __ExceptionOptionType<MissingBody, __BaseException>);
|
|
754
756
|
}
|
|
755
757
|
export declare class NoSuchCachePolicy extends __BaseException {
|
|
756
758
|
readonly name: "NoSuchCachePolicy";
|
|
757
759
|
readonly $fault: "client";
|
|
758
|
-
Message?: string;
|
|
760
|
+
Message?: string | undefined;
|
|
759
761
|
constructor(opts: __ExceptionOptionType<NoSuchCachePolicy, __BaseException>);
|
|
760
762
|
}
|
|
761
763
|
export declare class NoSuchFieldLevelEncryptionConfig extends __BaseException {
|
|
762
764
|
readonly name: "NoSuchFieldLevelEncryptionConfig";
|
|
763
765
|
readonly $fault: "client";
|
|
764
|
-
Message?: string;
|
|
766
|
+
Message?: string | undefined;
|
|
765
767
|
constructor(
|
|
766
768
|
opts: __ExceptionOptionType<
|
|
767
769
|
NoSuchFieldLevelEncryptionConfig,
|
|
@@ -772,13 +774,13 @@ export declare class NoSuchFieldLevelEncryptionConfig extends __BaseException {
|
|
|
772
774
|
export declare class NoSuchOrigin extends __BaseException {
|
|
773
775
|
readonly name: "NoSuchOrigin";
|
|
774
776
|
readonly $fault: "client";
|
|
775
|
-
Message?: string;
|
|
777
|
+
Message?: string | undefined;
|
|
776
778
|
constructor(opts: __ExceptionOptionType<NoSuchOrigin, __BaseException>);
|
|
777
779
|
}
|
|
778
780
|
export declare class NoSuchOriginRequestPolicy extends __BaseException {
|
|
779
781
|
readonly name: "NoSuchOriginRequestPolicy";
|
|
780
782
|
readonly $fault: "client";
|
|
781
|
-
Message?: string;
|
|
783
|
+
Message?: string | undefined;
|
|
782
784
|
constructor(
|
|
783
785
|
opts: __ExceptionOptionType<NoSuchOriginRequestPolicy, __BaseException>
|
|
784
786
|
);
|
|
@@ -786,7 +788,7 @@ export declare class NoSuchOriginRequestPolicy extends __BaseException {
|
|
|
786
788
|
export declare class NoSuchRealtimeLogConfig extends __BaseException {
|
|
787
789
|
readonly name: "NoSuchRealtimeLogConfig";
|
|
788
790
|
readonly $fault: "client";
|
|
789
|
-
Message?: string;
|
|
791
|
+
Message?: string | undefined;
|
|
790
792
|
constructor(
|
|
791
793
|
opts: __ExceptionOptionType<NoSuchRealtimeLogConfig, __BaseException>
|
|
792
794
|
);
|
|
@@ -794,7 +796,7 @@ export declare class NoSuchRealtimeLogConfig extends __BaseException {
|
|
|
794
796
|
export declare class NoSuchResponseHeadersPolicy extends __BaseException {
|
|
795
797
|
readonly name: "NoSuchResponseHeadersPolicy";
|
|
796
798
|
readonly $fault: "client";
|
|
797
|
-
Message?: string;
|
|
799
|
+
Message?: string | undefined;
|
|
798
800
|
constructor(
|
|
799
801
|
opts: __ExceptionOptionType<NoSuchResponseHeadersPolicy, __BaseException>
|
|
800
802
|
);
|
|
@@ -802,13 +804,13 @@ export declare class NoSuchResponseHeadersPolicy extends __BaseException {
|
|
|
802
804
|
export declare class PreconditionFailed extends __BaseException {
|
|
803
805
|
readonly name: "PreconditionFailed";
|
|
804
806
|
readonly $fault: "client";
|
|
805
|
-
Message?: string;
|
|
807
|
+
Message?: string | undefined;
|
|
806
808
|
constructor(opts: __ExceptionOptionType<PreconditionFailed, __BaseException>);
|
|
807
809
|
}
|
|
808
810
|
export declare class RealtimeLogConfigOwnerMismatch extends __BaseException {
|
|
809
811
|
readonly name: "RealtimeLogConfigOwnerMismatch";
|
|
810
812
|
readonly $fault: "client";
|
|
811
|
-
Message?: string;
|
|
813
|
+
Message?: string | undefined;
|
|
812
814
|
constructor(
|
|
813
815
|
opts: __ExceptionOptionType<RealtimeLogConfigOwnerMismatch, __BaseException>
|
|
814
816
|
);
|
|
@@ -816,7 +818,7 @@ export declare class RealtimeLogConfigOwnerMismatch extends __BaseException {
|
|
|
816
818
|
export declare class TooManyCacheBehaviors extends __BaseException {
|
|
817
819
|
readonly name: "TooManyCacheBehaviors";
|
|
818
820
|
readonly $fault: "client";
|
|
819
|
-
Message?: string;
|
|
821
|
+
Message?: string | undefined;
|
|
820
822
|
constructor(
|
|
821
823
|
opts: __ExceptionOptionType<TooManyCacheBehaviors, __BaseException>
|
|
822
824
|
);
|
|
@@ -824,7 +826,7 @@ export declare class TooManyCacheBehaviors extends __BaseException {
|
|
|
824
826
|
export declare class TooManyCertificates extends __BaseException {
|
|
825
827
|
readonly name: "TooManyCertificates";
|
|
826
828
|
readonly $fault: "client";
|
|
827
|
-
Message?: string;
|
|
829
|
+
Message?: string | undefined;
|
|
828
830
|
constructor(
|
|
829
831
|
opts: __ExceptionOptionType<TooManyCertificates, __BaseException>
|
|
830
832
|
);
|
|
@@ -832,7 +834,7 @@ export declare class TooManyCertificates extends __BaseException {
|
|
|
832
834
|
export declare class TooManyCookieNamesInWhiteList extends __BaseException {
|
|
833
835
|
readonly name: "TooManyCookieNamesInWhiteList";
|
|
834
836
|
readonly $fault: "client";
|
|
835
|
-
Message?: string;
|
|
837
|
+
Message?: string | undefined;
|
|
836
838
|
constructor(
|
|
837
839
|
opts: __ExceptionOptionType<TooManyCookieNamesInWhiteList, __BaseException>
|
|
838
840
|
);
|
|
@@ -840,7 +842,7 @@ export declare class TooManyCookieNamesInWhiteList extends __BaseException {
|
|
|
840
842
|
export declare class TooManyDistributions extends __BaseException {
|
|
841
843
|
readonly name: "TooManyDistributions";
|
|
842
844
|
readonly $fault: "client";
|
|
843
|
-
Message?: string;
|
|
845
|
+
Message?: string | undefined;
|
|
844
846
|
constructor(
|
|
845
847
|
opts: __ExceptionOptionType<TooManyDistributions, __BaseException>
|
|
846
848
|
);
|
|
@@ -848,7 +850,7 @@ export declare class TooManyDistributions extends __BaseException {
|
|
|
848
850
|
export declare class TooManyDistributionsAssociatedToCachePolicy extends __BaseException {
|
|
849
851
|
readonly name: "TooManyDistributionsAssociatedToCachePolicy";
|
|
850
852
|
readonly $fault: "client";
|
|
851
|
-
Message?: string;
|
|
853
|
+
Message?: string | undefined;
|
|
852
854
|
constructor(
|
|
853
855
|
opts: __ExceptionOptionType<
|
|
854
856
|
TooManyDistributionsAssociatedToCachePolicy,
|
|
@@ -859,7 +861,7 @@ export declare class TooManyDistributionsAssociatedToCachePolicy extends __BaseE
|
|
|
859
861
|
export declare class TooManyDistributionsAssociatedToFieldLevelEncryptionConfig extends __BaseException {
|
|
860
862
|
readonly name: "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig";
|
|
861
863
|
readonly $fault: "client";
|
|
862
|
-
Message?: string;
|
|
864
|
+
Message?: string | undefined;
|
|
863
865
|
constructor(
|
|
864
866
|
opts: __ExceptionOptionType<
|
|
865
867
|
TooManyDistributionsAssociatedToFieldLevelEncryptionConfig,
|
|
@@ -870,7 +872,7 @@ export declare class TooManyDistributionsAssociatedToFieldLevelEncryptionConfig
|
|
|
870
872
|
export declare class TooManyDistributionsAssociatedToKeyGroup extends __BaseException {
|
|
871
873
|
readonly name: "TooManyDistributionsAssociatedToKeyGroup";
|
|
872
874
|
readonly $fault: "client";
|
|
873
|
-
Message?: string;
|
|
875
|
+
Message?: string | undefined;
|
|
874
876
|
constructor(
|
|
875
877
|
opts: __ExceptionOptionType<
|
|
876
878
|
TooManyDistributionsAssociatedToKeyGroup,
|
|
@@ -881,7 +883,7 @@ export declare class TooManyDistributionsAssociatedToKeyGroup extends __BaseExce
|
|
|
881
883
|
export declare class TooManyDistributionsAssociatedToOriginAccessControl extends __BaseException {
|
|
882
884
|
readonly name: "TooManyDistributionsAssociatedToOriginAccessControl";
|
|
883
885
|
readonly $fault: "client";
|
|
884
|
-
Message?: string;
|
|
886
|
+
Message?: string | undefined;
|
|
885
887
|
constructor(
|
|
886
888
|
opts: __ExceptionOptionType<
|
|
887
889
|
TooManyDistributionsAssociatedToOriginAccessControl,
|
|
@@ -892,7 +894,7 @@ export declare class TooManyDistributionsAssociatedToOriginAccessControl extends
|
|
|
892
894
|
export declare class TooManyDistributionsAssociatedToOriginRequestPolicy extends __BaseException {
|
|
893
895
|
readonly name: "TooManyDistributionsAssociatedToOriginRequestPolicy";
|
|
894
896
|
readonly $fault: "client";
|
|
895
|
-
Message?: string;
|
|
897
|
+
Message?: string | undefined;
|
|
896
898
|
constructor(
|
|
897
899
|
opts: __ExceptionOptionType<
|
|
898
900
|
TooManyDistributionsAssociatedToOriginRequestPolicy,
|
|
@@ -903,7 +905,7 @@ export declare class TooManyDistributionsAssociatedToOriginRequestPolicy extends
|
|
|
903
905
|
export declare class TooManyDistributionsAssociatedToResponseHeadersPolicy extends __BaseException {
|
|
904
906
|
readonly name: "TooManyDistributionsAssociatedToResponseHeadersPolicy";
|
|
905
907
|
readonly $fault: "client";
|
|
906
|
-
Message?: string;
|
|
908
|
+
Message?: string | undefined;
|
|
907
909
|
constructor(
|
|
908
910
|
opts: __ExceptionOptionType<
|
|
909
911
|
TooManyDistributionsAssociatedToResponseHeadersPolicy,
|
|
@@ -914,7 +916,7 @@ export declare class TooManyDistributionsAssociatedToResponseHeadersPolicy exten
|
|
|
914
916
|
export declare class TooManyDistributionsWithFunctionAssociations extends __BaseException {
|
|
915
917
|
readonly name: "TooManyDistributionsWithFunctionAssociations";
|
|
916
918
|
readonly $fault: "client";
|
|
917
|
-
Message?: string;
|
|
919
|
+
Message?: string | undefined;
|
|
918
920
|
constructor(
|
|
919
921
|
opts: __ExceptionOptionType<
|
|
920
922
|
TooManyDistributionsWithFunctionAssociations,
|
|
@@ -925,7 +927,7 @@ export declare class TooManyDistributionsWithFunctionAssociations extends __Base
|
|
|
925
927
|
export declare class TooManyDistributionsWithLambdaAssociations extends __BaseException {
|
|
926
928
|
readonly name: "TooManyDistributionsWithLambdaAssociations";
|
|
927
929
|
readonly $fault: "client";
|
|
928
|
-
Message?: string;
|
|
930
|
+
Message?: string | undefined;
|
|
929
931
|
constructor(
|
|
930
932
|
opts: __ExceptionOptionType<
|
|
931
933
|
TooManyDistributionsWithLambdaAssociations,
|
|
@@ -936,7 +938,7 @@ export declare class TooManyDistributionsWithLambdaAssociations extends __BaseEx
|
|
|
936
938
|
export declare class TooManyDistributionsWithSingleFunctionARN extends __BaseException {
|
|
937
939
|
readonly name: "TooManyDistributionsWithSingleFunctionARN";
|
|
938
940
|
readonly $fault: "client";
|
|
939
|
-
Message?: string;
|
|
941
|
+
Message?: string | undefined;
|
|
940
942
|
constructor(
|
|
941
943
|
opts: __ExceptionOptionType<
|
|
942
944
|
TooManyDistributionsWithSingleFunctionARN,
|
|
@@ -947,7 +949,7 @@ export declare class TooManyDistributionsWithSingleFunctionARN extends __BaseExc
|
|
|
947
949
|
export declare class TooManyFunctionAssociations extends __BaseException {
|
|
948
950
|
readonly name: "TooManyFunctionAssociations";
|
|
949
951
|
readonly $fault: "client";
|
|
950
|
-
Message?: string;
|
|
952
|
+
Message?: string | undefined;
|
|
951
953
|
constructor(
|
|
952
954
|
opts: __ExceptionOptionType<TooManyFunctionAssociations, __BaseException>
|
|
953
955
|
);
|
|
@@ -955,7 +957,7 @@ export declare class TooManyFunctionAssociations extends __BaseException {
|
|
|
955
957
|
export declare class TooManyHeadersInForwardedValues extends __BaseException {
|
|
956
958
|
readonly name: "TooManyHeadersInForwardedValues";
|
|
957
959
|
readonly $fault: "client";
|
|
958
|
-
Message?: string;
|
|
960
|
+
Message?: string | undefined;
|
|
959
961
|
constructor(
|
|
960
962
|
opts: __ExceptionOptionType<
|
|
961
963
|
TooManyHeadersInForwardedValues,
|
|
@@ -966,7 +968,7 @@ export declare class TooManyHeadersInForwardedValues extends __BaseException {
|
|
|
966
968
|
export declare class TooManyKeyGroupsAssociatedToDistribution extends __BaseException {
|
|
967
969
|
readonly name: "TooManyKeyGroupsAssociatedToDistribution";
|
|
968
970
|
readonly $fault: "client";
|
|
969
|
-
Message?: string;
|
|
971
|
+
Message?: string | undefined;
|
|
970
972
|
constructor(
|
|
971
973
|
opts: __ExceptionOptionType<
|
|
972
974
|
TooManyKeyGroupsAssociatedToDistribution,
|
|
@@ -977,7 +979,7 @@ export declare class TooManyKeyGroupsAssociatedToDistribution extends __BaseExce
|
|
|
977
979
|
export declare class TooManyLambdaFunctionAssociations extends __BaseException {
|
|
978
980
|
readonly name: "TooManyLambdaFunctionAssociations";
|
|
979
981
|
readonly $fault: "client";
|
|
980
|
-
Message?: string;
|
|
982
|
+
Message?: string | undefined;
|
|
981
983
|
constructor(
|
|
982
984
|
opts: __ExceptionOptionType<
|
|
983
985
|
TooManyLambdaFunctionAssociations,
|
|
@@ -988,7 +990,7 @@ export declare class TooManyLambdaFunctionAssociations extends __BaseException {
|
|
|
988
990
|
export declare class TooManyOriginCustomHeaders extends __BaseException {
|
|
989
991
|
readonly name: "TooManyOriginCustomHeaders";
|
|
990
992
|
readonly $fault: "client";
|
|
991
|
-
Message?: string;
|
|
993
|
+
Message?: string | undefined;
|
|
992
994
|
constructor(
|
|
993
995
|
opts: __ExceptionOptionType<TooManyOriginCustomHeaders, __BaseException>
|
|
994
996
|
);
|
|
@@ -996,7 +998,7 @@ export declare class TooManyOriginCustomHeaders extends __BaseException {
|
|
|
996
998
|
export declare class TooManyOriginGroupsPerDistribution extends __BaseException {
|
|
997
999
|
readonly name: "TooManyOriginGroupsPerDistribution";
|
|
998
1000
|
readonly $fault: "client";
|
|
999
|
-
Message?: string;
|
|
1001
|
+
Message?: string | undefined;
|
|
1000
1002
|
constructor(
|
|
1001
1003
|
opts: __ExceptionOptionType<
|
|
1002
1004
|
TooManyOriginGroupsPerDistribution,
|
|
@@ -1007,13 +1009,13 @@ export declare class TooManyOriginGroupsPerDistribution extends __BaseException
|
|
|
1007
1009
|
export declare class TooManyOrigins extends __BaseException {
|
|
1008
1010
|
readonly name: "TooManyOrigins";
|
|
1009
1011
|
readonly $fault: "client";
|
|
1010
|
-
Message?: string;
|
|
1012
|
+
Message?: string | undefined;
|
|
1011
1013
|
constructor(opts: __ExceptionOptionType<TooManyOrigins, __BaseException>);
|
|
1012
1014
|
}
|
|
1013
1015
|
export declare class TooManyQueryStringParameters extends __BaseException {
|
|
1014
1016
|
readonly name: "TooManyQueryStringParameters";
|
|
1015
1017
|
readonly $fault: "client";
|
|
1016
|
-
Message?: string;
|
|
1018
|
+
Message?: string | undefined;
|
|
1017
1019
|
constructor(
|
|
1018
1020
|
opts: __ExceptionOptionType<TooManyQueryStringParameters, __BaseException>
|
|
1019
1021
|
);
|
|
@@ -1021,7 +1023,7 @@ export declare class TooManyQueryStringParameters extends __BaseException {
|
|
|
1021
1023
|
export declare class TooManyTrustedSigners extends __BaseException {
|
|
1022
1024
|
readonly name: "TooManyTrustedSigners";
|
|
1023
1025
|
readonly $fault: "client";
|
|
1024
|
-
Message?: string;
|
|
1026
|
+
Message?: string | undefined;
|
|
1025
1027
|
constructor(
|
|
1026
1028
|
opts: __ExceptionOptionType<TooManyTrustedSigners, __BaseException>
|
|
1027
1029
|
);
|
|
@@ -1029,7 +1031,7 @@ export declare class TooManyTrustedSigners extends __BaseException {
|
|
|
1029
1031
|
export declare class TrustedKeyGroupDoesNotExist extends __BaseException {
|
|
1030
1032
|
readonly name: "TrustedKeyGroupDoesNotExist";
|
|
1031
1033
|
readonly $fault: "client";
|
|
1032
|
-
Message?: string;
|
|
1034
|
+
Message?: string | undefined;
|
|
1033
1035
|
constructor(
|
|
1034
1036
|
opts: __ExceptionOptionType<TrustedKeyGroupDoesNotExist, __BaseException>
|
|
1035
1037
|
);
|
|
@@ -1037,7 +1039,7 @@ export declare class TrustedKeyGroupDoesNotExist extends __BaseException {
|
|
|
1037
1039
|
export declare class TrustedSignerDoesNotExist extends __BaseException {
|
|
1038
1040
|
readonly name: "TrustedSignerDoesNotExist";
|
|
1039
1041
|
readonly $fault: "client";
|
|
1040
|
-
Message?: string;
|
|
1042
|
+
Message?: string | undefined;
|
|
1041
1043
|
constructor(
|
|
1042
1044
|
opts: __ExceptionOptionType<TrustedSignerDoesNotExist, __BaseException>
|
|
1043
1045
|
);
|
|
@@ -1046,14 +1048,14 @@ export interface CreateCachePolicyRequest {
|
|
|
1046
1048
|
CachePolicyConfig: CachePolicyConfig | undefined;
|
|
1047
1049
|
}
|
|
1048
1050
|
export interface CreateCachePolicyResult {
|
|
1049
|
-
CachePolicy?: CachePolicy;
|
|
1050
|
-
Location?: string;
|
|
1051
|
-
ETag?: string;
|
|
1051
|
+
CachePolicy?: CachePolicy | undefined;
|
|
1052
|
+
Location?: string | undefined;
|
|
1053
|
+
ETag?: string | undefined;
|
|
1052
1054
|
}
|
|
1053
1055
|
export declare class TooManyCachePolicies extends __BaseException {
|
|
1054
1056
|
readonly name: "TooManyCachePolicies";
|
|
1055
1057
|
readonly $fault: "client";
|
|
1056
|
-
Message?: string;
|
|
1058
|
+
Message?: string | undefined;
|
|
1057
1059
|
constructor(
|
|
1058
1060
|
opts: __ExceptionOptionType<TooManyCachePolicies, __BaseException>
|
|
1059
1061
|
);
|
|
@@ -1061,7 +1063,7 @@ export declare class TooManyCachePolicies extends __BaseException {
|
|
|
1061
1063
|
export declare class TooManyCookiesInCachePolicy extends __BaseException {
|
|
1062
1064
|
readonly name: "TooManyCookiesInCachePolicy";
|
|
1063
1065
|
readonly $fault: "client";
|
|
1064
|
-
Message?: string;
|
|
1066
|
+
Message?: string | undefined;
|
|
1065
1067
|
constructor(
|
|
1066
1068
|
opts: __ExceptionOptionType<TooManyCookiesInCachePolicy, __BaseException>
|
|
1067
1069
|
);
|
|
@@ -1069,7 +1071,7 @@ export declare class TooManyCookiesInCachePolicy extends __BaseException {
|
|
|
1069
1071
|
export declare class TooManyHeadersInCachePolicy extends __BaseException {
|
|
1070
1072
|
readonly name: "TooManyHeadersInCachePolicy";
|
|
1071
1073
|
readonly $fault: "client";
|
|
1072
|
-
Message?: string;
|
|
1074
|
+
Message?: string | undefined;
|
|
1073
1075
|
constructor(
|
|
1074
1076
|
opts: __ExceptionOptionType<TooManyHeadersInCachePolicy, __BaseException>
|
|
1075
1077
|
);
|
|
@@ -1077,7 +1079,7 @@ export declare class TooManyHeadersInCachePolicy extends __BaseException {
|
|
|
1077
1079
|
export declare class TooManyQueryStringsInCachePolicy extends __BaseException {
|
|
1078
1080
|
readonly name: "TooManyQueryStringsInCachePolicy";
|
|
1079
1081
|
readonly $fault: "client";
|
|
1080
|
-
Message?: string;
|
|
1082
|
+
Message?: string | undefined;
|
|
1081
1083
|
constructor(
|
|
1082
1084
|
opts: __ExceptionOptionType<
|
|
1083
1085
|
TooManyQueryStringsInCachePolicy,
|
|
@@ -1088,7 +1090,7 @@ export declare class TooManyQueryStringsInCachePolicy extends __BaseException {
|
|
|
1088
1090
|
export declare class CloudFrontOriginAccessIdentityAlreadyExists extends __BaseException {
|
|
1089
1091
|
readonly name: "CloudFrontOriginAccessIdentityAlreadyExists";
|
|
1090
1092
|
readonly $fault: "client";
|
|
1091
|
-
Message?: string;
|
|
1093
|
+
Message?: string | undefined;
|
|
1092
1094
|
constructor(
|
|
1093
1095
|
opts: __ExceptionOptionType<
|
|
1094
1096
|
CloudFrontOriginAccessIdentityAlreadyExists,
|
|
@@ -1108,17 +1110,19 @@ export interface CreateCloudFrontOriginAccessIdentityRequest {
|
|
|
1108
1110
|
export interface CloudFrontOriginAccessIdentity {
|
|
1109
1111
|
Id: string | undefined;
|
|
1110
1112
|
S3CanonicalUserId: string | undefined;
|
|
1111
|
-
CloudFrontOriginAccessIdentityConfig?:
|
|
1113
|
+
CloudFrontOriginAccessIdentityConfig?:
|
|
1114
|
+
| CloudFrontOriginAccessIdentityConfig
|
|
1115
|
+
| undefined;
|
|
1112
1116
|
}
|
|
1113
1117
|
export interface CreateCloudFrontOriginAccessIdentityResult {
|
|
1114
|
-
CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity;
|
|
1115
|
-
Location?: string;
|
|
1116
|
-
ETag?: string;
|
|
1118
|
+
CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity | undefined;
|
|
1119
|
+
Location?: string | undefined;
|
|
1120
|
+
ETag?: string | undefined;
|
|
1117
1121
|
}
|
|
1118
1122
|
export declare class TooManyCloudFrontOriginAccessIdentities extends __BaseException {
|
|
1119
1123
|
readonly name: "TooManyCloudFrontOriginAccessIdentities";
|
|
1120
1124
|
readonly $fault: "client";
|
|
1121
|
-
Message?: string;
|
|
1125
|
+
Message?: string | undefined;
|
|
1122
1126
|
constructor(
|
|
1123
1127
|
opts: __ExceptionOptionType<
|
|
1124
1128
|
TooManyCloudFrontOriginAccessIdentities,
|
|
@@ -1129,7 +1133,7 @@ export declare class TooManyCloudFrontOriginAccessIdentities extends __BaseExcep
|
|
|
1129
1133
|
export declare class ContinuousDeploymentPolicyAlreadyExists extends __BaseException {
|
|
1130
1134
|
readonly name: "ContinuousDeploymentPolicyAlreadyExists";
|
|
1131
1135
|
readonly $fault: "client";
|
|
1132
|
-
Message?: string;
|
|
1136
|
+
Message?: string | undefined;
|
|
1133
1137
|
constructor(
|
|
1134
1138
|
opts: __ExceptionOptionType<
|
|
1135
1139
|
ContinuousDeploymentPolicyAlreadyExists,
|
|
@@ -1139,7 +1143,7 @@ export declare class ContinuousDeploymentPolicyAlreadyExists extends __BaseExcep
|
|
|
1139
1143
|
}
|
|
1140
1144
|
export interface StagingDistributionDnsNames {
|
|
1141
1145
|
Quantity: number | undefined;
|
|
1142
|
-
Items?: string[];
|
|
1146
|
+
Items?: string[] | undefined;
|
|
1143
1147
|
}
|
|
1144
1148
|
export interface ContinuousDeploymentSingleHeaderConfig {
|
|
1145
1149
|
Header: string | undefined;
|
|
@@ -1151,7 +1155,7 @@ export interface SessionStickinessConfig {
|
|
|
1151
1155
|
}
|
|
1152
1156
|
export interface ContinuousDeploymentSingleWeightConfig {
|
|
1153
1157
|
Weight: number | undefined;
|
|
1154
|
-
SessionStickinessConfig?: SessionStickinessConfig;
|
|
1158
|
+
SessionStickinessConfig?: SessionStickinessConfig | undefined;
|
|
1155
1159
|
}
|
|
1156
1160
|
export declare const ContinuousDeploymentPolicyType: {
|
|
1157
1161
|
readonly SingleHeader: "SingleHeader";
|
|
@@ -1160,14 +1164,14 @@ export declare const ContinuousDeploymentPolicyType: {
|
|
|
1160
1164
|
export type ContinuousDeploymentPolicyType =
|
|
1161
1165
|
(typeof ContinuousDeploymentPolicyType)[keyof typeof ContinuousDeploymentPolicyType];
|
|
1162
1166
|
export interface TrafficConfig {
|
|
1163
|
-
SingleWeightConfig?: ContinuousDeploymentSingleWeightConfig;
|
|
1164
|
-
SingleHeaderConfig?: ContinuousDeploymentSingleHeaderConfig;
|
|
1167
|
+
SingleWeightConfig?: ContinuousDeploymentSingleWeightConfig | undefined;
|
|
1168
|
+
SingleHeaderConfig?: ContinuousDeploymentSingleHeaderConfig | undefined;
|
|
1165
1169
|
Type: ContinuousDeploymentPolicyType | undefined;
|
|
1166
1170
|
}
|
|
1167
1171
|
export interface ContinuousDeploymentPolicyConfig {
|
|
1168
1172
|
StagingDistributionDnsNames: StagingDistributionDnsNames | undefined;
|
|
1169
1173
|
Enabled: boolean | undefined;
|
|
1170
|
-
TrafficConfig?: TrafficConfig;
|
|
1174
|
+
TrafficConfig?: TrafficConfig | undefined;
|
|
1171
1175
|
}
|
|
1172
1176
|
export interface CreateContinuousDeploymentPolicyRequest {
|
|
1173
1177
|
ContinuousDeploymentPolicyConfig:
|
|
@@ -1182,14 +1186,14 @@ export interface ContinuousDeploymentPolicy {
|
|
|
1182
1186
|
| undefined;
|
|
1183
1187
|
}
|
|
1184
1188
|
export interface CreateContinuousDeploymentPolicyResult {
|
|
1185
|
-
ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy;
|
|
1186
|
-
Location?: string;
|
|
1187
|
-
ETag?: string;
|
|
1189
|
+
ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy | undefined;
|
|
1190
|
+
Location?: string | undefined;
|
|
1191
|
+
ETag?: string | undefined;
|
|
1188
1192
|
}
|
|
1189
1193
|
export declare class StagingDistributionInUse extends __BaseException {
|
|
1190
1194
|
readonly name: "StagingDistributionInUse";
|
|
1191
1195
|
readonly $fault: "client";
|
|
1192
|
-
Message?: string;
|
|
1196
|
+
Message?: string | undefined;
|
|
1193
1197
|
constructor(
|
|
1194
1198
|
opts: __ExceptionOptionType<StagingDistributionInUse, __BaseException>
|
|
1195
1199
|
);
|
|
@@ -1197,7 +1201,7 @@ export declare class StagingDistributionInUse extends __BaseException {
|
|
|
1197
1201
|
export declare class TooManyContinuousDeploymentPolicies extends __BaseException {
|
|
1198
1202
|
readonly name: "TooManyContinuousDeploymentPolicies";
|
|
1199
1203
|
readonly $fault: "client";
|
|
1200
|
-
Message?: string;
|
|
1204
|
+
Message?: string | undefined;
|
|
1201
1205
|
constructor(
|
|
1202
1206
|
opts: __ExceptionOptionType<
|
|
1203
1207
|
TooManyContinuousDeploymentPolicies,
|
|
@@ -1208,7 +1212,7 @@ export declare class TooManyContinuousDeploymentPolicies extends __BaseException
|
|
|
1208
1212
|
export declare class ContinuousDeploymentPolicyInUse extends __BaseException {
|
|
1209
1213
|
readonly name: "ContinuousDeploymentPolicyInUse";
|
|
1210
1214
|
readonly $fault: "client";
|
|
1211
|
-
Message?: string;
|
|
1215
|
+
Message?: string | undefined;
|
|
1212
1216
|
constructor(
|
|
1213
1217
|
opts: __ExceptionOptionType<
|
|
1214
1218
|
ContinuousDeploymentPolicyInUse,
|
|
@@ -1220,14 +1224,14 @@ export interface CreateDistributionRequest {
|
|
|
1220
1224
|
DistributionConfig: DistributionConfig | undefined;
|
|
1221
1225
|
}
|
|
1222
1226
|
export interface CreateDistributionResult {
|
|
1223
|
-
Distribution?: Distribution;
|
|
1224
|
-
Location?: string;
|
|
1225
|
-
ETag?: string;
|
|
1227
|
+
Distribution?: Distribution | undefined;
|
|
1228
|
+
Location?: string | undefined;
|
|
1229
|
+
ETag?: string | undefined;
|
|
1226
1230
|
}
|
|
1227
1231
|
export declare class IllegalOriginAccessConfiguration extends __BaseException {
|
|
1228
1232
|
readonly name: "IllegalOriginAccessConfiguration";
|
|
1229
1233
|
readonly $fault: "client";
|
|
1230
|
-
Message?: string;
|
|
1234
|
+
Message?: string | undefined;
|
|
1231
1235
|
constructor(
|
|
1232
1236
|
opts: __ExceptionOptionType<
|
|
1233
1237
|
IllegalOriginAccessConfiguration,
|
|
@@ -1238,7 +1242,7 @@ export declare class IllegalOriginAccessConfiguration extends __BaseException {
|
|
|
1238
1242
|
export declare class InvalidDomainNameForOriginAccessControl extends __BaseException {
|
|
1239
1243
|
readonly name: "InvalidDomainNameForOriginAccessControl";
|
|
1240
1244
|
readonly $fault: "client";
|
|
1241
|
-
Message?: string;
|
|
1245
|
+
Message?: string | undefined;
|
|
1242
1246
|
constructor(
|
|
1243
1247
|
opts: __ExceptionOptionType<
|
|
1244
1248
|
InvalidDomainNameForOriginAccessControl,
|
|
@@ -1249,7 +1253,7 @@ export declare class InvalidDomainNameForOriginAccessControl extends __BaseExcep
|
|
|
1249
1253
|
export declare class NoSuchContinuousDeploymentPolicy extends __BaseException {
|
|
1250
1254
|
readonly name: "NoSuchContinuousDeploymentPolicy";
|
|
1251
1255
|
readonly $fault: "client";
|
|
1252
|
-
Message?: string;
|
|
1256
|
+
Message?: string | undefined;
|
|
1253
1257
|
constructor(
|
|
1254
1258
|
opts: __ExceptionOptionType<
|
|
1255
1259
|
NoSuchContinuousDeploymentPolicy,
|
|
@@ -1259,10 +1263,10 @@ export declare class NoSuchContinuousDeploymentPolicy extends __BaseException {
|
|
|
1259
1263
|
}
|
|
1260
1264
|
export interface Tag {
|
|
1261
1265
|
Key: string | undefined;
|
|
1262
|
-
Value?: string;
|
|
1266
|
+
Value?: string | undefined;
|
|
1263
1267
|
}
|
|
1264
1268
|
export interface Tags {
|
|
1265
|
-
Items?: Tag[];
|
|
1269
|
+
Items?: Tag[] | undefined;
|
|
1266
1270
|
}
|
|
1267
1271
|
export interface DistributionConfigWithTags {
|
|
1268
1272
|
DistributionConfig: DistributionConfig | undefined;
|
|
@@ -1272,14 +1276,14 @@ export interface CreateDistributionWithTagsRequest {
|
|
|
1272
1276
|
DistributionConfigWithTags: DistributionConfigWithTags | undefined;
|
|
1273
1277
|
}
|
|
1274
1278
|
export interface CreateDistributionWithTagsResult {
|
|
1275
|
-
Distribution?: Distribution;
|
|
1276
|
-
Location?: string;
|
|
1277
|
-
ETag?: string;
|
|
1279
|
+
Distribution?: Distribution | undefined;
|
|
1280
|
+
Location?: string | undefined;
|
|
1281
|
+
ETag?: string | undefined;
|
|
1278
1282
|
}
|
|
1279
1283
|
export declare class InvalidTagging extends __BaseException {
|
|
1280
1284
|
readonly name: "InvalidTagging";
|
|
1281
1285
|
readonly $fault: "client";
|
|
1282
|
-
Message?: string;
|
|
1286
|
+
Message?: string | undefined;
|
|
1283
1287
|
constructor(opts: __ExceptionOptionType<InvalidTagging, __BaseException>);
|
|
1284
1288
|
}
|
|
1285
1289
|
export declare const Format: {
|
|
@@ -1288,16 +1292,16 @@ export declare const Format: {
|
|
|
1288
1292
|
export type Format = (typeof Format)[keyof typeof Format];
|
|
1289
1293
|
export interface ContentTypeProfile {
|
|
1290
1294
|
Format: Format | undefined;
|
|
1291
|
-
ProfileId?: string;
|
|
1295
|
+
ProfileId?: string | undefined;
|
|
1292
1296
|
ContentType: string | undefined;
|
|
1293
1297
|
}
|
|
1294
1298
|
export interface ContentTypeProfiles {
|
|
1295
1299
|
Quantity: number | undefined;
|
|
1296
|
-
Items?: ContentTypeProfile[];
|
|
1300
|
+
Items?: ContentTypeProfile[] | undefined;
|
|
1297
1301
|
}
|
|
1298
1302
|
export interface ContentTypeProfileConfig {
|
|
1299
1303
|
ForwardWhenContentTypeIsUnknown: boolean | undefined;
|
|
1300
|
-
ContentTypeProfiles?: ContentTypeProfiles;
|
|
1304
|
+
ContentTypeProfiles?: ContentTypeProfiles | undefined;
|
|
1301
1305
|
}
|
|
1302
1306
|
export interface QueryArgProfile {
|
|
1303
1307
|
QueryArg: string | undefined;
|
|
@@ -1305,17 +1309,17 @@ export interface QueryArgProfile {
|
|
|
1305
1309
|
}
|
|
1306
1310
|
export interface QueryArgProfiles {
|
|
1307
1311
|
Quantity: number | undefined;
|
|
1308
|
-
Items?: QueryArgProfile[];
|
|
1312
|
+
Items?: QueryArgProfile[] | undefined;
|
|
1309
1313
|
}
|
|
1310
1314
|
export interface QueryArgProfileConfig {
|
|
1311
1315
|
ForwardWhenQueryArgProfileIsUnknown: boolean | undefined;
|
|
1312
|
-
QueryArgProfiles?: QueryArgProfiles;
|
|
1316
|
+
QueryArgProfiles?: QueryArgProfiles | undefined;
|
|
1313
1317
|
}
|
|
1314
1318
|
export interface FieldLevelEncryptionConfig {
|
|
1315
1319
|
CallerReference: string | undefined;
|
|
1316
|
-
Comment?: string;
|
|
1317
|
-
QueryArgProfileConfig?: QueryArgProfileConfig;
|
|
1318
|
-
ContentTypeProfileConfig?: ContentTypeProfileConfig;
|
|
1320
|
+
Comment?: string | undefined;
|
|
1321
|
+
QueryArgProfileConfig?: QueryArgProfileConfig | undefined;
|
|
1322
|
+
ContentTypeProfileConfig?: ContentTypeProfileConfig | undefined;
|
|
1319
1323
|
}
|
|
1320
1324
|
export interface CreateFieldLevelEncryptionConfigRequest {
|
|
1321
1325
|
FieldLevelEncryptionConfig: FieldLevelEncryptionConfig | undefined;
|
|
@@ -1326,14 +1330,14 @@ export interface FieldLevelEncryption {
|
|
|
1326
1330
|
FieldLevelEncryptionConfig: FieldLevelEncryptionConfig | undefined;
|
|
1327
1331
|
}
|
|
1328
1332
|
export interface CreateFieldLevelEncryptionConfigResult {
|
|
1329
|
-
FieldLevelEncryption?: FieldLevelEncryption;
|
|
1330
|
-
Location?: string;
|
|
1331
|
-
ETag?: string;
|
|
1333
|
+
FieldLevelEncryption?: FieldLevelEncryption | undefined;
|
|
1334
|
+
Location?: string | undefined;
|
|
1335
|
+
ETag?: string | undefined;
|
|
1332
1336
|
}
|
|
1333
1337
|
export declare class FieldLevelEncryptionConfigAlreadyExists extends __BaseException {
|
|
1334
1338
|
readonly name: "FieldLevelEncryptionConfigAlreadyExists";
|
|
1335
1339
|
readonly $fault: "client";
|
|
1336
|
-
Message?: string;
|
|
1340
|
+
Message?: string | undefined;
|
|
1337
1341
|
constructor(
|
|
1338
1342
|
opts: __ExceptionOptionType<
|
|
1339
1343
|
FieldLevelEncryptionConfigAlreadyExists,
|
|
@@ -1344,7 +1348,7 @@ export declare class FieldLevelEncryptionConfigAlreadyExists extends __BaseExcep
|
|
|
1344
1348
|
export declare class NoSuchFieldLevelEncryptionProfile extends __BaseException {
|
|
1345
1349
|
readonly name: "NoSuchFieldLevelEncryptionProfile";
|
|
1346
1350
|
readonly $fault: "client";
|
|
1347
|
-
Message?: string;
|
|
1351
|
+
Message?: string | undefined;
|
|
1348
1352
|
constructor(
|
|
1349
1353
|
opts: __ExceptionOptionType<
|
|
1350
1354
|
NoSuchFieldLevelEncryptionProfile,
|
|
@@ -1355,7 +1359,7 @@ export declare class NoSuchFieldLevelEncryptionProfile extends __BaseException {
|
|
|
1355
1359
|
export declare class QueryArgProfileEmpty extends __BaseException {
|
|
1356
1360
|
readonly name: "QueryArgProfileEmpty";
|
|
1357
1361
|
readonly $fault: "client";
|
|
1358
|
-
Message?: string;
|
|
1362
|
+
Message?: string | undefined;
|
|
1359
1363
|
constructor(
|
|
1360
1364
|
opts: __ExceptionOptionType<QueryArgProfileEmpty, __BaseException>
|
|
1361
1365
|
);
|
|
@@ -1363,7 +1367,7 @@ export declare class QueryArgProfileEmpty extends __BaseException {
|
|
|
1363
1367
|
export declare class TooManyFieldLevelEncryptionConfigs extends __BaseException {
|
|
1364
1368
|
readonly name: "TooManyFieldLevelEncryptionConfigs";
|
|
1365
1369
|
readonly $fault: "client";
|
|
1366
|
-
Message?: string;
|
|
1370
|
+
Message?: string | undefined;
|
|
1367
1371
|
constructor(
|
|
1368
1372
|
opts: __ExceptionOptionType<
|
|
1369
1373
|
TooManyFieldLevelEncryptionConfigs,
|
|
@@ -1374,7 +1378,7 @@ export declare class TooManyFieldLevelEncryptionConfigs extends __BaseException
|
|
|
1374
1378
|
export declare class TooManyFieldLevelEncryptionContentTypeProfiles extends __BaseException {
|
|
1375
1379
|
readonly name: "TooManyFieldLevelEncryptionContentTypeProfiles";
|
|
1376
1380
|
readonly $fault: "client";
|
|
1377
|
-
Message?: string;
|
|
1381
|
+
Message?: string | undefined;
|
|
1378
1382
|
constructor(
|
|
1379
1383
|
opts: __ExceptionOptionType<
|
|
1380
1384
|
TooManyFieldLevelEncryptionContentTypeProfiles,
|
|
@@ -1385,7 +1389,7 @@ export declare class TooManyFieldLevelEncryptionContentTypeProfiles extends __Ba
|
|
|
1385
1389
|
export declare class TooManyFieldLevelEncryptionQueryArgProfiles extends __BaseException {
|
|
1386
1390
|
readonly name: "TooManyFieldLevelEncryptionQueryArgProfiles";
|
|
1387
1391
|
readonly $fault: "client";
|
|
1388
|
-
Message?: string;
|
|
1392
|
+
Message?: string | undefined;
|
|
1389
1393
|
constructor(
|
|
1390
1394
|
opts: __ExceptionOptionType<
|
|
1391
1395
|
TooManyFieldLevelEncryptionQueryArgProfiles,
|
|
@@ -1395,7 +1399,7 @@ export declare class TooManyFieldLevelEncryptionQueryArgProfiles extends __BaseE
|
|
|
1395
1399
|
}
|
|
1396
1400
|
export interface FieldPatterns {
|
|
1397
1401
|
Quantity: number | undefined;
|
|
1398
|
-
Items?: string[];
|
|
1402
|
+
Items?: string[] | undefined;
|
|
1399
1403
|
}
|
|
1400
1404
|
export interface EncryptionEntity {
|
|
1401
1405
|
PublicKeyId: string | undefined;
|
|
@@ -1404,12 +1408,12 @@ export interface EncryptionEntity {
|
|
|
1404
1408
|
}
|
|
1405
1409
|
export interface EncryptionEntities {
|
|
1406
1410
|
Quantity: number | undefined;
|
|
1407
|
-
Items?: EncryptionEntity[];
|
|
1411
|
+
Items?: EncryptionEntity[] | undefined;
|
|
1408
1412
|
}
|
|
1409
1413
|
export interface FieldLevelEncryptionProfileConfig {
|
|
1410
1414
|
Name: string | undefined;
|
|
1411
1415
|
CallerReference: string | undefined;
|
|
1412
|
-
Comment?: string;
|
|
1416
|
+
Comment?: string | undefined;
|
|
1413
1417
|
EncryptionEntities: EncryptionEntities | undefined;
|
|
1414
1418
|
}
|
|
1415
1419
|
export interface CreateFieldLevelEncryptionProfileRequest {
|
|
@@ -1425,14 +1429,14 @@ export interface FieldLevelEncryptionProfile {
|
|
|
1425
1429
|
| undefined;
|
|
1426
1430
|
}
|
|
1427
1431
|
export interface CreateFieldLevelEncryptionProfileResult {
|
|
1428
|
-
FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile;
|
|
1429
|
-
Location?: string;
|
|
1430
|
-
ETag?: string;
|
|
1432
|
+
FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile | undefined;
|
|
1433
|
+
Location?: string | undefined;
|
|
1434
|
+
ETag?: string | undefined;
|
|
1431
1435
|
}
|
|
1432
1436
|
export declare class FieldLevelEncryptionProfileAlreadyExists extends __BaseException {
|
|
1433
1437
|
readonly name: "FieldLevelEncryptionProfileAlreadyExists";
|
|
1434
1438
|
readonly $fault: "client";
|
|
1435
|
-
Message?: string;
|
|
1439
|
+
Message?: string | undefined;
|
|
1436
1440
|
constructor(
|
|
1437
1441
|
opts: __ExceptionOptionType<
|
|
1438
1442
|
FieldLevelEncryptionProfileAlreadyExists,
|
|
@@ -1443,7 +1447,7 @@ export declare class FieldLevelEncryptionProfileAlreadyExists extends __BaseExce
|
|
|
1443
1447
|
export declare class FieldLevelEncryptionProfileSizeExceeded extends __BaseException {
|
|
1444
1448
|
readonly name: "FieldLevelEncryptionProfileSizeExceeded";
|
|
1445
1449
|
readonly $fault: "client";
|
|
1446
|
-
Message?: string;
|
|
1450
|
+
Message?: string | undefined;
|
|
1447
1451
|
constructor(
|
|
1448
1452
|
opts: __ExceptionOptionType<
|
|
1449
1453
|
FieldLevelEncryptionProfileSizeExceeded,
|
|
@@ -1454,13 +1458,13 @@ export declare class FieldLevelEncryptionProfileSizeExceeded extends __BaseExcep
|
|
|
1454
1458
|
export declare class NoSuchPublicKey extends __BaseException {
|
|
1455
1459
|
readonly name: "NoSuchPublicKey";
|
|
1456
1460
|
readonly $fault: "client";
|
|
1457
|
-
Message?: string;
|
|
1461
|
+
Message?: string | undefined;
|
|
1458
1462
|
constructor(opts: __ExceptionOptionType<NoSuchPublicKey, __BaseException>);
|
|
1459
1463
|
}
|
|
1460
1464
|
export declare class TooManyFieldLevelEncryptionEncryptionEntities extends __BaseException {
|
|
1461
1465
|
readonly name: "TooManyFieldLevelEncryptionEncryptionEntities";
|
|
1462
1466
|
readonly $fault: "client";
|
|
1463
|
-
Message?: string;
|
|
1467
|
+
Message?: string | undefined;
|
|
1464
1468
|
constructor(
|
|
1465
1469
|
opts: __ExceptionOptionType<
|
|
1466
1470
|
TooManyFieldLevelEncryptionEncryptionEntities,
|
|
@@ -1471,7 +1475,7 @@ export declare class TooManyFieldLevelEncryptionEncryptionEntities extends __Bas
|
|
|
1471
1475
|
export declare class TooManyFieldLevelEncryptionFieldPatterns extends __BaseException {
|
|
1472
1476
|
readonly name: "TooManyFieldLevelEncryptionFieldPatterns";
|
|
1473
1477
|
readonly $fault: "client";
|
|
1474
|
-
Message?: string;
|
|
1478
|
+
Message?: string | undefined;
|
|
1475
1479
|
constructor(
|
|
1476
1480
|
opts: __ExceptionOptionType<
|
|
1477
1481
|
TooManyFieldLevelEncryptionFieldPatterns,
|
|
@@ -1482,7 +1486,7 @@ export declare class TooManyFieldLevelEncryptionFieldPatterns extends __BaseExce
|
|
|
1482
1486
|
export declare class TooManyFieldLevelEncryptionProfiles extends __BaseException {
|
|
1483
1487
|
readonly name: "TooManyFieldLevelEncryptionProfiles";
|
|
1484
1488
|
readonly $fault: "client";
|
|
1485
|
-
Message?: string;
|
|
1489
|
+
Message?: string | undefined;
|
|
1486
1490
|
constructor(
|
|
1487
1491
|
opts: __ExceptionOptionType<
|
|
1488
1492
|
TooManyFieldLevelEncryptionProfiles,
|
|
@@ -1495,7 +1499,7 @@ export interface KeyValueStoreAssociation {
|
|
|
1495
1499
|
}
|
|
1496
1500
|
export interface KeyValueStoreAssociations {
|
|
1497
1501
|
Quantity: number | undefined;
|
|
1498
|
-
Items?: KeyValueStoreAssociation[];
|
|
1502
|
+
Items?: KeyValueStoreAssociation[] | undefined;
|
|
1499
1503
|
}
|
|
1500
1504
|
export declare const FunctionRuntime: {
|
|
1501
1505
|
readonly cloudfront_js_1_0: "cloudfront-js-1.0";
|
|
@@ -1506,7 +1510,7 @@ export type FunctionRuntime =
|
|
|
1506
1510
|
export interface FunctionConfig {
|
|
1507
1511
|
Comment: string | undefined;
|
|
1508
1512
|
Runtime: FunctionRuntime | undefined;
|
|
1509
|
-
KeyValueStoreAssociations?: KeyValueStoreAssociations;
|
|
1513
|
+
KeyValueStoreAssociations?: KeyValueStoreAssociations | undefined;
|
|
1510
1514
|
}
|
|
1511
1515
|
export interface CreateFunctionRequest {
|
|
1512
1516
|
Name: string | undefined;
|
|
@@ -1520,25 +1524,25 @@ export declare const FunctionStage: {
|
|
|
1520
1524
|
export type FunctionStage = (typeof FunctionStage)[keyof typeof FunctionStage];
|
|
1521
1525
|
export interface FunctionMetadata {
|
|
1522
1526
|
FunctionARN: string | undefined;
|
|
1523
|
-
Stage?: FunctionStage;
|
|
1524
|
-
CreatedTime?: Date;
|
|
1527
|
+
Stage?: FunctionStage | undefined;
|
|
1528
|
+
CreatedTime?: Date | undefined;
|
|
1525
1529
|
LastModifiedTime: Date | undefined;
|
|
1526
1530
|
}
|
|
1527
1531
|
export interface FunctionSummary {
|
|
1528
1532
|
Name: string | undefined;
|
|
1529
|
-
Status?: string;
|
|
1533
|
+
Status?: string | undefined;
|
|
1530
1534
|
FunctionConfig: FunctionConfig | undefined;
|
|
1531
1535
|
FunctionMetadata: FunctionMetadata | undefined;
|
|
1532
1536
|
}
|
|
1533
1537
|
export interface CreateFunctionResult {
|
|
1534
|
-
FunctionSummary?: FunctionSummary;
|
|
1535
|
-
Location?: string;
|
|
1536
|
-
ETag?: string;
|
|
1538
|
+
FunctionSummary?: FunctionSummary | undefined;
|
|
1539
|
+
Location?: string | undefined;
|
|
1540
|
+
ETag?: string | undefined;
|
|
1537
1541
|
}
|
|
1538
1542
|
export declare class FunctionAlreadyExists extends __BaseException {
|
|
1539
1543
|
readonly name: "FunctionAlreadyExists";
|
|
1540
1544
|
readonly $fault: "client";
|
|
1541
|
-
Message?: string;
|
|
1545
|
+
Message?: string | undefined;
|
|
1542
1546
|
constructor(
|
|
1543
1547
|
opts: __ExceptionOptionType<FunctionAlreadyExists, __BaseException>
|
|
1544
1548
|
);
|
|
@@ -1546,7 +1550,7 @@ export declare class FunctionAlreadyExists extends __BaseException {
|
|
|
1546
1550
|
export declare class FunctionSizeLimitExceeded extends __BaseException {
|
|
1547
1551
|
readonly name: "FunctionSizeLimitExceeded";
|
|
1548
1552
|
readonly $fault: "client";
|
|
1549
|
-
Message?: string;
|
|
1553
|
+
Message?: string | undefined;
|
|
1550
1554
|
constructor(
|
|
1551
1555
|
opts: __ExceptionOptionType<FunctionSizeLimitExceeded, __BaseException>
|
|
1552
1556
|
);
|
|
@@ -1554,20 +1558,20 @@ export declare class FunctionSizeLimitExceeded extends __BaseException {
|
|
|
1554
1558
|
export declare class TooManyFunctions extends __BaseException {
|
|
1555
1559
|
readonly name: "TooManyFunctions";
|
|
1556
1560
|
readonly $fault: "client";
|
|
1557
|
-
Message?: string;
|
|
1561
|
+
Message?: string | undefined;
|
|
1558
1562
|
constructor(opts: __ExceptionOptionType<TooManyFunctions, __BaseException>);
|
|
1559
1563
|
}
|
|
1560
1564
|
export declare class UnsupportedOperation extends __BaseException {
|
|
1561
1565
|
readonly name: "UnsupportedOperation";
|
|
1562
1566
|
readonly $fault: "client";
|
|
1563
|
-
Message?: string;
|
|
1567
|
+
Message?: string | undefined;
|
|
1564
1568
|
constructor(
|
|
1565
1569
|
opts: __ExceptionOptionType<UnsupportedOperation, __BaseException>
|
|
1566
1570
|
);
|
|
1567
1571
|
}
|
|
1568
1572
|
export interface Paths {
|
|
1569
1573
|
Quantity: number | undefined;
|
|
1570
|
-
Items?: string[];
|
|
1574
|
+
Items?: string[] | undefined;
|
|
1571
1575
|
}
|
|
1572
1576
|
export interface InvalidationBatch {
|
|
1573
1577
|
Paths: Paths | undefined;
|
|
@@ -1584,13 +1588,13 @@ export interface Invalidation {
|
|
|
1584
1588
|
InvalidationBatch: InvalidationBatch | undefined;
|
|
1585
1589
|
}
|
|
1586
1590
|
export interface CreateInvalidationResult {
|
|
1587
|
-
Location?: string;
|
|
1588
|
-
Invalidation?: Invalidation;
|
|
1591
|
+
Location?: string | undefined;
|
|
1592
|
+
Invalidation?: Invalidation | undefined;
|
|
1589
1593
|
}
|
|
1590
1594
|
export declare class TooManyInvalidationsInProgress extends __BaseException {
|
|
1591
1595
|
readonly name: "TooManyInvalidationsInProgress";
|
|
1592
1596
|
readonly $fault: "client";
|
|
1593
|
-
Message?: string;
|
|
1597
|
+
Message?: string | undefined;
|
|
1594
1598
|
constructor(
|
|
1595
1599
|
opts: __ExceptionOptionType<TooManyInvalidationsInProgress, __BaseException>
|
|
1596
1600
|
);
|
|
@@ -1598,7 +1602,7 @@ export declare class TooManyInvalidationsInProgress extends __BaseException {
|
|
|
1598
1602
|
export interface KeyGroupConfig {
|
|
1599
1603
|
Name: string | undefined;
|
|
1600
1604
|
Items: string[] | undefined;
|
|
1601
|
-
Comment?: string;
|
|
1605
|
+
Comment?: string | undefined;
|
|
1602
1606
|
}
|
|
1603
1607
|
export interface CreateKeyGroupRequest {
|
|
1604
1608
|
KeyGroupConfig: KeyGroupConfig | undefined;
|
|
@@ -1609,14 +1613,14 @@ export interface KeyGroup {
|
|
|
1609
1613
|
KeyGroupConfig: KeyGroupConfig | undefined;
|
|
1610
1614
|
}
|
|
1611
1615
|
export interface CreateKeyGroupResult {
|
|
1612
|
-
KeyGroup?: KeyGroup;
|
|
1613
|
-
Location?: string;
|
|
1614
|
-
ETag?: string;
|
|
1616
|
+
KeyGroup?: KeyGroup | undefined;
|
|
1617
|
+
Location?: string | undefined;
|
|
1618
|
+
ETag?: string | undefined;
|
|
1615
1619
|
}
|
|
1616
1620
|
export declare class KeyGroupAlreadyExists extends __BaseException {
|
|
1617
1621
|
readonly name: "KeyGroupAlreadyExists";
|
|
1618
1622
|
readonly $fault: "client";
|
|
1619
|
-
Message?: string;
|
|
1623
|
+
Message?: string | undefined;
|
|
1620
1624
|
constructor(
|
|
1621
1625
|
opts: __ExceptionOptionType<KeyGroupAlreadyExists, __BaseException>
|
|
1622
1626
|
);
|
|
@@ -1624,13 +1628,13 @@ export declare class KeyGroupAlreadyExists extends __BaseException {
|
|
|
1624
1628
|
export declare class TooManyKeyGroups extends __BaseException {
|
|
1625
1629
|
readonly name: "TooManyKeyGroups";
|
|
1626
1630
|
readonly $fault: "client";
|
|
1627
|
-
Message?: string;
|
|
1631
|
+
Message?: string | undefined;
|
|
1628
1632
|
constructor(opts: __ExceptionOptionType<TooManyKeyGroups, __BaseException>);
|
|
1629
1633
|
}
|
|
1630
1634
|
export declare class TooManyPublicKeysInKeyGroup extends __BaseException {
|
|
1631
1635
|
readonly name: "TooManyPublicKeysInKeyGroup";
|
|
1632
1636
|
readonly $fault: "client";
|
|
1633
|
-
Message?: string;
|
|
1637
|
+
Message?: string | undefined;
|
|
1634
1638
|
constructor(
|
|
1635
1639
|
opts: __ExceptionOptionType<TooManyPublicKeysInKeyGroup, __BaseException>
|
|
1636
1640
|
);
|
|
@@ -1646,26 +1650,26 @@ export interface ImportSource {
|
|
|
1646
1650
|
}
|
|
1647
1651
|
export interface CreateKeyValueStoreRequest {
|
|
1648
1652
|
Name: string | undefined;
|
|
1649
|
-
Comment?: string;
|
|
1650
|
-
ImportSource?: ImportSource;
|
|
1653
|
+
Comment?: string | undefined;
|
|
1654
|
+
ImportSource?: ImportSource | undefined;
|
|
1651
1655
|
}
|
|
1652
1656
|
export interface KeyValueStore {
|
|
1653
1657
|
Name: string | undefined;
|
|
1654
1658
|
Id: string | undefined;
|
|
1655
1659
|
Comment: string | undefined;
|
|
1656
1660
|
ARN: string | undefined;
|
|
1657
|
-
Status?: string;
|
|
1661
|
+
Status?: string | undefined;
|
|
1658
1662
|
LastModifiedTime: Date | undefined;
|
|
1659
1663
|
}
|
|
1660
1664
|
export interface CreateKeyValueStoreResult {
|
|
1661
|
-
KeyValueStore?: KeyValueStore;
|
|
1662
|
-
ETag?: string;
|
|
1663
|
-
Location?: string;
|
|
1665
|
+
KeyValueStore?: KeyValueStore | undefined;
|
|
1666
|
+
ETag?: string | undefined;
|
|
1667
|
+
Location?: string | undefined;
|
|
1664
1668
|
}
|
|
1665
1669
|
export declare class EntityAlreadyExists extends __BaseException {
|
|
1666
1670
|
readonly name: "EntityAlreadyExists";
|
|
1667
1671
|
readonly $fault: "client";
|
|
1668
|
-
Message?: string;
|
|
1672
|
+
Message?: string | undefined;
|
|
1669
1673
|
constructor(
|
|
1670
1674
|
opts: __ExceptionOptionType<EntityAlreadyExists, __BaseException>
|
|
1671
1675
|
);
|
|
@@ -1673,7 +1677,7 @@ export declare class EntityAlreadyExists extends __BaseException {
|
|
|
1673
1677
|
export declare class EntityLimitExceeded extends __BaseException {
|
|
1674
1678
|
readonly name: "EntityLimitExceeded";
|
|
1675
1679
|
readonly $fault: "client";
|
|
1676
|
-
Message?: string;
|
|
1680
|
+
Message?: string | undefined;
|
|
1677
1681
|
constructor(
|
|
1678
1682
|
opts: __ExceptionOptionType<EntityLimitExceeded, __BaseException>
|
|
1679
1683
|
);
|
|
@@ -1681,7 +1685,7 @@ export declare class EntityLimitExceeded extends __BaseException {
|
|
|
1681
1685
|
export declare class EntitySizeLimitExceeded extends __BaseException {
|
|
1682
1686
|
readonly name: "EntitySizeLimitExceeded";
|
|
1683
1687
|
readonly $fault: "client";
|
|
1684
|
-
Message?: string;
|
|
1688
|
+
Message?: string | undefined;
|
|
1685
1689
|
constructor(
|
|
1686
1690
|
opts: __ExceptionOptionType<EntitySizeLimitExceeded, __BaseException>
|
|
1687
1691
|
);
|
|
@@ -1698,19 +1702,21 @@ export interface RealtimeMetricsSubscriptionConfig {
|
|
|
1698
1702
|
| undefined;
|
|
1699
1703
|
}
|
|
1700
1704
|
export interface MonitoringSubscription {
|
|
1701
|
-
RealtimeMetricsSubscriptionConfig?:
|
|
1705
|
+
RealtimeMetricsSubscriptionConfig?:
|
|
1706
|
+
| RealtimeMetricsSubscriptionConfig
|
|
1707
|
+
| undefined;
|
|
1702
1708
|
}
|
|
1703
1709
|
export interface CreateMonitoringSubscriptionRequest {
|
|
1704
1710
|
DistributionId: string | undefined;
|
|
1705
1711
|
MonitoringSubscription: MonitoringSubscription | undefined;
|
|
1706
1712
|
}
|
|
1707
1713
|
export interface CreateMonitoringSubscriptionResult {
|
|
1708
|
-
MonitoringSubscription?: MonitoringSubscription;
|
|
1714
|
+
MonitoringSubscription?: MonitoringSubscription | undefined;
|
|
1709
1715
|
}
|
|
1710
1716
|
export declare class MonitoringSubscriptionAlreadyExists extends __BaseException {
|
|
1711
1717
|
readonly name: "MonitoringSubscriptionAlreadyExists";
|
|
1712
1718
|
readonly $fault: "client";
|
|
1713
|
-
Message?: string;
|
|
1719
|
+
Message?: string | undefined;
|
|
1714
1720
|
constructor(
|
|
1715
1721
|
opts: __ExceptionOptionType<
|
|
1716
1722
|
MonitoringSubscriptionAlreadyExists,
|
|
@@ -1740,7 +1746,7 @@ export type OriginAccessControlSigningProtocols =
|
|
|
1740
1746
|
(typeof OriginAccessControlSigningProtocols)[keyof typeof OriginAccessControlSigningProtocols];
|
|
1741
1747
|
export interface OriginAccessControlConfig {
|
|
1742
1748
|
Name: string | undefined;
|
|
1743
|
-
Description?: string;
|
|
1749
|
+
Description?: string | undefined;
|
|
1744
1750
|
SigningProtocol: OriginAccessControlSigningProtocols | undefined;
|
|
1745
1751
|
SigningBehavior: OriginAccessControlSigningBehaviors | undefined;
|
|
1746
1752
|
OriginAccessControlOriginType: OriginAccessControlOriginTypes | undefined;
|
|
@@ -1750,17 +1756,17 @@ export interface CreateOriginAccessControlRequest {
|
|
|
1750
1756
|
}
|
|
1751
1757
|
export interface OriginAccessControl {
|
|
1752
1758
|
Id: string | undefined;
|
|
1753
|
-
OriginAccessControlConfig?: OriginAccessControlConfig;
|
|
1759
|
+
OriginAccessControlConfig?: OriginAccessControlConfig | undefined;
|
|
1754
1760
|
}
|
|
1755
1761
|
export interface CreateOriginAccessControlResult {
|
|
1756
|
-
OriginAccessControl?: OriginAccessControl;
|
|
1757
|
-
Location?: string;
|
|
1758
|
-
ETag?: string;
|
|
1762
|
+
OriginAccessControl?: OriginAccessControl | undefined;
|
|
1763
|
+
Location?: string | undefined;
|
|
1764
|
+
ETag?: string | undefined;
|
|
1759
1765
|
}
|
|
1760
1766
|
export declare class OriginAccessControlAlreadyExists extends __BaseException {
|
|
1761
1767
|
readonly name: "OriginAccessControlAlreadyExists";
|
|
1762
1768
|
readonly $fault: "client";
|
|
1763
|
-
Message?: string;
|
|
1769
|
+
Message?: string | undefined;
|
|
1764
1770
|
constructor(
|
|
1765
1771
|
opts: __ExceptionOptionType<
|
|
1766
1772
|
OriginAccessControlAlreadyExists,
|
|
@@ -1771,7 +1777,7 @@ export declare class OriginAccessControlAlreadyExists extends __BaseException {
|
|
|
1771
1777
|
export declare class TooManyOriginAccessControls extends __BaseException {
|
|
1772
1778
|
readonly name: "TooManyOriginAccessControls";
|
|
1773
1779
|
readonly $fault: "client";
|
|
1774
|
-
Message?: string;
|
|
1780
|
+
Message?: string | undefined;
|
|
1775
1781
|
constructor(
|
|
1776
1782
|
opts: __ExceptionOptionType<TooManyOriginAccessControls, __BaseException>
|
|
1777
1783
|
);
|
|
@@ -1786,7 +1792,7 @@ export type OriginRequestPolicyCookieBehavior =
|
|
|
1786
1792
|
(typeof OriginRequestPolicyCookieBehavior)[keyof typeof OriginRequestPolicyCookieBehavior];
|
|
1787
1793
|
export interface OriginRequestPolicyCookiesConfig {
|
|
1788
1794
|
CookieBehavior: OriginRequestPolicyCookieBehavior | undefined;
|
|
1789
|
-
Cookies?: CookieNames;
|
|
1795
|
+
Cookies?: CookieNames | undefined;
|
|
1790
1796
|
}
|
|
1791
1797
|
export declare const OriginRequestPolicyHeaderBehavior: {
|
|
1792
1798
|
readonly allExcept: "allExcept";
|
|
@@ -1799,7 +1805,7 @@ export type OriginRequestPolicyHeaderBehavior =
|
|
|
1799
1805
|
(typeof OriginRequestPolicyHeaderBehavior)[keyof typeof OriginRequestPolicyHeaderBehavior];
|
|
1800
1806
|
export interface OriginRequestPolicyHeadersConfig {
|
|
1801
1807
|
HeaderBehavior: OriginRequestPolicyHeaderBehavior | undefined;
|
|
1802
|
-
Headers?: Headers;
|
|
1808
|
+
Headers?: Headers | undefined;
|
|
1803
1809
|
}
|
|
1804
1810
|
export declare const OriginRequestPolicyQueryStringBehavior: {
|
|
1805
1811
|
readonly all: "all";
|
|
@@ -1811,10 +1817,10 @@ export type OriginRequestPolicyQueryStringBehavior =
|
|
|
1811
1817
|
(typeof OriginRequestPolicyQueryStringBehavior)[keyof typeof OriginRequestPolicyQueryStringBehavior];
|
|
1812
1818
|
export interface OriginRequestPolicyQueryStringsConfig {
|
|
1813
1819
|
QueryStringBehavior: OriginRequestPolicyQueryStringBehavior | undefined;
|
|
1814
|
-
QueryStrings?: QueryStringNames;
|
|
1820
|
+
QueryStrings?: QueryStringNames | undefined;
|
|
1815
1821
|
}
|
|
1816
1822
|
export interface OriginRequestPolicyConfig {
|
|
1817
|
-
Comment?: string;
|
|
1823
|
+
Comment?: string | undefined;
|
|
1818
1824
|
Name: string | undefined;
|
|
1819
1825
|
HeadersConfig: OriginRequestPolicyHeadersConfig | undefined;
|
|
1820
1826
|
CookiesConfig: OriginRequestPolicyCookiesConfig | undefined;
|
|
@@ -1829,14 +1835,14 @@ export interface OriginRequestPolicy {
|
|
|
1829
1835
|
OriginRequestPolicyConfig: OriginRequestPolicyConfig | undefined;
|
|
1830
1836
|
}
|
|
1831
1837
|
export interface CreateOriginRequestPolicyResult {
|
|
1832
|
-
OriginRequestPolicy?: OriginRequestPolicy;
|
|
1833
|
-
Location?: string;
|
|
1834
|
-
ETag?: string;
|
|
1838
|
+
OriginRequestPolicy?: OriginRequestPolicy | undefined;
|
|
1839
|
+
Location?: string | undefined;
|
|
1840
|
+
ETag?: string | undefined;
|
|
1835
1841
|
}
|
|
1836
1842
|
export declare class OriginRequestPolicyAlreadyExists extends __BaseException {
|
|
1837
1843
|
readonly name: "OriginRequestPolicyAlreadyExists";
|
|
1838
1844
|
readonly $fault: "client";
|
|
1839
|
-
Message?: string;
|
|
1845
|
+
Message?: string | undefined;
|
|
1840
1846
|
constructor(
|
|
1841
1847
|
opts: __ExceptionOptionType<
|
|
1842
1848
|
OriginRequestPolicyAlreadyExists,
|
|
@@ -1847,7 +1853,7 @@ export declare class OriginRequestPolicyAlreadyExists extends __BaseException {
|
|
|
1847
1853
|
export declare class TooManyCookiesInOriginRequestPolicy extends __BaseException {
|
|
1848
1854
|
readonly name: "TooManyCookiesInOriginRequestPolicy";
|
|
1849
1855
|
readonly $fault: "client";
|
|
1850
|
-
Message?: string;
|
|
1856
|
+
Message?: string | undefined;
|
|
1851
1857
|
constructor(
|
|
1852
1858
|
opts: __ExceptionOptionType<
|
|
1853
1859
|
TooManyCookiesInOriginRequestPolicy,
|
|
@@ -1858,7 +1864,7 @@ export declare class TooManyCookiesInOriginRequestPolicy extends __BaseException
|
|
|
1858
1864
|
export declare class TooManyHeadersInOriginRequestPolicy extends __BaseException {
|
|
1859
1865
|
readonly name: "TooManyHeadersInOriginRequestPolicy";
|
|
1860
1866
|
readonly $fault: "client";
|
|
1861
|
-
Message?: string;
|
|
1867
|
+
Message?: string | undefined;
|
|
1862
1868
|
constructor(
|
|
1863
1869
|
opts: __ExceptionOptionType<
|
|
1864
1870
|
TooManyHeadersInOriginRequestPolicy,
|
|
@@ -1869,7 +1875,7 @@ export declare class TooManyHeadersInOriginRequestPolicy extends __BaseException
|
|
|
1869
1875
|
export declare class TooManyOriginRequestPolicies extends __BaseException {
|
|
1870
1876
|
readonly name: "TooManyOriginRequestPolicies";
|
|
1871
1877
|
readonly $fault: "client";
|
|
1872
|
-
Message?: string;
|
|
1878
|
+
Message?: string | undefined;
|
|
1873
1879
|
constructor(
|
|
1874
1880
|
opts: __ExceptionOptionType<TooManyOriginRequestPolicies, __BaseException>
|
|
1875
1881
|
);
|
|
@@ -1877,7 +1883,7 @@ export declare class TooManyOriginRequestPolicies extends __BaseException {
|
|
|
1877
1883
|
export declare class TooManyQueryStringsInOriginRequestPolicy extends __BaseException {
|
|
1878
1884
|
readonly name: "TooManyQueryStringsInOriginRequestPolicy";
|
|
1879
1885
|
readonly $fault: "client";
|
|
1880
|
-
Message?: string;
|
|
1886
|
+
Message?: string | undefined;
|
|
1881
1887
|
constructor(
|
|
1882
1888
|
opts: __ExceptionOptionType<
|
|
1883
1889
|
TooManyQueryStringsInOriginRequestPolicy,
|
|
@@ -1889,7 +1895,7 @@ export interface PublicKeyConfig {
|
|
|
1889
1895
|
CallerReference: string | undefined;
|
|
1890
1896
|
Name: string | undefined;
|
|
1891
1897
|
EncodedKey: string | undefined;
|
|
1892
|
-
Comment?: string;
|
|
1898
|
+
Comment?: string | undefined;
|
|
1893
1899
|
}
|
|
1894
1900
|
export interface CreatePublicKeyRequest {
|
|
1895
1901
|
PublicKeyConfig: PublicKeyConfig | undefined;
|
|
@@ -1900,14 +1906,14 @@ export interface PublicKey {
|
|
|
1900
1906
|
PublicKeyConfig: PublicKeyConfig | undefined;
|
|
1901
1907
|
}
|
|
1902
1908
|
export interface CreatePublicKeyResult {
|
|
1903
|
-
PublicKey?: PublicKey;
|
|
1904
|
-
Location?: string;
|
|
1905
|
-
ETag?: string;
|
|
1909
|
+
PublicKey?: PublicKey | undefined;
|
|
1910
|
+
Location?: string | undefined;
|
|
1911
|
+
ETag?: string | undefined;
|
|
1906
1912
|
}
|
|
1907
1913
|
export declare class PublicKeyAlreadyExists extends __BaseException {
|
|
1908
1914
|
readonly name: "PublicKeyAlreadyExists";
|
|
1909
1915
|
readonly $fault: "client";
|
|
1910
|
-
Message?: string;
|
|
1916
|
+
Message?: string | undefined;
|
|
1911
1917
|
constructor(
|
|
1912
1918
|
opts: __ExceptionOptionType<PublicKeyAlreadyExists, __BaseException>
|
|
1913
1919
|
);
|
|
@@ -1915,7 +1921,7 @@ export declare class PublicKeyAlreadyExists extends __BaseException {
|
|
|
1915
1921
|
export declare class TooManyPublicKeys extends __BaseException {
|
|
1916
1922
|
readonly name: "TooManyPublicKeys";
|
|
1917
1923
|
readonly $fault: "client";
|
|
1918
|
-
Message?: string;
|
|
1924
|
+
Message?: string | undefined;
|
|
1919
1925
|
constructor(opts: __ExceptionOptionType<TooManyPublicKeys, __BaseException>);
|
|
1920
1926
|
}
|
|
1921
1927
|
export interface KinesisStreamConfig {
|
|
@@ -1924,7 +1930,7 @@ export interface KinesisStreamConfig {
|
|
|
1924
1930
|
}
|
|
1925
1931
|
export interface EndPoint {
|
|
1926
1932
|
StreamType: string | undefined;
|
|
1927
|
-
KinesisStreamConfig?: KinesisStreamConfig;
|
|
1933
|
+
KinesisStreamConfig?: KinesisStreamConfig | undefined;
|
|
1928
1934
|
}
|
|
1929
1935
|
export interface CreateRealtimeLogConfigRequest {
|
|
1930
1936
|
EndPoints: EndPoint[] | undefined;
|
|
@@ -1940,12 +1946,12 @@ export interface RealtimeLogConfig {
|
|
|
1940
1946
|
Fields: string[] | undefined;
|
|
1941
1947
|
}
|
|
1942
1948
|
export interface CreateRealtimeLogConfigResult {
|
|
1943
|
-
RealtimeLogConfig?: RealtimeLogConfig;
|
|
1949
|
+
RealtimeLogConfig?: RealtimeLogConfig | undefined;
|
|
1944
1950
|
}
|
|
1945
1951
|
export declare class RealtimeLogConfigAlreadyExists extends __BaseException {
|
|
1946
1952
|
readonly name: "RealtimeLogConfigAlreadyExists";
|
|
1947
1953
|
readonly $fault: "client";
|
|
1948
|
-
Message?: string;
|
|
1954
|
+
Message?: string | undefined;
|
|
1949
1955
|
constructor(
|
|
1950
1956
|
opts: __ExceptionOptionType<RealtimeLogConfigAlreadyExists, __BaseException>
|
|
1951
1957
|
);
|
|
@@ -1953,7 +1959,7 @@ export declare class RealtimeLogConfigAlreadyExists extends __BaseException {
|
|
|
1953
1959
|
export declare class TooManyRealtimeLogConfigs extends __BaseException {
|
|
1954
1960
|
readonly name: "TooManyRealtimeLogConfigs";
|
|
1955
1961
|
readonly $fault: "client";
|
|
1956
|
-
Message?: string;
|
|
1962
|
+
Message?: string | undefined;
|
|
1957
1963
|
constructor(
|
|
1958
1964
|
opts: __ExceptionOptionType<TooManyRealtimeLogConfigs, __BaseException>
|
|
1959
1965
|
);
|
|
@@ -1972,7 +1978,7 @@ export interface ResponseHeadersPolicyAccessControlAllowOrigins {
|
|
|
1972
1978
|
}
|
|
1973
1979
|
export interface ResponseHeadersPolicyAccessControlExposeHeaders {
|
|
1974
1980
|
Quantity: number | undefined;
|
|
1975
|
-
Items?: string[];
|
|
1981
|
+
Items?: string[] | undefined;
|
|
1976
1982
|
}
|
|
1977
1983
|
export interface ResponseHeadersPolicyCorsConfig {
|
|
1978
1984
|
AccessControlAllowOrigins:
|
|
@@ -1985,8 +1991,10 @@ export interface ResponseHeadersPolicyCorsConfig {
|
|
|
1985
1991
|
| ResponseHeadersPolicyAccessControlAllowMethods
|
|
1986
1992
|
| undefined;
|
|
1987
1993
|
AccessControlAllowCredentials: boolean | undefined;
|
|
1988
|
-
AccessControlExposeHeaders?:
|
|
1989
|
-
|
|
1994
|
+
AccessControlExposeHeaders?:
|
|
1995
|
+
| ResponseHeadersPolicyAccessControlExposeHeaders
|
|
1996
|
+
| undefined;
|
|
1997
|
+
AccessControlMaxAgeSec?: number | undefined;
|
|
1990
1998
|
OriginOverride: boolean | undefined;
|
|
1991
1999
|
}
|
|
1992
2000
|
export interface ResponseHeadersPolicyCustomHeader {
|
|
@@ -1996,14 +2004,14 @@ export interface ResponseHeadersPolicyCustomHeader {
|
|
|
1996
2004
|
}
|
|
1997
2005
|
export interface ResponseHeadersPolicyCustomHeadersConfig {
|
|
1998
2006
|
Quantity: number | undefined;
|
|
1999
|
-
Items?: ResponseHeadersPolicyCustomHeader[];
|
|
2007
|
+
Items?: ResponseHeadersPolicyCustomHeader[] | undefined;
|
|
2000
2008
|
}
|
|
2001
2009
|
export interface ResponseHeadersPolicyRemoveHeader {
|
|
2002
2010
|
Header: string | undefined;
|
|
2003
2011
|
}
|
|
2004
2012
|
export interface ResponseHeadersPolicyRemoveHeadersConfig {
|
|
2005
2013
|
Quantity: number | undefined;
|
|
2006
|
-
Items?: ResponseHeadersPolicyRemoveHeader[];
|
|
2014
|
+
Items?: ResponseHeadersPolicyRemoveHeader[] | undefined;
|
|
2007
2015
|
}
|
|
2008
2016
|
export interface ResponseHeadersPolicyContentSecurityPolicy {
|
|
2009
2017
|
Override: boolean | undefined;
|