@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.
@@ -85,36 +85,44 @@ export interface ResponseHeadersPolicyReferrerPolicy {
85
85
  }
86
86
  export interface ResponseHeadersPolicyStrictTransportSecurity {
87
87
  Override: boolean | undefined;
88
- IncludeSubdomains?: boolean;
89
- Preload?: boolean;
88
+ IncludeSubdomains?: boolean | undefined;
89
+ Preload?: boolean | undefined;
90
90
  AccessControlMaxAgeSec: number | undefined;
91
91
  }
92
92
  export interface ResponseHeadersPolicyXSSProtection {
93
93
  Override: boolean | undefined;
94
94
  Protection: boolean | undefined;
95
- ModeBlock?: boolean;
96
- ReportUri?: string;
95
+ ModeBlock?: boolean | undefined;
96
+ ReportUri?: string | undefined;
97
97
  }
98
98
  export interface ResponseHeadersPolicySecurityHeadersConfig {
99
- XSSProtection?: ResponseHeadersPolicyXSSProtection;
100
- FrameOptions?: ResponseHeadersPolicyFrameOptions;
101
- ReferrerPolicy?: ResponseHeadersPolicyReferrerPolicy;
102
- ContentSecurityPolicy?: ResponseHeadersPolicyContentSecurityPolicy;
103
- ContentTypeOptions?: ResponseHeadersPolicyContentTypeOptions;
104
- StrictTransportSecurity?: ResponseHeadersPolicyStrictTransportSecurity;
99
+ XSSProtection?: ResponseHeadersPolicyXSSProtection | undefined;
100
+ FrameOptions?: ResponseHeadersPolicyFrameOptions | undefined;
101
+ ReferrerPolicy?: ResponseHeadersPolicyReferrerPolicy | undefined;
102
+ ContentSecurityPolicy?:
103
+ | ResponseHeadersPolicyContentSecurityPolicy
104
+ | undefined;
105
+ ContentTypeOptions?: ResponseHeadersPolicyContentTypeOptions | undefined;
106
+ StrictTransportSecurity?:
107
+ | ResponseHeadersPolicyStrictTransportSecurity
108
+ | undefined;
105
109
  }
106
110
  export interface ResponseHeadersPolicyServerTimingHeadersConfig {
107
111
  Enabled: boolean | undefined;
108
- SamplingRate?: number;
112
+ SamplingRate?: number | undefined;
109
113
  }
110
114
  export interface ResponseHeadersPolicyConfig {
111
- Comment?: string;
115
+ Comment?: string | undefined;
112
116
  Name: string | undefined;
113
- CorsConfig?: ResponseHeadersPolicyCorsConfig;
114
- SecurityHeadersConfig?: ResponseHeadersPolicySecurityHeadersConfig;
115
- ServerTimingHeadersConfig?: ResponseHeadersPolicyServerTimingHeadersConfig;
116
- CustomHeadersConfig?: ResponseHeadersPolicyCustomHeadersConfig;
117
- RemoveHeadersConfig?: ResponseHeadersPolicyRemoveHeadersConfig;
117
+ CorsConfig?: ResponseHeadersPolicyCorsConfig | undefined;
118
+ SecurityHeadersConfig?:
119
+ | ResponseHeadersPolicySecurityHeadersConfig
120
+ | undefined;
121
+ ServerTimingHeadersConfig?:
122
+ | ResponseHeadersPolicyServerTimingHeadersConfig
123
+ | undefined;
124
+ CustomHeadersConfig?: ResponseHeadersPolicyCustomHeadersConfig | undefined;
125
+ RemoveHeadersConfig?: ResponseHeadersPolicyRemoveHeadersConfig | undefined;
118
126
  }
119
127
  export interface CreateResponseHeadersPolicyRequest {
120
128
  ResponseHeadersPolicyConfig: ResponseHeadersPolicyConfig | undefined;
@@ -125,14 +133,14 @@ export interface ResponseHeadersPolicy {
125
133
  ResponseHeadersPolicyConfig: ResponseHeadersPolicyConfig | undefined;
126
134
  }
127
135
  export interface CreateResponseHeadersPolicyResult {
128
- ResponseHeadersPolicy?: ResponseHeadersPolicy;
129
- Location?: string;
130
- ETag?: string;
136
+ ResponseHeadersPolicy?: ResponseHeadersPolicy | undefined;
137
+ Location?: string | undefined;
138
+ ETag?: string | undefined;
131
139
  }
132
140
  export declare class ResponseHeadersPolicyAlreadyExists extends __BaseException {
133
141
  readonly name: "ResponseHeadersPolicyAlreadyExists";
134
142
  readonly $fault: "client";
135
- Message?: string;
143
+ Message?: string | undefined;
136
144
  constructor(
137
145
  opts: __ExceptionOptionType<
138
146
  ResponseHeadersPolicyAlreadyExists,
@@ -143,7 +151,7 @@ export declare class ResponseHeadersPolicyAlreadyExists extends __BaseException
143
151
  export declare class TooLongCSPInResponseHeadersPolicy extends __BaseException {
144
152
  readonly name: "TooLongCSPInResponseHeadersPolicy";
145
153
  readonly $fault: "client";
146
- Message?: string;
154
+ Message?: string | undefined;
147
155
  constructor(
148
156
  opts: __ExceptionOptionType<
149
157
  TooLongCSPInResponseHeadersPolicy,
@@ -154,7 +162,7 @@ export declare class TooLongCSPInResponseHeadersPolicy extends __BaseException {
154
162
  export declare class TooManyCustomHeadersInResponseHeadersPolicy extends __BaseException {
155
163
  readonly name: "TooManyCustomHeadersInResponseHeadersPolicy";
156
164
  readonly $fault: "client";
157
- Message?: string;
165
+ Message?: string | undefined;
158
166
  constructor(
159
167
  opts: __ExceptionOptionType<
160
168
  TooManyCustomHeadersInResponseHeadersPolicy,
@@ -165,7 +173,7 @@ export declare class TooManyCustomHeadersInResponseHeadersPolicy extends __BaseE
165
173
  export declare class TooManyRemoveHeadersInResponseHeadersPolicy extends __BaseException {
166
174
  readonly name: "TooManyRemoveHeadersInResponseHeadersPolicy";
167
175
  readonly $fault: "client";
168
- Message?: string;
176
+ Message?: string | undefined;
169
177
  constructor(
170
178
  opts: __ExceptionOptionType<
171
179
  TooManyRemoveHeadersInResponseHeadersPolicy,
@@ -176,7 +184,7 @@ export declare class TooManyRemoveHeadersInResponseHeadersPolicy extends __BaseE
176
184
  export declare class TooManyResponseHeadersPolicies extends __BaseException {
177
185
  readonly name: "TooManyResponseHeadersPolicies";
178
186
  readonly $fault: "client";
179
- Message?: string;
187
+ Message?: string | undefined;
180
188
  constructor(
181
189
  opts: __ExceptionOptionType<TooManyResponseHeadersPolicies, __BaseException>
182
190
  );
@@ -193,11 +201,11 @@ export interface S3Origin {
193
201
  export interface StreamingDistributionConfig {
194
202
  CallerReference: string | undefined;
195
203
  S3Origin: S3Origin | undefined;
196
- Aliases?: Aliases;
204
+ Aliases?: Aliases | undefined;
197
205
  Comment: string | undefined;
198
- Logging?: StreamingLoggingConfig;
206
+ Logging?: StreamingLoggingConfig | undefined;
199
207
  TrustedSigners: TrustedSigners | undefined;
200
- PriceClass?: PriceClass;
208
+ PriceClass?: PriceClass | undefined;
201
209
  Enabled: boolean | undefined;
202
210
  }
203
211
  export interface CreateStreamingDistributionRequest {
@@ -207,20 +215,20 @@ export interface StreamingDistribution {
207
215
  Id: string | undefined;
208
216
  ARN: string | undefined;
209
217
  Status: string | undefined;
210
- LastModifiedTime?: Date;
218
+ LastModifiedTime?: Date | undefined;
211
219
  DomainName: string | undefined;
212
220
  ActiveTrustedSigners: ActiveTrustedSigners | undefined;
213
221
  StreamingDistributionConfig: StreamingDistributionConfig | undefined;
214
222
  }
215
223
  export interface CreateStreamingDistributionResult {
216
- StreamingDistribution?: StreamingDistribution;
217
- Location?: string;
218
- ETag?: string;
224
+ StreamingDistribution?: StreamingDistribution | undefined;
225
+ Location?: string | undefined;
226
+ ETag?: string | undefined;
219
227
  }
220
228
  export declare class StreamingDistributionAlreadyExists extends __BaseException {
221
229
  readonly name: "StreamingDistributionAlreadyExists";
222
230
  readonly $fault: "client";
223
- Message?: string;
231
+ Message?: string | undefined;
224
232
  constructor(
225
233
  opts: __ExceptionOptionType<
226
234
  StreamingDistributionAlreadyExists,
@@ -231,7 +239,7 @@ export declare class StreamingDistributionAlreadyExists extends __BaseException
231
239
  export declare class TooManyStreamingDistributionCNAMEs extends __BaseException {
232
240
  readonly name: "TooManyStreamingDistributionCNAMEs";
233
241
  readonly $fault: "client";
234
- Message?: string;
242
+ Message?: string | undefined;
235
243
  constructor(
236
244
  opts: __ExceptionOptionType<
237
245
  TooManyStreamingDistributionCNAMEs,
@@ -242,7 +250,7 @@ export declare class TooManyStreamingDistributionCNAMEs extends __BaseException
242
250
  export declare class TooManyStreamingDistributions extends __BaseException {
243
251
  readonly name: "TooManyStreamingDistributions";
244
252
  readonly $fault: "client";
245
- Message?: string;
253
+ Message?: string | undefined;
246
254
  constructor(
247
255
  opts: __ExceptionOptionType<TooManyStreamingDistributions, __BaseException>
248
256
  );
@@ -257,24 +265,24 @@ export interface CreateStreamingDistributionWithTagsRequest {
257
265
  | undefined;
258
266
  }
259
267
  export interface CreateStreamingDistributionWithTagsResult {
260
- StreamingDistribution?: StreamingDistribution;
261
- Location?: string;
262
- ETag?: string;
268
+ StreamingDistribution?: StreamingDistribution | undefined;
269
+ Location?: string | undefined;
270
+ ETag?: string | undefined;
263
271
  }
264
272
  export interface DeleteCachePolicyRequest {
265
273
  Id: string | undefined;
266
- IfMatch?: string;
274
+ IfMatch?: string | undefined;
267
275
  }
268
276
  export declare class IllegalDelete extends __BaseException {
269
277
  readonly name: "IllegalDelete";
270
278
  readonly $fault: "client";
271
- Message?: string;
279
+ Message?: string | undefined;
272
280
  constructor(opts: __ExceptionOptionType<IllegalDelete, __BaseException>);
273
281
  }
274
282
  export declare class CloudFrontOriginAccessIdentityInUse extends __BaseException {
275
283
  readonly name: "CloudFrontOriginAccessIdentityInUse";
276
284
  readonly $fault: "client";
277
- Message?: string;
285
+ Message?: string | undefined;
278
286
  constructor(
279
287
  opts: __ExceptionOptionType<
280
288
  CloudFrontOriginAccessIdentityInUse,
@@ -284,12 +292,12 @@ export declare class CloudFrontOriginAccessIdentityInUse extends __BaseException
284
292
  }
285
293
  export interface DeleteCloudFrontOriginAccessIdentityRequest {
286
294
  Id: string | undefined;
287
- IfMatch?: string;
295
+ IfMatch?: string | undefined;
288
296
  }
289
297
  export declare class NoSuchCloudFrontOriginAccessIdentity extends __BaseException {
290
298
  readonly name: "NoSuchCloudFrontOriginAccessIdentity";
291
299
  readonly $fault: "client";
292
- Message?: string;
300
+ Message?: string | undefined;
293
301
  constructor(
294
302
  opts: __ExceptionOptionType<
295
303
  NoSuchCloudFrontOriginAccessIdentity,
@@ -299,28 +307,28 @@ export declare class NoSuchCloudFrontOriginAccessIdentity extends __BaseExceptio
299
307
  }
300
308
  export interface DeleteContinuousDeploymentPolicyRequest {
301
309
  Id: string | undefined;
302
- IfMatch?: string;
310
+ IfMatch?: string | undefined;
303
311
  }
304
312
  export interface DeleteDistributionRequest {
305
313
  Id: string | undefined;
306
- IfMatch?: string;
314
+ IfMatch?: string | undefined;
307
315
  }
308
316
  export declare class DistributionNotDisabled extends __BaseException {
309
317
  readonly name: "DistributionNotDisabled";
310
318
  readonly $fault: "client";
311
- Message?: string;
319
+ Message?: string | undefined;
312
320
  constructor(
313
321
  opts: __ExceptionOptionType<DistributionNotDisabled, __BaseException>
314
322
  );
315
323
  }
316
324
  export interface DeleteFieldLevelEncryptionConfigRequest {
317
325
  Id: string | undefined;
318
- IfMatch?: string;
326
+ IfMatch?: string | undefined;
319
327
  }
320
328
  export declare class FieldLevelEncryptionConfigInUse extends __BaseException {
321
329
  readonly name: "FieldLevelEncryptionConfigInUse";
322
330
  readonly $fault: "client";
323
- Message?: string;
331
+ Message?: string | undefined;
324
332
  constructor(
325
333
  opts: __ExceptionOptionType<
326
334
  FieldLevelEncryptionConfigInUse,
@@ -330,12 +338,12 @@ export declare class FieldLevelEncryptionConfigInUse extends __BaseException {
330
338
  }
331
339
  export interface DeleteFieldLevelEncryptionProfileRequest {
332
340
  Id: string | undefined;
333
- IfMatch?: string;
341
+ IfMatch?: string | undefined;
334
342
  }
335
343
  export declare class FieldLevelEncryptionProfileInUse extends __BaseException {
336
344
  readonly name: "FieldLevelEncryptionProfileInUse";
337
345
  readonly $fault: "client";
338
- Message?: string;
346
+ Message?: string | undefined;
339
347
  constructor(
340
348
  opts: __ExceptionOptionType<
341
349
  FieldLevelEncryptionProfileInUse,
@@ -350,31 +358,31 @@ export interface DeleteFunctionRequest {
350
358
  export declare class FunctionInUse extends __BaseException {
351
359
  readonly name: "FunctionInUse";
352
360
  readonly $fault: "client";
353
- Message?: string;
361
+ Message?: string | undefined;
354
362
  constructor(opts: __ExceptionOptionType<FunctionInUse, __BaseException>);
355
363
  }
356
364
  export declare class NoSuchFunctionExists extends __BaseException {
357
365
  readonly name: "NoSuchFunctionExists";
358
366
  readonly $fault: "client";
359
- Message?: string;
367
+ Message?: string | undefined;
360
368
  constructor(
361
369
  opts: __ExceptionOptionType<NoSuchFunctionExists, __BaseException>
362
370
  );
363
371
  }
364
372
  export interface DeleteKeyGroupRequest {
365
373
  Id: string | undefined;
366
- IfMatch?: string;
374
+ IfMatch?: string | undefined;
367
375
  }
368
376
  export declare class NoSuchResource extends __BaseException {
369
377
  readonly name: "NoSuchResource";
370
378
  readonly $fault: "client";
371
- Message?: string;
379
+ Message?: string | undefined;
372
380
  constructor(opts: __ExceptionOptionType<NoSuchResource, __BaseException>);
373
381
  }
374
382
  export declare class ResourceInUse extends __BaseException {
375
383
  readonly name: "ResourceInUse";
376
384
  readonly $fault: "client";
377
- Message?: string;
385
+ Message?: string | undefined;
378
386
  constructor(opts: __ExceptionOptionType<ResourceInUse, __BaseException>);
379
387
  }
380
388
  export interface DeleteKeyValueStoreRequest {
@@ -384,7 +392,7 @@ export interface DeleteKeyValueStoreRequest {
384
392
  export declare class EntityNotFound extends __BaseException {
385
393
  readonly name: "EntityNotFound";
386
394
  readonly $fault: "client";
387
- Message?: string;
395
+ Message?: string | undefined;
388
396
  constructor(opts: __ExceptionOptionType<EntityNotFound, __BaseException>);
389
397
  }
390
398
  export interface DeleteMonitoringSubscriptionRequest {
@@ -394,19 +402,19 @@ export interface DeleteMonitoringSubscriptionResult {}
394
402
  export declare class NoSuchMonitoringSubscription extends __BaseException {
395
403
  readonly name: "NoSuchMonitoringSubscription";
396
404
  readonly $fault: "client";
397
- Message?: string;
405
+ Message?: string | undefined;
398
406
  constructor(
399
407
  opts: __ExceptionOptionType<NoSuchMonitoringSubscription, __BaseException>
400
408
  );
401
409
  }
402
410
  export interface DeleteOriginAccessControlRequest {
403
411
  Id: string | undefined;
404
- IfMatch?: string;
412
+ IfMatch?: string | undefined;
405
413
  }
406
414
  export declare class NoSuchOriginAccessControl extends __BaseException {
407
415
  readonly name: "NoSuchOriginAccessControl";
408
416
  readonly $fault: "client";
409
- Message?: string;
417
+ Message?: string | undefined;
410
418
  constructor(
411
419
  opts: __ExceptionOptionType<NoSuchOriginAccessControl, __BaseException>
412
420
  );
@@ -414,65 +422,65 @@ export declare class NoSuchOriginAccessControl extends __BaseException {
414
422
  export declare class OriginAccessControlInUse extends __BaseException {
415
423
  readonly name: "OriginAccessControlInUse";
416
424
  readonly $fault: "client";
417
- Message?: string;
425
+ Message?: string | undefined;
418
426
  constructor(
419
427
  opts: __ExceptionOptionType<OriginAccessControlInUse, __BaseException>
420
428
  );
421
429
  }
422
430
  export interface DeleteOriginRequestPolicyRequest {
423
431
  Id: string | undefined;
424
- IfMatch?: string;
432
+ IfMatch?: string | undefined;
425
433
  }
426
434
  export declare class OriginRequestPolicyInUse extends __BaseException {
427
435
  readonly name: "OriginRequestPolicyInUse";
428
436
  readonly $fault: "client";
429
- Message?: string;
437
+ Message?: string | undefined;
430
438
  constructor(
431
439
  opts: __ExceptionOptionType<OriginRequestPolicyInUse, __BaseException>
432
440
  );
433
441
  }
434
442
  export interface DeletePublicKeyRequest {
435
443
  Id: string | undefined;
436
- IfMatch?: string;
444
+ IfMatch?: string | undefined;
437
445
  }
438
446
  export declare class PublicKeyInUse extends __BaseException {
439
447
  readonly name: "PublicKeyInUse";
440
448
  readonly $fault: "client";
441
- Message?: string;
449
+ Message?: string | undefined;
442
450
  constructor(opts: __ExceptionOptionType<PublicKeyInUse, __BaseException>);
443
451
  }
444
452
  export interface DeleteRealtimeLogConfigRequest {
445
- Name?: string;
446
- ARN?: string;
453
+ Name?: string | undefined;
454
+ ARN?: string | undefined;
447
455
  }
448
456
  export declare class RealtimeLogConfigInUse extends __BaseException {
449
457
  readonly name: "RealtimeLogConfigInUse";
450
458
  readonly $fault: "client";
451
- Message?: string;
459
+ Message?: string | undefined;
452
460
  constructor(
453
461
  opts: __ExceptionOptionType<RealtimeLogConfigInUse, __BaseException>
454
462
  );
455
463
  }
456
464
  export interface DeleteResponseHeadersPolicyRequest {
457
465
  Id: string | undefined;
458
- IfMatch?: string;
466
+ IfMatch?: string | undefined;
459
467
  }
460
468
  export declare class ResponseHeadersPolicyInUse extends __BaseException {
461
469
  readonly name: "ResponseHeadersPolicyInUse";
462
470
  readonly $fault: "client";
463
- Message?: string;
471
+ Message?: string | undefined;
464
472
  constructor(
465
473
  opts: __ExceptionOptionType<ResponseHeadersPolicyInUse, __BaseException>
466
474
  );
467
475
  }
468
476
  export interface DeleteStreamingDistributionRequest {
469
477
  Id: string | undefined;
470
- IfMatch?: string;
478
+ IfMatch?: string | undefined;
471
479
  }
472
480
  export declare class NoSuchStreamingDistribution extends __BaseException {
473
481
  readonly name: "NoSuchStreamingDistribution";
474
482
  readonly $fault: "client";
475
- Message?: string;
483
+ Message?: string | undefined;
476
484
  constructor(
477
485
  opts: __ExceptionOptionType<NoSuchStreamingDistribution, __BaseException>
478
486
  );
@@ -480,7 +488,7 @@ export declare class NoSuchStreamingDistribution extends __BaseException {
480
488
  export declare class StreamingDistributionNotDisabled extends __BaseException {
481
489
  readonly name: "StreamingDistributionNotDisabled";
482
490
  readonly $fault: "client";
483
- Message?: string;
491
+ Message?: string | undefined;
484
492
  constructor(
485
493
  opts: __ExceptionOptionType<
486
494
  StreamingDistributionNotDisabled,
@@ -490,233 +498,239 @@ export declare class StreamingDistributionNotDisabled extends __BaseException {
490
498
  }
491
499
  export interface DescribeFunctionRequest {
492
500
  Name: string | undefined;
493
- Stage?: FunctionStage;
501
+ Stage?: FunctionStage | undefined;
494
502
  }
495
503
  export interface DescribeFunctionResult {
496
- FunctionSummary?: FunctionSummary;
497
- ETag?: string;
504
+ FunctionSummary?: FunctionSummary | undefined;
505
+ ETag?: string | undefined;
498
506
  }
499
507
  export interface DescribeKeyValueStoreRequest {
500
508
  Name: string | undefined;
501
509
  }
502
510
  export interface DescribeKeyValueStoreResult {
503
- KeyValueStore?: KeyValueStore;
504
- ETag?: string;
511
+ KeyValueStore?: KeyValueStore | undefined;
512
+ ETag?: string | undefined;
505
513
  }
506
514
  export interface GetCachePolicyRequest {
507
515
  Id: string | undefined;
508
516
  }
509
517
  export interface GetCachePolicyResult {
510
- CachePolicy?: CachePolicy;
511
- ETag?: string;
518
+ CachePolicy?: CachePolicy | undefined;
519
+ ETag?: string | undefined;
512
520
  }
513
521
  export interface GetCachePolicyConfigRequest {
514
522
  Id: string | undefined;
515
523
  }
516
524
  export interface GetCachePolicyConfigResult {
517
- CachePolicyConfig?: CachePolicyConfig;
518
- ETag?: string;
525
+ CachePolicyConfig?: CachePolicyConfig | undefined;
526
+ ETag?: string | undefined;
519
527
  }
520
528
  export interface GetCloudFrontOriginAccessIdentityRequest {
521
529
  Id: string | undefined;
522
530
  }
523
531
  export interface GetCloudFrontOriginAccessIdentityResult {
524
- CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity;
525
- ETag?: string;
532
+ CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity | undefined;
533
+ ETag?: string | undefined;
526
534
  }
527
535
  export interface GetCloudFrontOriginAccessIdentityConfigRequest {
528
536
  Id: string | undefined;
529
537
  }
530
538
  export interface GetCloudFrontOriginAccessIdentityConfigResult {
531
- CloudFrontOriginAccessIdentityConfig?: CloudFrontOriginAccessIdentityConfig;
532
- ETag?: string;
539
+ CloudFrontOriginAccessIdentityConfig?:
540
+ | CloudFrontOriginAccessIdentityConfig
541
+ | undefined;
542
+ ETag?: string | undefined;
533
543
  }
534
544
  export interface GetContinuousDeploymentPolicyRequest {
535
545
  Id: string | undefined;
536
546
  }
537
547
  export interface GetContinuousDeploymentPolicyResult {
538
- ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy;
539
- ETag?: string;
548
+ ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy | undefined;
549
+ ETag?: string | undefined;
540
550
  }
541
551
  export interface GetContinuousDeploymentPolicyConfigRequest {
542
552
  Id: string | undefined;
543
553
  }
544
554
  export interface GetContinuousDeploymentPolicyConfigResult {
545
- ContinuousDeploymentPolicyConfig?: ContinuousDeploymentPolicyConfig;
546
- ETag?: string;
555
+ ContinuousDeploymentPolicyConfig?:
556
+ | ContinuousDeploymentPolicyConfig
557
+ | undefined;
558
+ ETag?: string | undefined;
547
559
  }
548
560
  export interface GetDistributionRequest {
549
561
  Id: string | undefined;
550
562
  }
551
563
  export interface GetDistributionResult {
552
- Distribution?: Distribution;
553
- ETag?: string;
564
+ Distribution?: Distribution | undefined;
565
+ ETag?: string | undefined;
554
566
  }
555
567
  export interface GetDistributionConfigRequest {
556
568
  Id: string | undefined;
557
569
  }
558
570
  export interface GetDistributionConfigResult {
559
- DistributionConfig?: DistributionConfig;
560
- ETag?: string;
571
+ DistributionConfig?: DistributionConfig | undefined;
572
+ ETag?: string | undefined;
561
573
  }
562
574
  export interface GetFieldLevelEncryptionRequest {
563
575
  Id: string | undefined;
564
576
  }
565
577
  export interface GetFieldLevelEncryptionResult {
566
- FieldLevelEncryption?: FieldLevelEncryption;
567
- ETag?: string;
578
+ FieldLevelEncryption?: FieldLevelEncryption | undefined;
579
+ ETag?: string | undefined;
568
580
  }
569
581
  export interface GetFieldLevelEncryptionConfigRequest {
570
582
  Id: string | undefined;
571
583
  }
572
584
  export interface GetFieldLevelEncryptionConfigResult {
573
- FieldLevelEncryptionConfig?: FieldLevelEncryptionConfig;
574
- ETag?: string;
585
+ FieldLevelEncryptionConfig?: FieldLevelEncryptionConfig | undefined;
586
+ ETag?: string | undefined;
575
587
  }
576
588
  export interface GetFieldLevelEncryptionProfileRequest {
577
589
  Id: string | undefined;
578
590
  }
579
591
  export interface GetFieldLevelEncryptionProfileResult {
580
- FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile;
581
- ETag?: string;
592
+ FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile | undefined;
593
+ ETag?: string | undefined;
582
594
  }
583
595
  export interface GetFieldLevelEncryptionProfileConfigRequest {
584
596
  Id: string | undefined;
585
597
  }
586
598
  export interface GetFieldLevelEncryptionProfileConfigResult {
587
- FieldLevelEncryptionProfileConfig?: FieldLevelEncryptionProfileConfig;
588
- ETag?: string;
599
+ FieldLevelEncryptionProfileConfig?:
600
+ | FieldLevelEncryptionProfileConfig
601
+ | undefined;
602
+ ETag?: string | undefined;
589
603
  }
590
604
  export interface GetFunctionRequest {
591
605
  Name: string | undefined;
592
- Stage?: FunctionStage;
606
+ Stage?: FunctionStage | undefined;
593
607
  }
594
608
  export interface GetFunctionResult {
595
- FunctionCode?: Uint8Array;
596
- ETag?: string;
597
- ContentType?: string;
609
+ FunctionCode?: Uint8Array | undefined;
610
+ ETag?: string | undefined;
611
+ ContentType?: string | undefined;
598
612
  }
599
613
  export interface GetInvalidationRequest {
600
614
  DistributionId: string | undefined;
601
615
  Id: string | undefined;
602
616
  }
603
617
  export interface GetInvalidationResult {
604
- Invalidation?: Invalidation;
618
+ Invalidation?: Invalidation | undefined;
605
619
  }
606
620
  export declare class NoSuchInvalidation extends __BaseException {
607
621
  readonly name: "NoSuchInvalidation";
608
622
  readonly $fault: "client";
609
- Message?: string;
623
+ Message?: string | undefined;
610
624
  constructor(opts: __ExceptionOptionType<NoSuchInvalidation, __BaseException>);
611
625
  }
612
626
  export interface GetKeyGroupRequest {
613
627
  Id: string | undefined;
614
628
  }
615
629
  export interface GetKeyGroupResult {
616
- KeyGroup?: KeyGroup;
617
- ETag?: string;
630
+ KeyGroup?: KeyGroup | undefined;
631
+ ETag?: string | undefined;
618
632
  }
619
633
  export interface GetKeyGroupConfigRequest {
620
634
  Id: string | undefined;
621
635
  }
622
636
  export interface GetKeyGroupConfigResult {
623
- KeyGroupConfig?: KeyGroupConfig;
624
- ETag?: string;
637
+ KeyGroupConfig?: KeyGroupConfig | undefined;
638
+ ETag?: string | undefined;
625
639
  }
626
640
  export interface GetMonitoringSubscriptionRequest {
627
641
  DistributionId: string | undefined;
628
642
  }
629
643
  export interface GetMonitoringSubscriptionResult {
630
- MonitoringSubscription?: MonitoringSubscription;
644
+ MonitoringSubscription?: MonitoringSubscription | undefined;
631
645
  }
632
646
  export interface GetOriginAccessControlRequest {
633
647
  Id: string | undefined;
634
648
  }
635
649
  export interface GetOriginAccessControlResult {
636
- OriginAccessControl?: OriginAccessControl;
637
- ETag?: string;
650
+ OriginAccessControl?: OriginAccessControl | undefined;
651
+ ETag?: string | undefined;
638
652
  }
639
653
  export interface GetOriginAccessControlConfigRequest {
640
654
  Id: string | undefined;
641
655
  }
642
656
  export interface GetOriginAccessControlConfigResult {
643
- OriginAccessControlConfig?: OriginAccessControlConfig;
644
- ETag?: string;
657
+ OriginAccessControlConfig?: OriginAccessControlConfig | undefined;
658
+ ETag?: string | undefined;
645
659
  }
646
660
  export interface GetOriginRequestPolicyRequest {
647
661
  Id: string | undefined;
648
662
  }
649
663
  export interface GetOriginRequestPolicyResult {
650
- OriginRequestPolicy?: OriginRequestPolicy;
651
- ETag?: string;
664
+ OriginRequestPolicy?: OriginRequestPolicy | undefined;
665
+ ETag?: string | undefined;
652
666
  }
653
667
  export interface GetOriginRequestPolicyConfigRequest {
654
668
  Id: string | undefined;
655
669
  }
656
670
  export interface GetOriginRequestPolicyConfigResult {
657
- OriginRequestPolicyConfig?: OriginRequestPolicyConfig;
658
- ETag?: string;
671
+ OriginRequestPolicyConfig?: OriginRequestPolicyConfig | undefined;
672
+ ETag?: string | undefined;
659
673
  }
660
674
  export interface GetPublicKeyRequest {
661
675
  Id: string | undefined;
662
676
  }
663
677
  export interface GetPublicKeyResult {
664
- PublicKey?: PublicKey;
665
- ETag?: string;
678
+ PublicKey?: PublicKey | undefined;
679
+ ETag?: string | undefined;
666
680
  }
667
681
  export interface GetPublicKeyConfigRequest {
668
682
  Id: string | undefined;
669
683
  }
670
684
  export interface GetPublicKeyConfigResult {
671
- PublicKeyConfig?: PublicKeyConfig;
672
- ETag?: string;
685
+ PublicKeyConfig?: PublicKeyConfig | undefined;
686
+ ETag?: string | undefined;
673
687
  }
674
688
  export interface GetRealtimeLogConfigRequest {
675
- Name?: string;
676
- ARN?: string;
689
+ Name?: string | undefined;
690
+ ARN?: string | undefined;
677
691
  }
678
692
  export interface GetRealtimeLogConfigResult {
679
- RealtimeLogConfig?: RealtimeLogConfig;
693
+ RealtimeLogConfig?: RealtimeLogConfig | undefined;
680
694
  }
681
695
  export interface GetResponseHeadersPolicyRequest {
682
696
  Id: string | undefined;
683
697
  }
684
698
  export interface GetResponseHeadersPolicyResult {
685
- ResponseHeadersPolicy?: ResponseHeadersPolicy;
686
- ETag?: string;
699
+ ResponseHeadersPolicy?: ResponseHeadersPolicy | undefined;
700
+ ETag?: string | undefined;
687
701
  }
688
702
  export interface GetResponseHeadersPolicyConfigRequest {
689
703
  Id: string | undefined;
690
704
  }
691
705
  export interface GetResponseHeadersPolicyConfigResult {
692
- ResponseHeadersPolicyConfig?: ResponseHeadersPolicyConfig;
693
- ETag?: string;
706
+ ResponseHeadersPolicyConfig?: ResponseHeadersPolicyConfig | undefined;
707
+ ETag?: string | undefined;
694
708
  }
695
709
  export interface GetStreamingDistributionRequest {
696
710
  Id: string | undefined;
697
711
  }
698
712
  export interface GetStreamingDistributionResult {
699
- StreamingDistribution?: StreamingDistribution;
700
- ETag?: string;
713
+ StreamingDistribution?: StreamingDistribution | undefined;
714
+ ETag?: string | undefined;
701
715
  }
702
716
  export interface GetStreamingDistributionConfigRequest {
703
717
  Id: string | undefined;
704
718
  }
705
719
  export interface GetStreamingDistributionConfigResult {
706
- StreamingDistributionConfig?: StreamingDistributionConfig;
707
- ETag?: string;
720
+ StreamingDistributionConfig?: StreamingDistributionConfig | undefined;
721
+ ETag?: string | undefined;
708
722
  }
709
723
  export interface ListCachePoliciesRequest {
710
- Type?: CachePolicyType;
711
- Marker?: string;
712
- MaxItems?: number;
724
+ Type?: CachePolicyType | undefined;
725
+ Marker?: string | undefined;
726
+ MaxItems?: number | undefined;
713
727
  }
714
728
  export interface ListCachePoliciesResult {
715
- CachePolicyList?: CachePolicyList;
729
+ CachePolicyList?: CachePolicyList | undefined;
716
730
  }
717
731
  export interface ListCloudFrontOriginAccessIdentitiesRequest {
718
- Marker?: string;
719
- MaxItems?: number;
732
+ Marker?: string | undefined;
733
+ MaxItems?: number | undefined;
720
734
  }
721
735
  export interface CloudFrontOriginAccessIdentitySummary {
722
736
  Id: string | undefined;
@@ -725,54 +739,56 @@ export interface CloudFrontOriginAccessIdentitySummary {
725
739
  }
726
740
  export interface CloudFrontOriginAccessIdentityList {
727
741
  Marker: string | undefined;
728
- NextMarker?: string;
742
+ NextMarker?: string | undefined;
729
743
  MaxItems: number | undefined;
730
744
  IsTruncated: boolean | undefined;
731
745
  Quantity: number | undefined;
732
- Items?: CloudFrontOriginAccessIdentitySummary[];
746
+ Items?: CloudFrontOriginAccessIdentitySummary[] | undefined;
733
747
  }
734
748
  export interface ListCloudFrontOriginAccessIdentitiesResult {
735
- CloudFrontOriginAccessIdentityList?: CloudFrontOriginAccessIdentityList;
749
+ CloudFrontOriginAccessIdentityList?:
750
+ | CloudFrontOriginAccessIdentityList
751
+ | undefined;
736
752
  }
737
753
  export interface ListConflictingAliasesRequest {
738
754
  DistributionId: string | undefined;
739
755
  Alias: string | undefined;
740
- Marker?: string;
741
- MaxItems?: number;
756
+ Marker?: string | undefined;
757
+ MaxItems?: number | undefined;
742
758
  }
743
759
  export interface ConflictingAlias {
744
- Alias?: string;
745
- DistributionId?: string;
746
- AccountId?: string;
760
+ Alias?: string | undefined;
761
+ DistributionId?: string | undefined;
762
+ AccountId?: string | undefined;
747
763
  }
748
764
  export interface ConflictingAliasesList {
749
- NextMarker?: string;
750
- MaxItems?: number;
751
- Quantity?: number;
752
- Items?: ConflictingAlias[];
765
+ NextMarker?: string | undefined;
766
+ MaxItems?: number | undefined;
767
+ Quantity?: number | undefined;
768
+ Items?: ConflictingAlias[] | undefined;
753
769
  }
754
770
  export interface ListConflictingAliasesResult {
755
- ConflictingAliasesList?: ConflictingAliasesList;
771
+ ConflictingAliasesList?: ConflictingAliasesList | undefined;
756
772
  }
757
773
  export interface ListContinuousDeploymentPoliciesRequest {
758
- Marker?: string;
759
- MaxItems?: number;
774
+ Marker?: string | undefined;
775
+ MaxItems?: number | undefined;
760
776
  }
761
777
  export interface ContinuousDeploymentPolicySummary {
762
778
  ContinuousDeploymentPolicy: ContinuousDeploymentPolicy | undefined;
763
779
  }
764
780
  export interface ContinuousDeploymentPolicyList {
765
- NextMarker?: string;
781
+ NextMarker?: string | undefined;
766
782
  MaxItems: number | undefined;
767
783
  Quantity: number | undefined;
768
- Items?: ContinuousDeploymentPolicySummary[];
784
+ Items?: ContinuousDeploymentPolicySummary[] | undefined;
769
785
  }
770
786
  export interface ListContinuousDeploymentPoliciesResult {
771
- ContinuousDeploymentPolicyList?: ContinuousDeploymentPolicyList;
787
+ ContinuousDeploymentPolicyList?: ContinuousDeploymentPolicyList | undefined;
772
788
  }
773
789
  export interface ListDistributionsRequest {
774
- Marker?: string;
775
- MaxItems?: number;
790
+ Marker?: string | undefined;
791
+ MaxItems?: number | undefined;
776
792
  }
777
793
  export interface DistributionSummary {
778
794
  Id: string | undefined;
@@ -782,7 +798,7 @@ export interface DistributionSummary {
782
798
  DomainName: string | undefined;
783
799
  Aliases: Aliases | undefined;
784
800
  Origins: Origins | undefined;
785
- OriginGroups?: OriginGroups;
801
+ OriginGroups?: OriginGroups | undefined;
786
802
  DefaultCacheBehavior: DefaultCacheBehavior | undefined;
787
803
  CacheBehaviors: CacheBehaviors | undefined;
788
804
  CustomErrorResponses: CustomErrorResponses | undefined;
@@ -794,135 +810,135 @@ export interface DistributionSummary {
794
810
  WebACLId: string | undefined;
795
811
  HttpVersion: HttpVersion | undefined;
796
812
  IsIPV6Enabled: boolean | undefined;
797
- AliasICPRecordals?: AliasICPRecordal[];
813
+ AliasICPRecordals?: AliasICPRecordal[] | undefined;
798
814
  Staging: boolean | undefined;
799
815
  }
800
816
  export interface DistributionList {
801
817
  Marker: string | undefined;
802
- NextMarker?: string;
818
+ NextMarker?: string | undefined;
803
819
  MaxItems: number | undefined;
804
820
  IsTruncated: boolean | undefined;
805
821
  Quantity: number | undefined;
806
- Items?: DistributionSummary[];
822
+ Items?: DistributionSummary[] | undefined;
807
823
  }
808
824
  export interface ListDistributionsResult {
809
- DistributionList?: DistributionList;
825
+ DistributionList?: DistributionList | undefined;
810
826
  }
811
827
  export interface ListDistributionsByCachePolicyIdRequest {
812
- Marker?: string;
813
- MaxItems?: number;
828
+ Marker?: string | undefined;
829
+ MaxItems?: number | undefined;
814
830
  CachePolicyId: string | undefined;
815
831
  }
816
832
  export interface DistributionIdList {
817
833
  Marker: string | undefined;
818
- NextMarker?: string;
834
+ NextMarker?: string | undefined;
819
835
  MaxItems: number | undefined;
820
836
  IsTruncated: boolean | undefined;
821
837
  Quantity: number | undefined;
822
- Items?: string[];
838
+ Items?: string[] | undefined;
823
839
  }
824
840
  export interface ListDistributionsByCachePolicyIdResult {
825
- DistributionIdList?: DistributionIdList;
841
+ DistributionIdList?: DistributionIdList | undefined;
826
842
  }
827
843
  export interface ListDistributionsByKeyGroupRequest {
828
- Marker?: string;
829
- MaxItems?: number;
844
+ Marker?: string | undefined;
845
+ MaxItems?: number | undefined;
830
846
  KeyGroupId: string | undefined;
831
847
  }
832
848
  export interface ListDistributionsByKeyGroupResult {
833
- DistributionIdList?: DistributionIdList;
849
+ DistributionIdList?: DistributionIdList | undefined;
834
850
  }
835
851
  export interface ListDistributionsByOriginRequestPolicyIdRequest {
836
- Marker?: string;
837
- MaxItems?: number;
852
+ Marker?: string | undefined;
853
+ MaxItems?: number | undefined;
838
854
  OriginRequestPolicyId: string | undefined;
839
855
  }
840
856
  export interface ListDistributionsByOriginRequestPolicyIdResult {
841
- DistributionIdList?: DistributionIdList;
857
+ DistributionIdList?: DistributionIdList | undefined;
842
858
  }
843
859
  export interface ListDistributionsByRealtimeLogConfigRequest {
844
- Marker?: string;
845
- MaxItems?: number;
846
- RealtimeLogConfigName?: string;
847
- RealtimeLogConfigArn?: string;
860
+ Marker?: string | undefined;
861
+ MaxItems?: number | undefined;
862
+ RealtimeLogConfigName?: string | undefined;
863
+ RealtimeLogConfigArn?: string | undefined;
848
864
  }
849
865
  export interface ListDistributionsByRealtimeLogConfigResult {
850
- DistributionList?: DistributionList;
866
+ DistributionList?: DistributionList | undefined;
851
867
  }
852
868
  export interface ListDistributionsByResponseHeadersPolicyIdRequest {
853
- Marker?: string;
854
- MaxItems?: number;
869
+ Marker?: string | undefined;
870
+ MaxItems?: number | undefined;
855
871
  ResponseHeadersPolicyId: string | undefined;
856
872
  }
857
873
  export interface ListDistributionsByResponseHeadersPolicyIdResult {
858
- DistributionIdList?: DistributionIdList;
874
+ DistributionIdList?: DistributionIdList | undefined;
859
875
  }
860
876
  export interface ListDistributionsByWebACLIdRequest {
861
- Marker?: string;
862
- MaxItems?: number;
877
+ Marker?: string | undefined;
878
+ MaxItems?: number | undefined;
863
879
  WebACLId: string | undefined;
864
880
  }
865
881
  export interface ListDistributionsByWebACLIdResult {
866
- DistributionList?: DistributionList;
882
+ DistributionList?: DistributionList | undefined;
867
883
  }
868
884
  export interface ListFieldLevelEncryptionConfigsRequest {
869
- Marker?: string;
870
- MaxItems?: number;
885
+ Marker?: string | undefined;
886
+ MaxItems?: number | undefined;
871
887
  }
872
888
  export interface FieldLevelEncryptionSummary {
873
889
  Id: string | undefined;
874
890
  LastModifiedTime: Date | undefined;
875
- Comment?: string;
876
- QueryArgProfileConfig?: QueryArgProfileConfig;
877
- ContentTypeProfileConfig?: ContentTypeProfileConfig;
891
+ Comment?: string | undefined;
892
+ QueryArgProfileConfig?: QueryArgProfileConfig | undefined;
893
+ ContentTypeProfileConfig?: ContentTypeProfileConfig | undefined;
878
894
  }
879
895
  export interface FieldLevelEncryptionList {
880
- NextMarker?: string;
896
+ NextMarker?: string | undefined;
881
897
  MaxItems: number | undefined;
882
898
  Quantity: number | undefined;
883
- Items?: FieldLevelEncryptionSummary[];
899
+ Items?: FieldLevelEncryptionSummary[] | undefined;
884
900
  }
885
901
  export interface ListFieldLevelEncryptionConfigsResult {
886
- FieldLevelEncryptionList?: FieldLevelEncryptionList;
902
+ FieldLevelEncryptionList?: FieldLevelEncryptionList | undefined;
887
903
  }
888
904
  export interface ListFieldLevelEncryptionProfilesRequest {
889
- Marker?: string;
890
- MaxItems?: number;
905
+ Marker?: string | undefined;
906
+ MaxItems?: number | undefined;
891
907
  }
892
908
  export interface FieldLevelEncryptionProfileSummary {
893
909
  Id: string | undefined;
894
910
  LastModifiedTime: Date | undefined;
895
911
  Name: string | undefined;
896
912
  EncryptionEntities: EncryptionEntities | undefined;
897
- Comment?: string;
913
+ Comment?: string | undefined;
898
914
  }
899
915
  export interface FieldLevelEncryptionProfileList {
900
- NextMarker?: string;
916
+ NextMarker?: string | undefined;
901
917
  MaxItems: number | undefined;
902
918
  Quantity: number | undefined;
903
- Items?: FieldLevelEncryptionProfileSummary[];
919
+ Items?: FieldLevelEncryptionProfileSummary[] | undefined;
904
920
  }
905
921
  export interface ListFieldLevelEncryptionProfilesResult {
906
- FieldLevelEncryptionProfileList?: FieldLevelEncryptionProfileList;
922
+ FieldLevelEncryptionProfileList?: FieldLevelEncryptionProfileList | undefined;
907
923
  }
908
924
  export interface ListFunctionsRequest {
909
- Marker?: string;
910
- MaxItems?: number;
911
- Stage?: FunctionStage;
925
+ Marker?: string | undefined;
926
+ MaxItems?: number | undefined;
927
+ Stage?: FunctionStage | undefined;
912
928
  }
913
929
  export interface FunctionList {
914
- NextMarker?: string;
930
+ NextMarker?: string | undefined;
915
931
  MaxItems: number | undefined;
916
932
  Quantity: number | undefined;
917
- Items?: FunctionSummary[];
933
+ Items?: FunctionSummary[] | undefined;
918
934
  }
919
935
  export interface ListFunctionsResult {
920
- FunctionList?: FunctionList;
936
+ FunctionList?: FunctionList | undefined;
921
937
  }
922
938
  export interface ListInvalidationsRequest {
923
939
  DistributionId: string | undefined;
924
- Marker?: string;
925
- MaxItems?: number;
940
+ Marker?: string | undefined;
941
+ MaxItems?: number | undefined;
926
942
  }
927
943
  export interface InvalidationSummary {
928
944
  Id: string | undefined;
@@ -931,48 +947,48 @@ export interface InvalidationSummary {
931
947
  }
932
948
  export interface InvalidationList {
933
949
  Marker: string | undefined;
934
- NextMarker?: string;
950
+ NextMarker?: string | undefined;
935
951
  MaxItems: number | undefined;
936
952
  IsTruncated: boolean | undefined;
937
953
  Quantity: number | undefined;
938
- Items?: InvalidationSummary[];
954
+ Items?: InvalidationSummary[] | undefined;
939
955
  }
940
956
  export interface ListInvalidationsResult {
941
- InvalidationList?: InvalidationList;
957
+ InvalidationList?: InvalidationList | undefined;
942
958
  }
943
959
  export interface ListKeyGroupsRequest {
944
- Marker?: string;
945
- MaxItems?: number;
960
+ Marker?: string | undefined;
961
+ MaxItems?: number | undefined;
946
962
  }
947
963
  export interface KeyGroupSummary {
948
964
  KeyGroup: KeyGroup | undefined;
949
965
  }
950
966
  export interface KeyGroupList {
951
- NextMarker?: string;
967
+ NextMarker?: string | undefined;
952
968
  MaxItems: number | undefined;
953
969
  Quantity: number | undefined;
954
- Items?: KeyGroupSummary[];
970
+ Items?: KeyGroupSummary[] | undefined;
955
971
  }
956
972
  export interface ListKeyGroupsResult {
957
- KeyGroupList?: KeyGroupList;
973
+ KeyGroupList?: KeyGroupList | undefined;
958
974
  }
959
975
  export interface ListKeyValueStoresRequest {
960
- Marker?: string;
961
- MaxItems?: number;
962
- Status?: string;
976
+ Marker?: string | undefined;
977
+ MaxItems?: number | undefined;
978
+ Status?: string | undefined;
963
979
  }
964
980
  export interface KeyValueStoreList {
965
- NextMarker?: string;
981
+ NextMarker?: string | undefined;
966
982
  MaxItems: number | undefined;
967
983
  Quantity: number | undefined;
968
- Items?: KeyValueStore[];
984
+ Items?: KeyValueStore[] | undefined;
969
985
  }
970
986
  export interface ListKeyValueStoresResult {
971
- KeyValueStoreList?: KeyValueStoreList;
987
+ KeyValueStoreList?: KeyValueStoreList | undefined;
972
988
  }
973
989
  export interface ListOriginAccessControlsRequest {
974
- Marker?: string;
975
- MaxItems?: number;
990
+ Marker?: string | undefined;
991
+ MaxItems?: number | undefined;
976
992
  }
977
993
  export interface OriginAccessControlSummary {
978
994
  Id: string | undefined;
@@ -984,14 +1000,14 @@ export interface OriginAccessControlSummary {
984
1000
  }
985
1001
  export interface OriginAccessControlList {
986
1002
  Marker: string | undefined;
987
- NextMarker?: string;
1003
+ NextMarker?: string | undefined;
988
1004
  MaxItems: number | undefined;
989
1005
  IsTruncated: boolean | undefined;
990
1006
  Quantity: number | undefined;
991
- Items?: OriginAccessControlSummary[];
1007
+ Items?: OriginAccessControlSummary[] | undefined;
992
1008
  }
993
1009
  export interface ListOriginAccessControlsResult {
994
- OriginAccessControlList?: OriginAccessControlList;
1010
+ OriginAccessControlList?: OriginAccessControlList | undefined;
995
1011
  }
996
1012
  export declare const OriginRequestPolicyType: {
997
1013
  readonly custom: "custom";
@@ -1000,56 +1016,56 @@ export declare const OriginRequestPolicyType: {
1000
1016
  export type OriginRequestPolicyType =
1001
1017
  (typeof OriginRequestPolicyType)[keyof typeof OriginRequestPolicyType];
1002
1018
  export interface ListOriginRequestPoliciesRequest {
1003
- Type?: OriginRequestPolicyType;
1004
- Marker?: string;
1005
- MaxItems?: number;
1019
+ Type?: OriginRequestPolicyType | undefined;
1020
+ Marker?: string | undefined;
1021
+ MaxItems?: number | undefined;
1006
1022
  }
1007
1023
  export interface OriginRequestPolicySummary {
1008
1024
  Type: OriginRequestPolicyType | undefined;
1009
1025
  OriginRequestPolicy: OriginRequestPolicy | undefined;
1010
1026
  }
1011
1027
  export interface OriginRequestPolicyList {
1012
- NextMarker?: string;
1028
+ NextMarker?: string | undefined;
1013
1029
  MaxItems: number | undefined;
1014
1030
  Quantity: number | undefined;
1015
- Items?: OriginRequestPolicySummary[];
1031
+ Items?: OriginRequestPolicySummary[] | undefined;
1016
1032
  }
1017
1033
  export interface ListOriginRequestPoliciesResult {
1018
- OriginRequestPolicyList?: OriginRequestPolicyList;
1034
+ OriginRequestPolicyList?: OriginRequestPolicyList | undefined;
1019
1035
  }
1020
1036
  export interface ListPublicKeysRequest {
1021
- Marker?: string;
1022
- MaxItems?: number;
1037
+ Marker?: string | undefined;
1038
+ MaxItems?: number | undefined;
1023
1039
  }
1024
1040
  export interface PublicKeySummary {
1025
1041
  Id: string | undefined;
1026
1042
  Name: string | undefined;
1027
1043
  CreatedTime: Date | undefined;
1028
1044
  EncodedKey: string | undefined;
1029
- Comment?: string;
1045
+ Comment?: string | undefined;
1030
1046
  }
1031
1047
  export interface PublicKeyList {
1032
- NextMarker?: string;
1048
+ NextMarker?: string | undefined;
1033
1049
  MaxItems: number | undefined;
1034
1050
  Quantity: number | undefined;
1035
- Items?: PublicKeySummary[];
1051
+ Items?: PublicKeySummary[] | undefined;
1036
1052
  }
1037
1053
  export interface ListPublicKeysResult {
1038
- PublicKeyList?: PublicKeyList;
1054
+ PublicKeyList?: PublicKeyList | undefined;
1039
1055
  }
1040
1056
  export interface ListRealtimeLogConfigsRequest {
1041
- MaxItems?: number;
1042
- Marker?: string;
1057
+ MaxItems?: number | undefined;
1058
+ Marker?: string | undefined;
1043
1059
  }
1044
1060
  export interface RealtimeLogConfigs {
1045
1061
  MaxItems: number | undefined;
1046
- Items?: RealtimeLogConfig[];
1062
+ Items?: RealtimeLogConfig[] | undefined;
1047
1063
  IsTruncated: boolean | undefined;
1048
1064
  Marker: string | undefined;
1049
- NextMarker?: string;
1065
+ NextMarker?: string | undefined;
1050
1066
  }
1051
1067
  export interface ListRealtimeLogConfigsResult {
1052
- RealtimeLogConfigs?: RealtimeLogConfigs;
1068
+ RealtimeLogConfigs?: RealtimeLogConfigs | undefined;
1053
1069
  }
1054
1070
  export declare const ResponseHeadersPolicyType: {
1055
1071
  readonly custom: "custom";
@@ -1058,26 +1074,26 @@ export declare const ResponseHeadersPolicyType: {
1058
1074
  export type ResponseHeadersPolicyType =
1059
1075
  (typeof ResponseHeadersPolicyType)[keyof typeof ResponseHeadersPolicyType];
1060
1076
  export interface ListResponseHeadersPoliciesRequest {
1061
- Type?: ResponseHeadersPolicyType;
1062
- Marker?: string;
1063
- MaxItems?: number;
1077
+ Type?: ResponseHeadersPolicyType | undefined;
1078
+ Marker?: string | undefined;
1079
+ MaxItems?: number | undefined;
1064
1080
  }
1065
1081
  export interface ResponseHeadersPolicySummary {
1066
1082
  Type: ResponseHeadersPolicyType | undefined;
1067
1083
  ResponseHeadersPolicy: ResponseHeadersPolicy | undefined;
1068
1084
  }
1069
1085
  export interface ResponseHeadersPolicyList {
1070
- NextMarker?: string;
1086
+ NextMarker?: string | undefined;
1071
1087
  MaxItems: number | undefined;
1072
1088
  Quantity: number | undefined;
1073
- Items?: ResponseHeadersPolicySummary[];
1089
+ Items?: ResponseHeadersPolicySummary[] | undefined;
1074
1090
  }
1075
1091
  export interface ListResponseHeadersPoliciesResult {
1076
- ResponseHeadersPolicyList?: ResponseHeadersPolicyList;
1092
+ ResponseHeadersPolicyList?: ResponseHeadersPolicyList | undefined;
1077
1093
  }
1078
1094
  export interface ListStreamingDistributionsRequest {
1079
- Marker?: string;
1080
- MaxItems?: number;
1095
+ Marker?: string | undefined;
1096
+ MaxItems?: number | undefined;
1081
1097
  }
1082
1098
  export interface StreamingDistributionSummary {
1083
1099
  Id: string | undefined;
@@ -1094,14 +1110,14 @@ export interface StreamingDistributionSummary {
1094
1110
  }
1095
1111
  export interface StreamingDistributionList {
1096
1112
  Marker: string | undefined;
1097
- NextMarker?: string;
1113
+ NextMarker?: string | undefined;
1098
1114
  MaxItems: number | undefined;
1099
1115
  IsTruncated: boolean | undefined;
1100
1116
  Quantity: number | undefined;
1101
- Items?: StreamingDistributionSummary[];
1117
+ Items?: StreamingDistributionSummary[] | undefined;
1102
1118
  }
1103
1119
  export interface ListStreamingDistributionsResult {
1104
- StreamingDistributionList?: StreamingDistributionList;
1120
+ StreamingDistributionList?: StreamingDistributionList | undefined;
1105
1121
  }
1106
1122
  export interface ListTagsForResourceRequest {
1107
1123
  Resource: string | undefined;
@@ -1114,7 +1130,7 @@ export interface PublishFunctionRequest {
1114
1130
  IfMatch: string | undefined;
1115
1131
  }
1116
1132
  export interface PublishFunctionResult {
1117
- FunctionSummary?: FunctionSummary;
1133
+ FunctionSummary?: FunctionSummary | undefined;
1118
1134
  }
1119
1135
  export interface TagResourceRequest {
1120
1136
  Resource: string | undefined;
@@ -1123,27 +1139,27 @@ export interface TagResourceRequest {
1123
1139
  export declare class TestFunctionFailed extends __BaseException {
1124
1140
  readonly name: "TestFunctionFailed";
1125
1141
  readonly $fault: "server";
1126
- Message?: string;
1142
+ Message?: string | undefined;
1127
1143
  constructor(opts: __ExceptionOptionType<TestFunctionFailed, __BaseException>);
1128
1144
  }
1129
1145
  export interface TestFunctionRequest {
1130
1146
  Name: string | undefined;
1131
1147
  IfMatch: string | undefined;
1132
- Stage?: FunctionStage;
1148
+ Stage?: FunctionStage | undefined;
1133
1149
  EventObject: Uint8Array | undefined;
1134
1150
  }
1135
1151
  export interface TestResult {
1136
- FunctionSummary?: FunctionSummary;
1137
- ComputeUtilization?: string;
1138
- FunctionExecutionLogs?: string[];
1139
- FunctionErrorMessage?: string;
1140
- FunctionOutput?: string;
1152
+ FunctionSummary?: FunctionSummary | undefined;
1153
+ ComputeUtilization?: string | undefined;
1154
+ FunctionExecutionLogs?: string[] | undefined;
1155
+ FunctionErrorMessage?: string | undefined;
1156
+ FunctionOutput?: string | undefined;
1141
1157
  }
1142
1158
  export interface TestFunctionResult {
1143
- TestResult?: TestResult;
1159
+ TestResult?: TestResult | undefined;
1144
1160
  }
1145
1161
  export interface TagKeys {
1146
- Items?: string[];
1162
+ Items?: string[] | undefined;
1147
1163
  }
1148
1164
  export interface UntagResourceRequest {
1149
1165
  Resource: string | undefined;
@@ -1152,71 +1168,71 @@ export interface UntagResourceRequest {
1152
1168
  export interface UpdateCachePolicyRequest {
1153
1169
  CachePolicyConfig: CachePolicyConfig | undefined;
1154
1170
  Id: string | undefined;
1155
- IfMatch?: string;
1171
+ IfMatch?: string | undefined;
1156
1172
  }
1157
1173
  export interface UpdateCachePolicyResult {
1158
- CachePolicy?: CachePolicy;
1159
- ETag?: string;
1174
+ CachePolicy?: CachePolicy | undefined;
1175
+ ETag?: string | undefined;
1160
1176
  }
1161
1177
  export interface UpdateCloudFrontOriginAccessIdentityRequest {
1162
1178
  CloudFrontOriginAccessIdentityConfig:
1163
1179
  | CloudFrontOriginAccessIdentityConfig
1164
1180
  | undefined;
1165
1181
  Id: string | undefined;
1166
- IfMatch?: string;
1182
+ IfMatch?: string | undefined;
1167
1183
  }
1168
1184
  export interface UpdateCloudFrontOriginAccessIdentityResult {
1169
- CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity;
1170
- ETag?: string;
1185
+ CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity | undefined;
1186
+ ETag?: string | undefined;
1171
1187
  }
1172
1188
  export interface UpdateContinuousDeploymentPolicyRequest {
1173
1189
  ContinuousDeploymentPolicyConfig:
1174
1190
  | ContinuousDeploymentPolicyConfig
1175
1191
  | undefined;
1176
1192
  Id: string | undefined;
1177
- IfMatch?: string;
1193
+ IfMatch?: string | undefined;
1178
1194
  }
1179
1195
  export interface UpdateContinuousDeploymentPolicyResult {
1180
- ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy;
1181
- ETag?: string;
1196
+ ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy | undefined;
1197
+ ETag?: string | undefined;
1182
1198
  }
1183
1199
  export interface UpdateDistributionRequest {
1184
1200
  DistributionConfig: DistributionConfig | undefined;
1185
1201
  Id: string | undefined;
1186
- IfMatch?: string;
1202
+ IfMatch?: string | undefined;
1187
1203
  }
1188
1204
  export interface UpdateDistributionResult {
1189
- Distribution?: Distribution;
1190
- ETag?: string;
1205
+ Distribution?: Distribution | undefined;
1206
+ ETag?: string | undefined;
1191
1207
  }
1192
1208
  export interface UpdateDistributionWithStagingConfigRequest {
1193
1209
  Id: string | undefined;
1194
- StagingDistributionId?: string;
1195
- IfMatch?: string;
1210
+ StagingDistributionId?: string | undefined;
1211
+ IfMatch?: string | undefined;
1196
1212
  }
1197
1213
  export interface UpdateDistributionWithStagingConfigResult {
1198
- Distribution?: Distribution;
1199
- ETag?: string;
1214
+ Distribution?: Distribution | undefined;
1215
+ ETag?: string | undefined;
1200
1216
  }
1201
1217
  export interface UpdateFieldLevelEncryptionConfigRequest {
1202
1218
  FieldLevelEncryptionConfig: FieldLevelEncryptionConfig | undefined;
1203
1219
  Id: string | undefined;
1204
- IfMatch?: string;
1220
+ IfMatch?: string | undefined;
1205
1221
  }
1206
1222
  export interface UpdateFieldLevelEncryptionConfigResult {
1207
- FieldLevelEncryption?: FieldLevelEncryption;
1208
- ETag?: string;
1223
+ FieldLevelEncryption?: FieldLevelEncryption | undefined;
1224
+ ETag?: string | undefined;
1209
1225
  }
1210
1226
  export interface UpdateFieldLevelEncryptionProfileRequest {
1211
1227
  FieldLevelEncryptionProfileConfig:
1212
1228
  | FieldLevelEncryptionProfileConfig
1213
1229
  | undefined;
1214
1230
  Id: string | undefined;
1215
- IfMatch?: string;
1231
+ IfMatch?: string | undefined;
1216
1232
  }
1217
1233
  export interface UpdateFieldLevelEncryptionProfileResult {
1218
- FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile;
1219
- ETag?: string;
1234
+ FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile | undefined;
1235
+ ETag?: string | undefined;
1220
1236
  }
1221
1237
  export interface UpdateFunctionRequest {
1222
1238
  Name: string | undefined;
@@ -1225,17 +1241,17 @@ export interface UpdateFunctionRequest {
1225
1241
  FunctionCode: Uint8Array | undefined;
1226
1242
  }
1227
1243
  export interface UpdateFunctionResult {
1228
- FunctionSummary?: FunctionSummary;
1229
- ETag?: string;
1244
+ FunctionSummary?: FunctionSummary | undefined;
1245
+ ETag?: string | undefined;
1230
1246
  }
1231
1247
  export interface UpdateKeyGroupRequest {
1232
1248
  KeyGroupConfig: KeyGroupConfig | undefined;
1233
1249
  Id: string | undefined;
1234
- IfMatch?: string;
1250
+ IfMatch?: string | undefined;
1235
1251
  }
1236
1252
  export interface UpdateKeyGroupResult {
1237
- KeyGroup?: KeyGroup;
1238
- ETag?: string;
1253
+ KeyGroup?: KeyGroup | undefined;
1254
+ ETag?: string | undefined;
1239
1255
  }
1240
1256
  export interface UpdateKeyValueStoreRequest {
1241
1257
  Name: string | undefined;
@@ -1243,63 +1259,63 @@ export interface UpdateKeyValueStoreRequest {
1243
1259
  IfMatch: string | undefined;
1244
1260
  }
1245
1261
  export interface UpdateKeyValueStoreResult {
1246
- KeyValueStore?: KeyValueStore;
1247
- ETag?: string;
1262
+ KeyValueStore?: KeyValueStore | undefined;
1263
+ ETag?: string | undefined;
1248
1264
  }
1249
1265
  export interface UpdateOriginAccessControlRequest {
1250
1266
  OriginAccessControlConfig: OriginAccessControlConfig | undefined;
1251
1267
  Id: string | undefined;
1252
- IfMatch?: string;
1268
+ IfMatch?: string | undefined;
1253
1269
  }
1254
1270
  export interface UpdateOriginAccessControlResult {
1255
- OriginAccessControl?: OriginAccessControl;
1256
- ETag?: string;
1271
+ OriginAccessControl?: OriginAccessControl | undefined;
1272
+ ETag?: string | undefined;
1257
1273
  }
1258
1274
  export interface UpdateOriginRequestPolicyRequest {
1259
1275
  OriginRequestPolicyConfig: OriginRequestPolicyConfig | undefined;
1260
1276
  Id: string | undefined;
1261
- IfMatch?: string;
1277
+ IfMatch?: string | undefined;
1262
1278
  }
1263
1279
  export interface UpdateOriginRequestPolicyResult {
1264
- OriginRequestPolicy?: OriginRequestPolicy;
1265
- ETag?: string;
1280
+ OriginRequestPolicy?: OriginRequestPolicy | undefined;
1281
+ ETag?: string | undefined;
1266
1282
  }
1267
1283
  export interface UpdatePublicKeyRequest {
1268
1284
  PublicKeyConfig: PublicKeyConfig | undefined;
1269
1285
  Id: string | undefined;
1270
- IfMatch?: string;
1286
+ IfMatch?: string | undefined;
1271
1287
  }
1272
1288
  export interface UpdatePublicKeyResult {
1273
- PublicKey?: PublicKey;
1274
- ETag?: string;
1289
+ PublicKey?: PublicKey | undefined;
1290
+ ETag?: string | undefined;
1275
1291
  }
1276
1292
  export interface UpdateRealtimeLogConfigRequest {
1277
- EndPoints?: EndPoint[];
1278
- Fields?: string[];
1279
- Name?: string;
1280
- ARN?: string;
1281
- SamplingRate?: number;
1293
+ EndPoints?: EndPoint[] | undefined;
1294
+ Fields?: string[] | undefined;
1295
+ Name?: string | undefined;
1296
+ ARN?: string | undefined;
1297
+ SamplingRate?: number | undefined;
1282
1298
  }
1283
1299
  export interface UpdateRealtimeLogConfigResult {
1284
- RealtimeLogConfig?: RealtimeLogConfig;
1300
+ RealtimeLogConfig?: RealtimeLogConfig | undefined;
1285
1301
  }
1286
1302
  export interface UpdateResponseHeadersPolicyRequest {
1287
1303
  ResponseHeadersPolicyConfig: ResponseHeadersPolicyConfig | undefined;
1288
1304
  Id: string | undefined;
1289
- IfMatch?: string;
1305
+ IfMatch?: string | undefined;
1290
1306
  }
1291
1307
  export interface UpdateResponseHeadersPolicyResult {
1292
- ResponseHeadersPolicy?: ResponseHeadersPolicy;
1293
- ETag?: string;
1308
+ ResponseHeadersPolicy?: ResponseHeadersPolicy | undefined;
1309
+ ETag?: string | undefined;
1294
1310
  }
1295
1311
  export interface UpdateStreamingDistributionRequest {
1296
1312
  StreamingDistributionConfig: StreamingDistributionConfig | undefined;
1297
1313
  Id: string | undefined;
1298
- IfMatch?: string;
1314
+ IfMatch?: string | undefined;
1299
1315
  }
1300
1316
  export interface UpdateStreamingDistributionResult {
1301
- StreamingDistribution?: StreamingDistribution;
1302
- ETag?: string;
1317
+ StreamingDistribution?: StreamingDistribution | undefined;
1318
+ ETag?: string | undefined;
1303
1319
  }
1304
1320
  export declare const GetDistributionResultFilterSensitiveLog: (
1305
1321
  obj: GetDistributionResult