@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.
@@ -25,7 +25,7 @@ export type ResponseHeadersPolicyAccessControlAllowMethodsValues = (typeof Respo
25
25
  export declare class AccessDenied extends __BaseException {
26
26
  readonly name: "AccessDenied";
27
27
  readonly $fault: "client";
28
- Message?: string;
28
+ Message?: string | undefined;
29
29
  /**
30
30
  * @internal
31
31
  */
@@ -45,7 +45,7 @@ export interface KeyPairIds {
45
45
  * <p>A list of CloudFront key pair identifiers.</p>
46
46
  * @public
47
47
  */
48
- Items?: string[];
48
+ Items?: string[] | undefined;
49
49
  }
50
50
  /**
51
51
  * <p>A list of identifiers for the public keys that CloudFront can use to verify the signatures
@@ -57,12 +57,12 @@ export interface KGKeyPairIds {
57
57
  * <p>The identifier of the key group that contains the public keys.</p>
58
58
  * @public
59
59
  */
60
- KeyGroupId?: string;
60
+ KeyGroupId?: string | undefined;
61
61
  /**
62
62
  * <p>A list of CloudFront key pair identifiers.</p>
63
63
  * @public
64
64
  */
65
- KeyPairIds?: KeyPairIds;
65
+ KeyPairIds?: KeyPairIds | undefined;
66
66
  }
67
67
  /**
68
68
  * <p>A list of key groups, and the public keys in each key group, that CloudFront can use to
@@ -87,7 +87,7 @@ export interface ActiveTrustedKeyGroups {
87
87
  * that CloudFront can use to verify the signatures of signed URLs and signed cookies.</p>
88
88
  * @public
89
89
  */
90
- Items?: KGKeyPairIds[];
90
+ Items?: KGKeyPairIds[] | undefined;
91
91
  }
92
92
  /**
93
93
  * <p>A list of Amazon Web Services accounts and the active CloudFront key pairs in each account that CloudFront can
@@ -102,12 +102,12 @@ export interface Signer {
102
102
  * field is <code>self</code>.</p>
103
103
  * @public
104
104
  */
105
- AwsAccountNumber?: string;
105
+ AwsAccountNumber?: string | undefined;
106
106
  /**
107
107
  * <p>A list of CloudFront key pair identifiers.</p>
108
108
  * @public
109
109
  */
110
- KeyPairIds?: KeyPairIds;
110
+ KeyPairIds?: KeyPairIds | undefined;
111
111
  }
112
112
  /**
113
113
  * <p>A list of Amazon Web Services accounts and the active CloudFront key pairs in each account that CloudFront can
@@ -131,7 +131,7 @@ export interface ActiveTrustedSigners {
131
131
  * that CloudFront can use to verify the signatures of signed URLs and signed cookies.</p>
132
132
  * @public
133
133
  */
134
- Items?: Signer[];
134
+ Items?: Signer[] | undefined;
135
135
  }
136
136
  /**
137
137
  * <p>A complex type that contains information about CNAMEs (alternate domain names), if
@@ -150,7 +150,7 @@ export interface Aliases {
150
150
  * with this distribution.</p>
151
151
  * @public
152
152
  */
153
- Items?: string[];
153
+ Items?: string[] | undefined;
154
154
  }
155
155
  /**
156
156
  * @public
@@ -180,7 +180,7 @@ export interface AliasICPRecordal {
180
180
  * <p>A domain name associated with a distribution.</p>
181
181
  * @public
182
182
  */
183
- CNAME?: string;
183
+ CNAME?: string | undefined;
184
184
  /**
185
185
  * <p>The Internet Content Provider (ICP) recordal status for a CNAME. The ICPRecordalStatus
186
186
  * is set to APPROVED for all CNAMEs (aliases) in regions outside of China.</p>
@@ -210,7 +210,7 @@ export interface AliasICPRecordal {
210
210
  * </ul>
211
211
  * @public
212
212
  */
213
- ICPRecordalStatus?: ICPRecordalStatus;
213
+ ICPRecordalStatus?: ICPRecordalStatus | undefined;
214
214
  }
215
215
  /**
216
216
  * @public
@@ -318,7 +318,7 @@ export interface AllowedMethods {
318
318
  * the responses to be cached correctly.</p>
319
319
  * @public
320
320
  */
321
- CachedMethods?: CachedMethods;
321
+ CachedMethods?: CachedMethods | undefined;
322
322
  }
323
323
  /**
324
324
  * @public
@@ -342,7 +342,7 @@ export interface AssociateAliasRequest {
342
342
  export declare class IllegalUpdate extends __BaseException {
343
343
  readonly name: "IllegalUpdate";
344
344
  readonly $fault: "client";
345
- Message?: string;
345
+ Message?: string | undefined;
346
346
  /**
347
347
  * @internal
348
348
  */
@@ -355,7 +355,7 @@ export declare class IllegalUpdate extends __BaseException {
355
355
  export declare class InvalidArgument extends __BaseException {
356
356
  readonly name: "InvalidArgument";
357
357
  readonly $fault: "client";
358
- Message?: string;
358
+ Message?: string | undefined;
359
359
  /**
360
360
  * @internal
361
361
  */
@@ -368,7 +368,7 @@ export declare class InvalidArgument extends __BaseException {
368
368
  export declare class NoSuchDistribution extends __BaseException {
369
369
  readonly name: "NoSuchDistribution";
370
370
  readonly $fault: "client";
371
- Message?: string;
371
+ Message?: string | undefined;
372
372
  /**
373
373
  * @internal
374
374
  */
@@ -381,7 +381,7 @@ export declare class NoSuchDistribution extends __BaseException {
381
381
  export declare class TooManyDistributionCNAMEs extends __BaseException {
382
382
  readonly name: "TooManyDistributionCNAMEs";
383
383
  readonly $fault: "client";
384
- Message?: string;
384
+ Message?: string | undefined;
385
385
  /**
386
386
  * @internal
387
387
  */
@@ -394,7 +394,7 @@ export declare class TooManyDistributionCNAMEs extends __BaseException {
394
394
  export declare class BatchTooLarge extends __BaseException {
395
395
  readonly name: "BatchTooLarge";
396
396
  readonly $fault: "client";
397
- Message?: string;
397
+ Message?: string | undefined;
398
398
  /**
399
399
  * @internal
400
400
  */
@@ -427,7 +427,7 @@ export interface CookieNames {
427
427
  * <p>A list of cookie names.</p>
428
428
  * @public
429
429
  */
430
- Items?: string[];
430
+ Items?: string[] | undefined;
431
431
  }
432
432
  /**
433
433
  * <p>This field is deprecated. We recommend that you use a cache policy or an origin
@@ -482,7 +482,7 @@ export interface CookiePreference {
482
482
  * Limits</a> in the <i>Amazon Web Services General Reference</i>.</p>
483
483
  * @public
484
484
  */
485
- WhitelistedNames?: CookieNames;
485
+ WhitelistedNames?: CookieNames | undefined;
486
486
  }
487
487
  /**
488
488
  * <p>Contains a list of HTTP header names.</p>
@@ -498,7 +498,7 @@ export interface Headers {
498
498
  * <p>A list of HTTP header names.</p>
499
499
  * @public
500
500
  */
501
- Items?: string[];
501
+ Items?: string[] | undefined;
502
502
  }
503
503
  /**
504
504
  * <p>This field is deprecated. We recommend that you use a cache policy or an origin
@@ -526,7 +526,7 @@ export interface QueryStringCacheKeys {
526
526
  * <code>Items</code>.</p>
527
527
  * @public
528
528
  */
529
- Items?: string[];
529
+ Items?: string[] | undefined;
530
530
  }
531
531
  /**
532
532
  * <p>This field is deprecated. We recommend that you use a cache policy or an origin
@@ -601,7 +601,7 @@ export interface ForwardedValues {
601
601
  * Based on Request Headers</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
602
602
  * @public
603
603
  */
604
- Headers?: Headers;
604
+ Headers?: Headers | undefined;
605
605
  /**
606
606
  * <p>This field is deprecated. We recommend that you use a cache policy or an origin
607
607
  * request policy instead of this field.</p>
@@ -614,7 +614,7 @@ export interface ForwardedValues {
614
614
  * want CloudFront to use for caching for this cache behavior.</p>
615
615
  * @public
616
616
  */
617
- QueryStringCacheKeys?: QueryStringCacheKeys;
617
+ QueryStringCacheKeys?: QueryStringCacheKeys | undefined;
618
618
  }
619
619
  /**
620
620
  * @public
@@ -668,7 +668,7 @@ export interface FunctionAssociations {
668
668
  * cache behavior.</p>
669
669
  * @public
670
670
  */
671
- Items?: FunctionAssociation[];
671
+ Items?: FunctionAssociation[] | undefined;
672
672
  }
673
673
  /**
674
674
  * <p>A complex type that contains a Lambda@Edge function association.</p>
@@ -721,7 +721,7 @@ export interface LambdaFunctionAssociation {
721
721
  * Amazon CloudFront Developer Guide.</p>
722
722
  * @public
723
723
  */
724
- IncludeBody?: boolean;
724
+ IncludeBody?: boolean | undefined;
725
725
  }
726
726
  /**
727
727
  * <p>A complex type that specifies a list of Lambda@Edge functions associations for a cache
@@ -750,7 +750,7 @@ export interface LambdaFunctionAssociations {
750
750
  * <code>Quantity</code> is <code>0</code>, you can omit <code>Items</code>.</p>
751
751
  * @public
752
752
  */
753
- Items?: LambdaFunctionAssociation[];
753
+ Items?: LambdaFunctionAssociation[] | undefined;
754
754
  }
755
755
  /**
756
756
  * <p>A list of key groups whose public keys CloudFront can use to verify the signatures of signed
@@ -774,7 +774,7 @@ export interface TrustedKeyGroups {
774
774
  * <p>A list of key groups identifiers.</p>
775
775
  * @public
776
776
  */
777
- Items?: string[];
777
+ Items?: string[] | undefined;
778
778
  }
779
779
  /**
780
780
  * <p>A list of Amazon Web Services accounts whose public keys CloudFront can use to verify the signatures of
@@ -797,7 +797,7 @@ export interface TrustedSigners {
797
797
  * <p>A list of Amazon Web Services account identifiers.</p>
798
798
  * @public
799
799
  */
800
- Items?: string[];
800
+ Items?: string[] | undefined;
801
801
  }
802
802
  /**
803
803
  * @public
@@ -874,7 +874,7 @@ export interface CacheBehavior {
874
874
  * <i>Amazon CloudFront Developer Guide</i>.</p>
875
875
  * @public
876
876
  */
877
- TrustedSigners?: TrustedSigners;
877
+ TrustedSigners?: TrustedSigners | undefined;
878
878
  /**
879
879
  * <p>A list of key groups that CloudFront can use to validate signed URLs or signed
880
880
  * cookies.</p>
@@ -886,7 +886,7 @@ export interface CacheBehavior {
886
886
  * <i>Amazon CloudFront Developer Guide</i>.</p>
887
887
  * @public
888
888
  */
889
- TrustedKeyGroups?: TrustedKeyGroups;
889
+ TrustedKeyGroups?: TrustedKeyGroups | undefined;
890
890
  /**
891
891
  * <p>The protocol that viewers can use to access the files in the origin specified by
892
892
  * <code>TargetOriginId</code> when a request matches the path pattern in
@@ -945,7 +945,7 @@ export interface CacheBehavior {
945
945
  * origin.</p>
946
946
  * @public
947
947
  */
948
- AllowedMethods?: AllowedMethods;
948
+ AllowedMethods?: AllowedMethods | undefined;
949
949
  /**
950
950
  * <p>Indicates whether you want to distribute media files in the Microsoft Smooth Streaming
951
951
  * format using the origin that is associated with this cache behavior. If so, specify
@@ -955,40 +955,40 @@ export interface CacheBehavior {
955
955
  * <code>PathPattern</code>.</p>
956
956
  * @public
957
957
  */
958
- SmoothStreaming?: boolean;
958
+ SmoothStreaming?: boolean | undefined;
959
959
  /**
960
960
  * <p>Whether you want CloudFront to automatically compress certain files for this cache behavior.
961
961
  * If so, specify true; if not, specify false. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/ServingCompressedFiles.html">Serving
962
962
  * Compressed Files</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
963
963
  * @public
964
964
  */
965
- Compress?: boolean;
965
+ Compress?: boolean | undefined;
966
966
  /**
967
967
  * <p>A complex type that contains zero or more Lambda@Edge function associations for a
968
968
  * cache behavior.</p>
969
969
  * @public
970
970
  */
971
- LambdaFunctionAssociations?: LambdaFunctionAssociations;
971
+ LambdaFunctionAssociations?: LambdaFunctionAssociations | undefined;
972
972
  /**
973
973
  * <p>A list of CloudFront functions that are associated with this cache behavior. CloudFront functions
974
974
  * must be published to the <code>LIVE</code> stage to associate them with a cache
975
975
  * behavior.</p>
976
976
  * @public
977
977
  */
978
- FunctionAssociations?: FunctionAssociations;
978
+ FunctionAssociations?: FunctionAssociations | undefined;
979
979
  /**
980
980
  * <p>The value of <code>ID</code> for the field-level encryption configuration that you
981
981
  * want CloudFront to use for encrypting specific fields of data for this cache behavior.</p>
982
982
  * @public
983
983
  */
984
- FieldLevelEncryptionId?: string;
984
+ FieldLevelEncryptionId?: string | undefined;
985
985
  /**
986
986
  * <p>The Amazon Resource Name (ARN) of the real-time log configuration that is attached to
987
987
  * this cache behavior. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html">Real-time logs</a> in the
988
988
  * <i>Amazon CloudFront Developer Guide</i>.</p>
989
989
  * @public
990
990
  */
991
- RealtimeLogConfigArn?: string;
991
+ RealtimeLogConfigArn?: string | undefined;
992
992
  /**
993
993
  * <p>The unique identifier of the cache policy that is attached to this cache behavior. For
994
994
  * more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy">Creating cache policies</a> or <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html">Using the managed cache policies</a> in the
@@ -998,19 +998,19 @@ export interface CacheBehavior {
998
998
  * <code>CachePolicyId</code>.</p>
999
999
  * @public
1000
1000
  */
1001
- CachePolicyId?: string;
1001
+ CachePolicyId?: string | undefined;
1002
1002
  /**
1003
1003
  * <p>The unique identifier of the origin request policy that is attached to this cache
1004
1004
  * behavior. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy">Creating origin request policies</a> or <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-origin-request-policies.html">Using the managed origin request policies</a> in the
1005
1005
  * <i>Amazon CloudFront Developer Guide</i>.</p>
1006
1006
  * @public
1007
1007
  */
1008
- OriginRequestPolicyId?: string;
1008
+ OriginRequestPolicyId?: string | undefined;
1009
1009
  /**
1010
1010
  * <p>The identifier for a response headers policy.</p>
1011
1011
  * @public
1012
1012
  */
1013
- ResponseHeadersPolicyId?: string;
1013
+ ResponseHeadersPolicyId?: string | undefined;
1014
1014
  /**
1015
1015
  * @deprecated
1016
1016
  *
@@ -1030,7 +1030,7 @@ export interface CacheBehavior {
1030
1030
  * headers.</p>
1031
1031
  * @public
1032
1032
  */
1033
- ForwardedValues?: ForwardedValues;
1033
+ ForwardedValues?: ForwardedValues | undefined;
1034
1034
  /**
1035
1035
  * @deprecated
1036
1036
  *
@@ -1048,7 +1048,7 @@ export interface CacheBehavior {
1048
1048
  * <code>Name</code>).</p>
1049
1049
  * @public
1050
1050
  */
1051
- MinTTL?: number;
1051
+ MinTTL?: number | undefined;
1052
1052
  /**
1053
1053
  * @deprecated
1054
1054
  *
@@ -1063,7 +1063,7 @@ export interface CacheBehavior {
1063
1063
  * <i>Amazon CloudFront Developer Guide</i>.</p>
1064
1064
  * @public
1065
1065
  */
1066
- DefaultTTL?: number;
1066
+ DefaultTTL?: number | undefined;
1067
1067
  /**
1068
1068
  * @deprecated
1069
1069
  *
@@ -1078,7 +1078,7 @@ export interface CacheBehavior {
1078
1078
  * <i>Amazon CloudFront Developer Guide</i>.</p>
1079
1079
  * @public
1080
1080
  */
1081
- MaxTTL?: number;
1081
+ MaxTTL?: number | undefined;
1082
1082
  }
1083
1083
  /**
1084
1084
  * <p>A complex type that contains zero or more <code>CacheBehavior</code> elements.</p>
@@ -1095,7 +1095,7 @@ export interface CacheBehaviors {
1095
1095
  * <code>Quantity</code> is <code>0</code>, you can omit <code>Items</code>.</p>
1096
1096
  * @public
1097
1097
  */
1098
- Items?: CacheBehavior[];
1098
+ Items?: CacheBehavior[] | undefined;
1099
1099
  }
1100
1100
  /**
1101
1101
  * @public
@@ -1157,7 +1157,7 @@ export interface CachePolicyCookiesConfig {
1157
1157
  * <p>Contains a list of cookie names.</p>
1158
1158
  * @public
1159
1159
  */
1160
- Cookies?: CookieNames;
1160
+ Cookies?: CookieNames | undefined;
1161
1161
  }
1162
1162
  /**
1163
1163
  * @public
@@ -1202,7 +1202,7 @@ export interface CachePolicyHeadersConfig {
1202
1202
  * <p>Contains a list of HTTP header names.</p>
1203
1203
  * @public
1204
1204
  */
1205
- Headers?: Headers;
1205
+ Headers?: Headers | undefined;
1206
1206
  }
1207
1207
  /**
1208
1208
  * @public
@@ -1232,7 +1232,7 @@ export interface QueryStringNames {
1232
1232
  * <p>A list of query string names.</p>
1233
1233
  * @public
1234
1234
  */
1235
- Items?: string[];
1235
+ Items?: string[] | undefined;
1236
1236
  }
1237
1237
  /**
1238
1238
  * <p>An object that determines whether any URL query strings in viewer requests (and if so, which
@@ -1295,7 +1295,7 @@ export interface CachePolicyQueryStringsConfig {
1295
1295
  * are).</p>
1296
1296
  * @public
1297
1297
  */
1298
- QueryStrings?: QueryStringNames;
1298
+ QueryStrings?: QueryStringNames | undefined;
1299
1299
  }
1300
1300
  /**
1301
1301
  * <p>This object determines the values that CloudFront includes in the cache key. These values
@@ -1378,7 +1378,7 @@ export interface ParametersInCacheKeyAndForwardedToOrigin {
1378
1378
  * whitelist like any other HTTP header.</p>
1379
1379
  * @public
1380
1380
  */
1381
- EnableAcceptEncodingBrotli?: boolean;
1381
+ EnableAcceptEncodingBrotli?: boolean | undefined;
1382
1382
  /**
1383
1383
  * <p>An object that determines whether any HTTP headers (and if so, which headers) are included
1384
1384
  * in the cache key and in requests that CloudFront sends to the origin.</p>
@@ -1426,7 +1426,7 @@ export interface CachePolicyConfig {
1426
1426
  * characters.</p>
1427
1427
  * @public
1428
1428
  */
1429
- Comment?: string;
1429
+ Comment?: string | undefined;
1430
1430
  /**
1431
1431
  * <p>A unique name to identify the cache policy.</p>
1432
1432
  * @public
@@ -1444,7 +1444,7 @@ export interface CachePolicyConfig {
1444
1444
  * field is the same as the value of <code>MinTTL</code>.</p>
1445
1445
  * @public
1446
1446
  */
1447
- DefaultTTL?: number;
1447
+ DefaultTTL?: number | undefined;
1448
1448
  /**
1449
1449
  * <p>The maximum amount of time, in seconds, that objects stay in the CloudFront cache before
1450
1450
  * CloudFront sends another request to the origin to see if the object has been updated. CloudFront
@@ -1457,7 +1457,7 @@ export interface CachePolicyConfig {
1457
1457
  * <code>DefaultTTL</code>.</p>
1458
1458
  * @public
1459
1459
  */
1460
- MaxTTL?: number;
1460
+ MaxTTL?: number | undefined;
1461
1461
  /**
1462
1462
  * <p>The minimum amount of time, in seconds, that you want objects to stay in the CloudFront
1463
1463
  * cache before CloudFront sends another request to the origin to see if the object has been
@@ -1472,7 +1472,7 @@ export interface CachePolicyConfig {
1472
1472
  * origin.</p>
1473
1473
  * @public
1474
1474
  */
1475
- ParametersInCacheKeyAndForwardedToOrigin?: ParametersInCacheKeyAndForwardedToOrigin;
1475
+ ParametersInCacheKeyAndForwardedToOrigin?: ParametersInCacheKeyAndForwardedToOrigin | undefined;
1476
1476
  }
1477
1477
  /**
1478
1478
  * <p>A cache policy.</p>
@@ -1521,7 +1521,7 @@ export interface CachePolicy {
1521
1521
  export declare class CachePolicyAlreadyExists extends __BaseException {
1522
1522
  readonly name: "CachePolicyAlreadyExists";
1523
1523
  readonly $fault: "client";
1524
- Message?: string;
1524
+ Message?: string | undefined;
1525
1525
  /**
1526
1526
  * @internal
1527
1527
  */
@@ -1535,7 +1535,7 @@ export declare class CachePolicyAlreadyExists extends __BaseException {
1535
1535
  export declare class CachePolicyInUse extends __BaseException {
1536
1536
  readonly name: "CachePolicyInUse";
1537
1537
  readonly $fault: "client";
1538
- Message?: string;
1538
+ Message?: string | undefined;
1539
1539
  /**
1540
1540
  * @internal
1541
1541
  */
@@ -1581,7 +1581,7 @@ export interface CachePolicyList {
1581
1581
  * subsequent request to continue listing cache policies where you left off.</p>
1582
1582
  * @public
1583
1583
  */
1584
- NextMarker?: string;
1584
+ NextMarker?: string | undefined;
1585
1585
  /**
1586
1586
  * <p>The maximum number of cache policies requested.</p>
1587
1587
  * @public
@@ -1596,7 +1596,7 @@ export interface CachePolicyList {
1596
1596
  * <p>Contains the cache policies in the list.</p>
1597
1597
  * @public
1598
1598
  */
1599
- Items?: CachePolicySummary[];
1599
+ Items?: CachePolicySummary[] | undefined;
1600
1600
  }
1601
1601
  /**
1602
1602
  * <p>You can't change the value of a public key.</p>
@@ -1605,7 +1605,7 @@ export interface CachePolicyList {
1605
1605
  export declare class CannotChangeImmutablePublicKeyFields extends __BaseException {
1606
1606
  readonly name: "CannotChangeImmutablePublicKeyFields";
1607
1607
  readonly $fault: "client";
1608
- Message?: string;
1608
+ Message?: string | undefined;
1609
1609
  /**
1610
1610
  * @internal
1611
1611
  */
@@ -1618,7 +1618,7 @@ export declare class CannotChangeImmutablePublicKeyFields extends __BaseExceptio
1618
1618
  export declare class CannotDeleteEntityWhileInUse extends __BaseException {
1619
1619
  readonly name: "CannotDeleteEntityWhileInUse";
1620
1620
  readonly $fault: "client";
1621
- Message?: string;
1621
+ Message?: string | undefined;
1622
1622
  /**
1623
1623
  * @internal
1624
1624
  */
@@ -1644,7 +1644,7 @@ export type CertificateSource = (typeof CertificateSource)[keyof typeof Certific
1644
1644
  export declare class CNAMEAlreadyExists extends __BaseException {
1645
1645
  readonly name: "CNAMEAlreadyExists";
1646
1646
  readonly $fault: "client";
1647
- Message?: string;
1647
+ Message?: string | undefined;
1648
1648
  /**
1649
1649
  * @internal
1650
1650
  */
@@ -1666,14 +1666,14 @@ export interface CopyDistributionRequest {
1666
1666
  * distribution.</p>
1667
1667
  * @public
1668
1668
  */
1669
- Staging?: boolean;
1669
+ Staging?: boolean | undefined;
1670
1670
  /**
1671
1671
  * <p>The version identifier of the primary distribution whose configuration you are
1672
1672
  * copying. This is the <code>ETag</code> value returned in the response to
1673
1673
  * <code>GetDistribution</code> and <code>GetDistributionConfig</code>.</p>
1674
1674
  * @public
1675
1675
  */
1676
- IfMatch?: string;
1676
+ IfMatch?: string | undefined;
1677
1677
  /**
1678
1678
  * <p>A value that uniquely identifies a request to create a resource. This helps to prevent
1679
1679
  * CloudFront from creating a duplicate resource if you accidentally resubmit an identical
@@ -1689,7 +1689,7 @@ export interface CopyDistributionRequest {
1689
1689
  * <p>If you omit this field, the default value is <code>True</code>.</p>
1690
1690
  * @public
1691
1691
  */
1692
- Enabled?: boolean;
1692
+ Enabled?: boolean | undefined;
1693
1693
  }
1694
1694
  /**
1695
1695
  * <p>A complex type that controls:</p>
@@ -1742,7 +1742,7 @@ export interface CustomErrorResponse {
1742
1742
  * unavailable.</p>
1743
1743
  * @public
1744
1744
  */
1745
- ResponsePagePath?: string;
1745
+ ResponsePagePath?: string | undefined;
1746
1746
  /**
1747
1747
  * <p>The HTTP status code that you want CloudFront to return to the viewer along with the custom
1748
1748
  * error page. There are a variety of reasons that you might want CloudFront to return a status
@@ -1769,7 +1769,7 @@ export interface CustomErrorResponse {
1769
1769
  * for <code>ResponsePagePath</code>.</p>
1770
1770
  * @public
1771
1771
  */
1772
- ResponseCode?: string;
1772
+ ResponseCode?: string | undefined;
1773
1773
  /**
1774
1774
  * <p>The minimum amount of time, in seconds, that you want CloudFront to cache the HTTP status
1775
1775
  * code specified in <code>ErrorCode</code>. When this time period has elapsed, CloudFront
@@ -1779,7 +1779,7 @@ export interface CustomErrorResponse {
1779
1779
  * Error Responses</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
1780
1780
  * @public
1781
1781
  */
1782
- ErrorCachingMinTTL?: number;
1782
+ ErrorCachingMinTTL?: number | undefined;
1783
1783
  }
1784
1784
  /**
1785
1785
  * <p>A complex type that controls:</p>
@@ -1810,7 +1810,7 @@ export interface CustomErrorResponses {
1810
1810
  * </p>
1811
1811
  * @public
1812
1812
  */
1813
- Items?: CustomErrorResponse[];
1813
+ Items?: CustomErrorResponse[] | undefined;
1814
1814
  }
1815
1815
  /**
1816
1816
  * <p>A complex type that describes the default cache behavior if you don't specify a
@@ -1841,7 +1841,7 @@ export interface DefaultCacheBehavior {
1841
1841
  * <i>Amazon CloudFront Developer Guide</i>.</p>
1842
1842
  * @public
1843
1843
  */
1844
- TrustedSigners?: TrustedSigners;
1844
+ TrustedSigners?: TrustedSigners | undefined;
1845
1845
  /**
1846
1846
  * <p>A list of key groups that CloudFront can use to validate signed URLs or signed
1847
1847
  * cookies.</p>
@@ -1853,7 +1853,7 @@ export interface DefaultCacheBehavior {
1853
1853
  * <i>Amazon CloudFront Developer Guide</i>.</p>
1854
1854
  * @public
1855
1855
  */
1856
- TrustedKeyGroups?: TrustedKeyGroups;
1856
+ TrustedKeyGroups?: TrustedKeyGroups | undefined;
1857
1857
  /**
1858
1858
  * <p>The protocol that viewers can use to access the files in the origin specified by
1859
1859
  * <code>TargetOriginId</code> when a request matches the path pattern in
@@ -1912,7 +1912,7 @@ export interface DefaultCacheBehavior {
1912
1912
  * origin.</p>
1913
1913
  * @public
1914
1914
  */
1915
- AllowedMethods?: AllowedMethods;
1915
+ AllowedMethods?: AllowedMethods | undefined;
1916
1916
  /**
1917
1917
  * <p>Indicates whether you want to distribute media files in the Microsoft Smooth Streaming
1918
1918
  * format using the origin that is associated with this cache behavior. If so, specify
@@ -1922,7 +1922,7 @@ export interface DefaultCacheBehavior {
1922
1922
  * <code>PathPattern</code>.</p>
1923
1923
  * @public
1924
1924
  */
1925
- SmoothStreaming?: boolean;
1925
+ SmoothStreaming?: boolean | undefined;
1926
1926
  /**
1927
1927
  * <p>Whether you want CloudFront to automatically compress certain files for this cache behavior.
1928
1928
  * If so, specify <code>true</code>; if not, specify <code>false</code>. For more
@@ -1930,34 +1930,34 @@ export interface DefaultCacheBehavior {
1930
1930
  * Compressed Files</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
1931
1931
  * @public
1932
1932
  */
1933
- Compress?: boolean;
1933
+ Compress?: boolean | undefined;
1934
1934
  /**
1935
1935
  * <p>A complex type that contains zero or more Lambda@Edge function associations for a
1936
1936
  * cache behavior.</p>
1937
1937
  * @public
1938
1938
  */
1939
- LambdaFunctionAssociations?: LambdaFunctionAssociations;
1939
+ LambdaFunctionAssociations?: LambdaFunctionAssociations | undefined;
1940
1940
  /**
1941
1941
  * <p>A list of CloudFront functions that are associated with this cache behavior. Your functions
1942
1942
  * must be published to the <code>LIVE</code> stage to associate them with a cache
1943
1943
  * behavior.</p>
1944
1944
  * @public
1945
1945
  */
1946
- FunctionAssociations?: FunctionAssociations;
1946
+ FunctionAssociations?: FunctionAssociations | undefined;
1947
1947
  /**
1948
1948
  * <p>The value of <code>ID</code> for the field-level encryption configuration that you
1949
1949
  * want CloudFront to use for encrypting specific fields of data for the default cache
1950
1950
  * behavior.</p>
1951
1951
  * @public
1952
1952
  */
1953
- FieldLevelEncryptionId?: string;
1953
+ FieldLevelEncryptionId?: string | undefined;
1954
1954
  /**
1955
1955
  * <p>The Amazon Resource Name (ARN) of the real-time log configuration that is attached to
1956
1956
  * this cache behavior. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html">Real-time logs</a> in the
1957
1957
  * <i>Amazon CloudFront Developer Guide</i>.</p>
1958
1958
  * @public
1959
1959
  */
1960
- RealtimeLogConfigArn?: string;
1960
+ RealtimeLogConfigArn?: string | undefined;
1961
1961
  /**
1962
1962
  * <p>The unique identifier of the cache policy that is attached to the default cache
1963
1963
  * behavior. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-the-cache-key.html#cache-key-create-cache-policy">Creating cache policies</a> or <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-cache-policies.html">Using the managed cache policies</a> in the
@@ -1967,19 +1967,19 @@ export interface DefaultCacheBehavior {
1967
1967
  * <code>CachePolicyId</code>.</p>
1968
1968
  * @public
1969
1969
  */
1970
- CachePolicyId?: string;
1970
+ CachePolicyId?: string | undefined;
1971
1971
  /**
1972
1972
  * <p>The unique identifier of the origin request policy that is attached to the default
1973
1973
  * cache behavior. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/controlling-origin-requests.html#origin-request-create-origin-request-policy">Creating origin request policies</a> or <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/using-managed-origin-request-policies.html">Using the managed origin request policies</a> in the
1974
1974
  * <i>Amazon CloudFront Developer Guide</i>.</p>
1975
1975
  * @public
1976
1976
  */
1977
- OriginRequestPolicyId?: string;
1977
+ OriginRequestPolicyId?: string | undefined;
1978
1978
  /**
1979
1979
  * <p>The identifier for a response headers policy.</p>
1980
1980
  * @public
1981
1981
  */
1982
- ResponseHeadersPolicyId?: string;
1982
+ ResponseHeadersPolicyId?: string | undefined;
1983
1983
  /**
1984
1984
  * @deprecated
1985
1985
  *
@@ -1999,7 +1999,7 @@ export interface DefaultCacheBehavior {
1999
1999
  * headers.</p>
2000
2000
  * @public
2001
2001
  */
2002
- ForwardedValues?: ForwardedValues;
2002
+ ForwardedValues?: ForwardedValues | undefined;
2003
2003
  /**
2004
2004
  * @deprecated
2005
2005
  *
@@ -2017,7 +2017,7 @@ export interface DefaultCacheBehavior {
2017
2017
  * <code>Name</code>).</p>
2018
2018
  * @public
2019
2019
  */
2020
- MinTTL?: number;
2020
+ MinTTL?: number | undefined;
2021
2021
  /**
2022
2022
  * @deprecated
2023
2023
  *
@@ -2032,7 +2032,7 @@ export interface DefaultCacheBehavior {
2032
2032
  * <i>Amazon CloudFront Developer Guide</i>.</p>
2033
2033
  * @public
2034
2034
  */
2035
- DefaultTTL?: number;
2035
+ DefaultTTL?: number | undefined;
2036
2036
  /**
2037
2037
  * @deprecated
2038
2038
  *
@@ -2047,7 +2047,7 @@ export interface DefaultCacheBehavior {
2047
2047
  * <i>Amazon CloudFront Developer Guide</i>.</p>
2048
2048
  * @public
2049
2049
  */
2050
- MaxTTL?: number;
2050
+ MaxTTL?: number | undefined;
2051
2051
  }
2052
2052
  /**
2053
2053
  * @public
@@ -2202,7 +2202,7 @@ export interface OriginGroups {
2202
2202
  * <p>The items (origin groups) in a distribution.</p>
2203
2203
  * @public
2204
2204
  */
2205
- Items?: OriginGroup[];
2205
+ Items?: OriginGroup[] | undefined;
2206
2206
  }
2207
2207
  /**
2208
2208
  * <p>A complex type that contains <code>HeaderName</code> and <code>HeaderValue</code>
@@ -2242,7 +2242,7 @@ export interface CustomHeaders {
2242
2242
  * forward to the origin. If Quantity is <code>0</code>, omit <code>Items</code>.</p>
2243
2243
  * @public
2244
2244
  */
2245
- Items?: OriginCustomHeader[];
2245
+ Items?: OriginCustomHeader[] | undefined;
2246
2246
  }
2247
2247
  /**
2248
2248
  * @public
@@ -2340,7 +2340,7 @@ export interface CustomOriginConfig {
2340
2340
  * <i>Amazon CloudFront Developer Guide</i>.</p>
2341
2341
  * @public
2342
2342
  */
2343
- OriginSslProtocols?: OriginSslProtocols;
2343
+ OriginSslProtocols?: OriginSslProtocols | undefined;
2344
2344
  /**
2345
2345
  * <p>Specifies how long, in seconds, CloudFront waits for a response from the origin. This is
2346
2346
  * also known as the <i>origin response timeout</i>. The minimum timeout is 1
@@ -2350,7 +2350,7 @@ export interface CustomOriginConfig {
2350
2350
  * <i>Amazon CloudFront Developer Guide</i>.</p>
2351
2351
  * @public
2352
2352
  */
2353
- OriginReadTimeout?: number;
2353
+ OriginReadTimeout?: number | undefined;
2354
2354
  /**
2355
2355
  * <p>Specifies how long, in seconds, CloudFront persists its connection to the origin. The
2356
2356
  * minimum timeout is 1 second, the maximum is 60 seconds, and the default (if you don't
@@ -2359,7 +2359,7 @@ export interface CustomOriginConfig {
2359
2359
  * <i>Amazon CloudFront Developer Guide</i>.</p>
2360
2360
  * @public
2361
2361
  */
2362
- OriginKeepaliveTimeout?: number;
2362
+ OriginKeepaliveTimeout?: number | undefined;
2363
2363
  }
2364
2364
  /**
2365
2365
  * <p>CloudFront Origin Shield.</p>
@@ -2388,7 +2388,7 @@ export interface OriginShield {
2388
2388
  * <i>Amazon CloudFront Developer Guide</i>.</p>
2389
2389
  * @public
2390
2390
  */
2391
- OriginShieldRegion?: string;
2391
+ OriginShieldRegion?: string | undefined;
2392
2392
  }
2393
2393
  /**
2394
2394
  * <p>A complex type that contains information about the Amazon S3 origin. If the origin is a
@@ -2488,7 +2488,7 @@ export interface Origin {
2488
2488
  * <i>Amazon CloudFront Developer Guide</i>.</p>
2489
2489
  * @public
2490
2490
  */
2491
- OriginPath?: string;
2491
+ OriginPath?: string | undefined;
2492
2492
  /**
2493
2493
  * <p>A list of HTTP header names and values that CloudFront adds to the requests that it sends to
2494
2494
  * the origin.</p>
@@ -2496,7 +2496,7 @@ export interface Origin {
2496
2496
  * <i>Amazon CloudFront Developer Guide</i>.</p>
2497
2497
  * @public
2498
2498
  */
2499
- CustomHeaders?: CustomHeaders;
2499
+ CustomHeaders?: CustomHeaders | undefined;
2500
2500
  /**
2501
2501
  * <p>Use this type to specify an origin that is an Amazon S3 bucket that is not configured with
2502
2502
  * static website hosting. To specify any other type of origin, including an Amazon S3 bucket
@@ -2504,7 +2504,7 @@ export interface Origin {
2504
2504
  * type instead.</p>
2505
2505
  * @public
2506
2506
  */
2507
- S3OriginConfig?: S3OriginConfig;
2507
+ S3OriginConfig?: S3OriginConfig | undefined;
2508
2508
  /**
2509
2509
  * <p>Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If
2510
2510
  * the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3
@@ -2512,7 +2512,7 @@ export interface Origin {
2512
2512
  * <code>S3OriginConfig</code> type instead.</p>
2513
2513
  * @public
2514
2514
  */
2515
- CustomOriginConfig?: CustomOriginConfig;
2515
+ CustomOriginConfig?: CustomOriginConfig | undefined;
2516
2516
  /**
2517
2517
  * <p>The number of times that CloudFront attempts to connect to the origin. The minimum number is
2518
2518
  * 1, the maximum is 3, and the default (if you don't specify otherwise) is 3.</p>
@@ -2523,7 +2523,7 @@ export interface Origin {
2523
2523
  * <i>Amazon CloudFront Developer Guide</i>.</p>
2524
2524
  * @public
2525
2525
  */
2526
- ConnectionAttempts?: number;
2526
+ ConnectionAttempts?: number | undefined;
2527
2527
  /**
2528
2528
  * <p>The number of seconds that CloudFront waits when trying to establish a connection to the
2529
2529
  * origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if
@@ -2532,21 +2532,21 @@ export interface Origin {
2532
2532
  * <i>Amazon CloudFront Developer Guide</i>.</p>
2533
2533
  * @public
2534
2534
  */
2535
- ConnectionTimeout?: number;
2535
+ ConnectionTimeout?: number | undefined;
2536
2536
  /**
2537
2537
  * <p>CloudFront Origin Shield. Using Origin Shield can help reduce the load on your
2538
2538
  * origin.</p>
2539
2539
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/origin-shield.html">Using Origin Shield</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
2540
2540
  * @public
2541
2541
  */
2542
- OriginShield?: OriginShield;
2542
+ OriginShield?: OriginShield | undefined;
2543
2543
  /**
2544
2544
  * <p>The unique identifier of an origin access control for this origin.</p>
2545
2545
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/private-content-restricting-access-to-s3.html">Restricting access to an Amazon S3 origin</a> in the
2546
2546
  * <i>Amazon CloudFront Developer Guide</i>.</p>
2547
2547
  * @public
2548
2548
  */
2549
- OriginAccessControlId?: string;
2549
+ OriginAccessControlId?: string | undefined;
2550
2550
  }
2551
2551
  /**
2552
2552
  * <p>Contains information about the origins for this distribution.</p>
@@ -2642,7 +2642,7 @@ export interface GeoRestriction {
2642
2642
  * CloudFront console, which includes both country names and codes.</p>
2643
2643
  * @public
2644
2644
  */
2645
- Items?: string[];
2645
+ Items?: string[] | undefined;
2646
2646
  }
2647
2647
  /**
2648
2648
  * <p>A complex type that identifies ways in which you want to restrict distribution of your
@@ -2775,7 +2775,7 @@ export interface ViewerCertificate {
2775
2775
  * </ul>
2776
2776
  * @public
2777
2777
  */
2778
- CloudFrontDefaultCertificate?: boolean;
2778
+ CloudFrontDefaultCertificate?: boolean | undefined;
2779
2779
  /**
2780
2780
  * <p>If the distribution uses <code>Aliases</code> (alternate domain names or CNAMEs) and
2781
2781
  * the SSL/TLS certificate is stored in <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_server-certs.html">Identity and Access Management (IAM)</a>, provide the ID of the IAM certificate.</p>
@@ -2783,7 +2783,7 @@ export interface ViewerCertificate {
2783
2783
  * <code>MinimumProtocolVersion</code> and <code>SSLSupportMethod</code>. </p>
2784
2784
  * @public
2785
2785
  */
2786
- IAMCertificateId?: string;
2786
+ IAMCertificateId?: string | undefined;
2787
2787
  /**
2788
2788
  * <p>If the distribution uses <code>Aliases</code> (alternate domain names or CNAMEs) and
2789
2789
  * the SSL/TLS certificate is stored in <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-overview.html">Certificate Manager (ACM)</a>, provide the Amazon Resource Name
@@ -2793,7 +2793,7 @@ export interface ViewerCertificate {
2793
2793
  * <code>MinimumProtocolVersion</code> and <code>SSLSupportMethod</code>.</p>
2794
2794
  * @public
2795
2795
  */
2796
- ACMCertificateArn?: string;
2796
+ ACMCertificateArn?: string | undefined;
2797
2797
  /**
2798
2798
  * <p>If the distribution uses <code>Aliases</code> (alternate domain names or CNAMEs),
2799
2799
  * specify which viewers the distribution accepts HTTPS connections from.</p>
@@ -2823,7 +2823,7 @@ export interface ViewerCertificate {
2823
2823
  * <code>d111111abcdef8.cloudfront.net</code>, don't set a value for this field.</p>
2824
2824
  * @public
2825
2825
  */
2826
- SSLSupportMethod?: SSLSupportMethod;
2826
+ SSLSupportMethod?: SSLSupportMethod | undefined;
2827
2827
  /**
2828
2828
  * <p>If the distribution uses <code>Aliases</code> (alternate domain names or CNAMEs),
2829
2829
  * specify the security policy that you want CloudFront to use for HTTPS connections with
@@ -2853,7 +2853,7 @@ export interface ViewerCertificate {
2853
2853
  * here.</p>
2854
2854
  * @public
2855
2855
  */
2856
- MinimumProtocolVersion?: MinimumProtocolVersion;
2856
+ MinimumProtocolVersion?: MinimumProtocolVersion | undefined;
2857
2857
  /**
2858
2858
  * @deprecated
2859
2859
  *
@@ -2877,7 +2877,7 @@ export interface ViewerCertificate {
2877
2877
  * </ul>
2878
2878
  * @public
2879
2879
  */
2880
- Certificate?: string;
2880
+ Certificate?: string | undefined;
2881
2881
  /**
2882
2882
  * @deprecated
2883
2883
  *
@@ -2901,7 +2901,7 @@ export interface ViewerCertificate {
2901
2901
  * </ul>
2902
2902
  * @public
2903
2903
  */
2904
- CertificateSource?: CertificateSource;
2904
+ CertificateSource?: CertificateSource | undefined;
2905
2905
  }
2906
2906
  /**
2907
2907
  * <p>A distribution configuration.</p>
@@ -2924,7 +2924,7 @@ export interface DistributionConfig {
2924
2924
  * any, for this distribution.</p>
2925
2925
  * @public
2926
2926
  */
2927
- Aliases?: Aliases;
2927
+ Aliases?: Aliases | undefined;
2928
2928
  /**
2929
2929
  * <p>The object that you want CloudFront to request from your origin (for example,
2930
2930
  * <code>index.html</code>) when a viewer requests the root URL for your distribution
@@ -2944,7 +2944,7 @@ export interface DistributionConfig {
2944
2944
  * Default Root Object</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
2945
2945
  * @public
2946
2946
  */
2947
- DefaultRootObject?: string;
2947
+ DefaultRootObject?: string | undefined;
2948
2948
  /**
2949
2949
  * <p>A complex type that contains information about origins for this distribution.</p>
2950
2950
  * @public
@@ -2955,7 +2955,7 @@ export interface DistributionConfig {
2955
2955
  * distribution.</p>
2956
2956
  * @public
2957
2957
  */
2958
- OriginGroups?: OriginGroups;
2958
+ OriginGroups?: OriginGroups | undefined;
2959
2959
  /**
2960
2960
  * <p>A complex type that describes the default cache behavior if you don't specify a
2961
2961
  * <code>CacheBehavior</code> element or if files don't match any of the values of
@@ -2968,7 +2968,7 @@ export interface DistributionConfig {
2968
2968
  * <p>A complex type that contains zero or more <code>CacheBehavior</code> elements.</p>
2969
2969
  * @public
2970
2970
  */
2971
- CacheBehaviors?: CacheBehaviors;
2971
+ CacheBehaviors?: CacheBehaviors | undefined;
2972
2972
  /**
2973
2973
  * <p>A complex type that controls the following:</p>
2974
2974
  * <ul>
@@ -2984,7 +2984,7 @@ export interface DistributionConfig {
2984
2984
  * Error Responses</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
2985
2985
  * @public
2986
2986
  */
2987
- CustomErrorResponses?: CustomErrorResponses;
2987
+ CustomErrorResponses?: CustomErrorResponses | undefined;
2988
2988
  /**
2989
2989
  * <p>A comment to describe the distribution. The comment cannot be longer than
2990
2990
  * 128 characters.</p>
@@ -2998,7 +2998,7 @@ export interface DistributionConfig {
2998
2998
  * the <i>Amazon CloudFront Developer Guide</i>.</p>
2999
2999
  * @public
3000
3000
  */
3001
- Logging?: LoggingConfig;
3001
+ Logging?: LoggingConfig | undefined;
3002
3002
  /**
3003
3003
  * <p>The price class that corresponds with the maximum price that you want to pay for CloudFront
3004
3004
  * service. If you specify <code>PriceClass_All</code>, CloudFront responds to requests for your
@@ -3014,7 +3014,7 @@ export interface DistributionConfig {
3014
3014
  * Pricing</a>.</p>
3015
3015
  * @public
3016
3016
  */
3017
- PriceClass?: PriceClass;
3017
+ PriceClass?: PriceClass | undefined;
3018
3018
  /**
3019
3019
  * <p>From this field, you can enable or disable the selected distribution.</p>
3020
3020
  * @public
@@ -3025,13 +3025,13 @@ export interface DistributionConfig {
3025
3025
  * communicating with viewers.</p>
3026
3026
  * @public
3027
3027
  */
3028
- ViewerCertificate?: ViewerCertificate;
3028
+ ViewerCertificate?: ViewerCertificate | undefined;
3029
3029
  /**
3030
3030
  * <p>A complex type that identifies ways in which you want to restrict distribution of your
3031
3031
  * content.</p>
3032
3032
  * @public
3033
3033
  */
3034
- Restrictions?: Restrictions;
3034
+ Restrictions?: Restrictions | undefined;
3035
3035
  /**
3036
3036
  * <p>A unique identifier that specifies the WAF web ACL, if any, to associate with this
3037
3037
  * distribution. To specify a web ACL created using the latest version of WAF, use the
@@ -3048,7 +3048,7 @@ export interface DistributionConfig {
3048
3048
  * <a href="https://docs.aws.amazon.com/waf/latest/developerguide/what-is-aws-waf.html">WAF Developer Guide</a>.</p>
3049
3049
  * @public
3050
3050
  */
3051
- WebACLId?: string;
3051
+ WebACLId?: string | undefined;
3052
3052
  /**
3053
3053
  * <p>(Optional) Specify the HTTP version(s) that you want viewers to use to communicate with
3054
3054
  * CloudFront. The default value for new web distributions is <code>http2</code>. Viewers that
@@ -3062,7 +3062,7 @@ export interface DistributionConfig {
3062
3062
  * TLSv1.3 ciphers, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/secure-connections-supported-viewer-protocols-ciphers.html">Supported protocols and ciphers between viewers and CloudFront</a>.</p>
3063
3063
  * @public
3064
3064
  */
3065
- HttpVersion?: HttpVersion;
3065
+ HttpVersion?: HttpVersion | undefined;
3066
3066
  /**
3067
3067
  * <p>If you want CloudFront to respond to IPv6 DNS requests with an IPv6 address for your
3068
3068
  * distribution, specify <code>true</code>. If you specify <code>false</code>, CloudFront
@@ -3096,20 +3096,20 @@ export interface DistributionConfig {
3096
3096
  * distribution regardless of the IP address format of the viewer request.</p>
3097
3097
  * @public
3098
3098
  */
3099
- IsIPV6Enabled?: boolean;
3099
+ IsIPV6Enabled?: boolean | undefined;
3100
3100
  /**
3101
3101
  * <p>The identifier of a continuous deployment policy. For more information, see
3102
3102
  * <code>CreateContinuousDeploymentPolicy</code>.</p>
3103
3103
  * @public
3104
3104
  */
3105
- ContinuousDeploymentPolicyId?: string;
3105
+ ContinuousDeploymentPolicyId?: string | undefined;
3106
3106
  /**
3107
3107
  * <p>A Boolean that indicates whether this is a staging distribution. When this value is
3108
3108
  * <code>true</code>, this is a staging distribution. When this value is
3109
3109
  * <code>false</code>, this is not a staging distribution.</p>
3110
3110
  * @public
3111
3111
  */
3112
- Staging?: boolean;
3112
+ Staging?: boolean | undefined;
3113
3113
  }
3114
3114
  /**
3115
3115
  * <p>A distribution tells CloudFront where you want content to be delivered from, and the details
@@ -3159,13 +3159,13 @@ export interface Distribution {
3159
3159
  * cookies.</p>
3160
3160
  * @public
3161
3161
  */
3162
- ActiveTrustedSigners?: ActiveTrustedSigners;
3162
+ ActiveTrustedSigners?: ActiveTrustedSigners | undefined;
3163
3163
  /**
3164
3164
  * <p>This field contains a list of key groups and the public keys in each key group that
3165
3165
  * CloudFront can use to verify the signatures of signed URLs or signed cookies.</p>
3166
3166
  * @public
3167
3167
  */
3168
- ActiveTrustedKeyGroups?: ActiveTrustedKeyGroups;
3168
+ ActiveTrustedKeyGroups?: ActiveTrustedKeyGroups | undefined;
3169
3169
  /**
3170
3170
  * <p>The distribution's configuration.</p>
3171
3171
  * @public
@@ -3180,7 +3180,7 @@ export interface Distribution {
3180
3180
  * services in China</i>.</p>
3181
3181
  * @public
3182
3182
  */
3183
- AliasICPRecordals?: AliasICPRecordal[];
3183
+ AliasICPRecordals?: AliasICPRecordal[] | undefined;
3184
3184
  }
3185
3185
  /**
3186
3186
  * @public
@@ -3191,17 +3191,17 @@ export interface CopyDistributionResult {
3191
3191
  * about how to track and manage content delivery.</p>
3192
3192
  * @public
3193
3193
  */
3194
- Distribution?: Distribution;
3194
+ Distribution?: Distribution | undefined;
3195
3195
  /**
3196
3196
  * <p>The URL of the staging distribution.</p>
3197
3197
  * @public
3198
3198
  */
3199
- Location?: string;
3199
+ Location?: string | undefined;
3200
3200
  /**
3201
3201
  * <p>The version identifier for the current version of the staging distribution.</p>
3202
3202
  * @public
3203
3203
  */
3204
- ETag?: string;
3204
+ ETag?: string | undefined;
3205
3205
  }
3206
3206
  /**
3207
3207
  * <p>The caller reference you attempted to create the distribution with is associated with
@@ -3211,7 +3211,7 @@ export interface CopyDistributionResult {
3211
3211
  export declare class DistributionAlreadyExists extends __BaseException {
3212
3212
  readonly name: "DistributionAlreadyExists";
3213
3213
  readonly $fault: "client";
3214
- Message?: string;
3214
+ Message?: string | undefined;
3215
3215
  /**
3216
3216
  * @internal
3217
3217
  */
@@ -3225,7 +3225,7 @@ export declare class DistributionAlreadyExists extends __BaseException {
3225
3225
  export declare class IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior extends __BaseException {
3226
3226
  readonly name: "IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavior";
3227
3227
  readonly $fault: "client";
3228
- Message?: string;
3228
+ Message?: string | undefined;
3229
3229
  /**
3230
3230
  * @internal
3231
3231
  */
@@ -3239,7 +3239,7 @@ export declare class IllegalFieldLevelEncryptionConfigAssociationWithCacheBehavi
3239
3239
  export declare class InconsistentQuantities extends __BaseException {
3240
3240
  readonly name: "InconsistentQuantities";
3241
3241
  readonly $fault: "client";
3242
- Message?: string;
3242
+ Message?: string | undefined;
3243
3243
  /**
3244
3244
  * @internal
3245
3245
  */
@@ -3252,7 +3252,7 @@ export declare class InconsistentQuantities extends __BaseException {
3252
3252
  export declare class InvalidDefaultRootObject extends __BaseException {
3253
3253
  readonly name: "InvalidDefaultRootObject";
3254
3254
  readonly $fault: "client";
3255
- Message?: string;
3255
+ Message?: string | undefined;
3256
3256
  /**
3257
3257
  * @internal
3258
3258
  */
@@ -3265,7 +3265,7 @@ export declare class InvalidDefaultRootObject extends __BaseException {
3265
3265
  export declare class InvalidErrorCode extends __BaseException {
3266
3266
  readonly name: "InvalidErrorCode";
3267
3267
  readonly $fault: "client";
3268
- Message?: string;
3268
+ Message?: string | undefined;
3269
3269
  /**
3270
3270
  * @internal
3271
3271
  */
@@ -3280,7 +3280,7 @@ export declare class InvalidErrorCode extends __BaseException {
3280
3280
  export declare class InvalidForwardCookies extends __BaseException {
3281
3281
  readonly name: "InvalidForwardCookies";
3282
3282
  readonly $fault: "client";
3283
- Message?: string;
3283
+ Message?: string | undefined;
3284
3284
  /**
3285
3285
  * @internal
3286
3286
  */
@@ -3293,7 +3293,7 @@ export declare class InvalidForwardCookies extends __BaseException {
3293
3293
  export declare class InvalidFunctionAssociation extends __BaseException {
3294
3294
  readonly name: "InvalidFunctionAssociation";
3295
3295
  readonly $fault: "client";
3296
- Message?: string;
3296
+ Message?: string | undefined;
3297
3297
  /**
3298
3298
  * @internal
3299
3299
  */
@@ -3306,7 +3306,7 @@ export declare class InvalidFunctionAssociation extends __BaseException {
3306
3306
  export declare class InvalidGeoRestrictionParameter extends __BaseException {
3307
3307
  readonly name: "InvalidGeoRestrictionParameter";
3308
3308
  readonly $fault: "client";
3309
- Message?: string;
3309
+ Message?: string | undefined;
3310
3310
  /**
3311
3311
  * @internal
3312
3312
  */
@@ -3319,7 +3319,7 @@ export declare class InvalidGeoRestrictionParameter extends __BaseException {
3319
3319
  export declare class InvalidHeadersForS3Origin extends __BaseException {
3320
3320
  readonly name: "InvalidHeadersForS3Origin";
3321
3321
  readonly $fault: "client";
3322
- Message?: string;
3322
+ Message?: string | undefined;
3323
3323
  /**
3324
3324
  * @internal
3325
3325
  */
@@ -3332,7 +3332,7 @@ export declare class InvalidHeadersForS3Origin extends __BaseException {
3332
3332
  export declare class InvalidIfMatchVersion extends __BaseException {
3333
3333
  readonly name: "InvalidIfMatchVersion";
3334
3334
  readonly $fault: "client";
3335
- Message?: string;
3335
+ Message?: string | undefined;
3336
3336
  /**
3337
3337
  * @internal
3338
3338
  */
@@ -3345,7 +3345,7 @@ export declare class InvalidIfMatchVersion extends __BaseException {
3345
3345
  export declare class InvalidLambdaFunctionAssociation extends __BaseException {
3346
3346
  readonly name: "InvalidLambdaFunctionAssociation";
3347
3347
  readonly $fault: "client";
3348
- Message?: string;
3348
+ Message?: string | undefined;
3349
3349
  /**
3350
3350
  * @internal
3351
3351
  */
@@ -3358,7 +3358,7 @@ export declare class InvalidLambdaFunctionAssociation extends __BaseException {
3358
3358
  export declare class InvalidLocationCode extends __BaseException {
3359
3359
  readonly name: "InvalidLocationCode";
3360
3360
  readonly $fault: "client";
3361
- Message?: string;
3361
+ Message?: string | undefined;
3362
3362
  /**
3363
3363
  * @internal
3364
3364
  */
@@ -3371,7 +3371,7 @@ export declare class InvalidLocationCode extends __BaseException {
3371
3371
  export declare class InvalidMinimumProtocolVersion extends __BaseException {
3372
3372
  readonly name: "InvalidMinimumProtocolVersion";
3373
3373
  readonly $fault: "client";
3374
- Message?: string;
3374
+ Message?: string | undefined;
3375
3375
  /**
3376
3376
  * @internal
3377
3377
  */
@@ -3384,7 +3384,7 @@ export declare class InvalidMinimumProtocolVersion extends __BaseException {
3384
3384
  export declare class InvalidOrigin extends __BaseException {
3385
3385
  readonly name: "InvalidOrigin";
3386
3386
  readonly $fault: "client";
3387
- Message?: string;
3387
+ Message?: string | undefined;
3388
3388
  /**
3389
3389
  * @internal
3390
3390
  */
@@ -3397,7 +3397,7 @@ export declare class InvalidOrigin extends __BaseException {
3397
3397
  export declare class InvalidOriginAccessControl extends __BaseException {
3398
3398
  readonly name: "InvalidOriginAccessControl";
3399
3399
  readonly $fault: "client";
3400
- Message?: string;
3400
+ Message?: string | undefined;
3401
3401
  /**
3402
3402
  * @internal
3403
3403
  */
@@ -3410,7 +3410,7 @@ export declare class InvalidOriginAccessControl extends __BaseException {
3410
3410
  export declare class InvalidOriginAccessIdentity extends __BaseException {
3411
3411
  readonly name: "InvalidOriginAccessIdentity";
3412
3412
  readonly $fault: "client";
3413
- Message?: string;
3413
+ Message?: string | undefined;
3414
3414
  /**
3415
3415
  * @internal
3416
3416
  */
@@ -3423,7 +3423,7 @@ export declare class InvalidOriginAccessIdentity extends __BaseException {
3423
3423
  export declare class InvalidOriginKeepaliveTimeout extends __BaseException {
3424
3424
  readonly name: "InvalidOriginKeepaliveTimeout";
3425
3425
  readonly $fault: "client";
3426
- Message?: string;
3426
+ Message?: string | undefined;
3427
3427
  /**
3428
3428
  * @internal
3429
3429
  */
@@ -3436,7 +3436,7 @@ export declare class InvalidOriginKeepaliveTimeout extends __BaseException {
3436
3436
  export declare class InvalidOriginReadTimeout extends __BaseException {
3437
3437
  readonly name: "InvalidOriginReadTimeout";
3438
3438
  readonly $fault: "client";
3439
- Message?: string;
3439
+ Message?: string | undefined;
3440
3440
  /**
3441
3441
  * @internal
3442
3442
  */
@@ -3450,7 +3450,7 @@ export declare class InvalidOriginReadTimeout extends __BaseException {
3450
3450
  export declare class InvalidProtocolSettings extends __BaseException {
3451
3451
  readonly name: "InvalidProtocolSettings";
3452
3452
  readonly $fault: "client";
3453
- Message?: string;
3453
+ Message?: string | undefined;
3454
3454
  /**
3455
3455
  * @internal
3456
3456
  */
@@ -3463,7 +3463,7 @@ export declare class InvalidProtocolSettings extends __BaseException {
3463
3463
  export declare class InvalidQueryStringParameters extends __BaseException {
3464
3464
  readonly name: "InvalidQueryStringParameters";
3465
3465
  readonly $fault: "client";
3466
- Message?: string;
3466
+ Message?: string | undefined;
3467
3467
  /**
3468
3468
  * @internal
3469
3469
  */
@@ -3477,7 +3477,7 @@ export declare class InvalidQueryStringParameters extends __BaseException {
3477
3477
  export declare class InvalidRelativePath extends __BaseException {
3478
3478
  readonly name: "InvalidRelativePath";
3479
3479
  readonly $fault: "client";
3480
- Message?: string;
3480
+ Message?: string | undefined;
3481
3481
  /**
3482
3482
  * @internal
3483
3483
  */
@@ -3492,7 +3492,7 @@ export declare class InvalidRelativePath extends __BaseException {
3492
3492
  export declare class InvalidRequiredProtocol extends __BaseException {
3493
3493
  readonly name: "InvalidRequiredProtocol";
3494
3494
  readonly $fault: "client";
3495
- Message?: string;
3495
+ Message?: string | undefined;
3496
3496
  /**
3497
3497
  * @internal
3498
3498
  */
@@ -3505,7 +3505,7 @@ export declare class InvalidRequiredProtocol extends __BaseException {
3505
3505
  export declare class InvalidResponseCode extends __BaseException {
3506
3506
  readonly name: "InvalidResponseCode";
3507
3507
  readonly $fault: "client";
3508
- Message?: string;
3508
+ Message?: string | undefined;
3509
3509
  /**
3510
3510
  * @internal
3511
3511
  */
@@ -3518,7 +3518,7 @@ export declare class InvalidResponseCode extends __BaseException {
3518
3518
  export declare class InvalidTTLOrder extends __BaseException {
3519
3519
  readonly name: "InvalidTTLOrder";
3520
3520
  readonly $fault: "client";
3521
- Message?: string;
3521
+ Message?: string | undefined;
3522
3522
  /**
3523
3523
  * @internal
3524
3524
  */
@@ -3531,7 +3531,7 @@ export declare class InvalidTTLOrder extends __BaseException {
3531
3531
  export declare class InvalidViewerCertificate extends __BaseException {
3532
3532
  readonly name: "InvalidViewerCertificate";
3533
3533
  readonly $fault: "client";
3534
- Message?: string;
3534
+ Message?: string | undefined;
3535
3535
  /**
3536
3536
  * @internal
3537
3537
  */
@@ -3548,7 +3548,7 @@ export declare class InvalidViewerCertificate extends __BaseException {
3548
3548
  export declare class InvalidWebACLId extends __BaseException {
3549
3549
  readonly name: "InvalidWebACLId";
3550
3550
  readonly $fault: "client";
3551
- Message?: string;
3551
+ Message?: string | undefined;
3552
3552
  /**
3553
3553
  * @internal
3554
3554
  */
@@ -3562,7 +3562,7 @@ export declare class InvalidWebACLId extends __BaseException {
3562
3562
  export declare class MissingBody extends __BaseException {
3563
3563
  readonly name: "MissingBody";
3564
3564
  readonly $fault: "client";
3565
- Message?: string;
3565
+ Message?: string | undefined;
3566
3566
  /**
3567
3567
  * @internal
3568
3568
  */
@@ -3575,7 +3575,7 @@ export declare class MissingBody extends __BaseException {
3575
3575
  export declare class NoSuchCachePolicy extends __BaseException {
3576
3576
  readonly name: "NoSuchCachePolicy";
3577
3577
  readonly $fault: "client";
3578
- Message?: string;
3578
+ Message?: string | undefined;
3579
3579
  /**
3580
3580
  * @internal
3581
3581
  */
@@ -3588,7 +3588,7 @@ export declare class NoSuchCachePolicy extends __BaseException {
3588
3588
  export declare class NoSuchFieldLevelEncryptionConfig extends __BaseException {
3589
3589
  readonly name: "NoSuchFieldLevelEncryptionConfig";
3590
3590
  readonly $fault: "client";
3591
- Message?: string;
3591
+ Message?: string | undefined;
3592
3592
  /**
3593
3593
  * @internal
3594
3594
  */
@@ -3601,7 +3601,7 @@ export declare class NoSuchFieldLevelEncryptionConfig extends __BaseException {
3601
3601
  export declare class NoSuchOrigin extends __BaseException {
3602
3602
  readonly name: "NoSuchOrigin";
3603
3603
  readonly $fault: "client";
3604
- Message?: string;
3604
+ Message?: string | undefined;
3605
3605
  /**
3606
3606
  * @internal
3607
3607
  */
@@ -3614,7 +3614,7 @@ export declare class NoSuchOrigin extends __BaseException {
3614
3614
  export declare class NoSuchOriginRequestPolicy extends __BaseException {
3615
3615
  readonly name: "NoSuchOriginRequestPolicy";
3616
3616
  readonly $fault: "client";
3617
- Message?: string;
3617
+ Message?: string | undefined;
3618
3618
  /**
3619
3619
  * @internal
3620
3620
  */
@@ -3627,7 +3627,7 @@ export declare class NoSuchOriginRequestPolicy extends __BaseException {
3627
3627
  export declare class NoSuchRealtimeLogConfig extends __BaseException {
3628
3628
  readonly name: "NoSuchRealtimeLogConfig";
3629
3629
  readonly $fault: "client";
3630
- Message?: string;
3630
+ Message?: string | undefined;
3631
3631
  /**
3632
3632
  * @internal
3633
3633
  */
@@ -3640,7 +3640,7 @@ export declare class NoSuchRealtimeLogConfig extends __BaseException {
3640
3640
  export declare class NoSuchResponseHeadersPolicy extends __BaseException {
3641
3641
  readonly name: "NoSuchResponseHeadersPolicy";
3642
3642
  readonly $fault: "client";
3643
- Message?: string;
3643
+ Message?: string | undefined;
3644
3644
  /**
3645
3645
  * @internal
3646
3646
  */
@@ -3654,7 +3654,7 @@ export declare class NoSuchResponseHeadersPolicy extends __BaseException {
3654
3654
  export declare class PreconditionFailed extends __BaseException {
3655
3655
  readonly name: "PreconditionFailed";
3656
3656
  readonly $fault: "client";
3657
- Message?: string;
3657
+ Message?: string | undefined;
3658
3658
  /**
3659
3659
  * @internal
3660
3660
  */
@@ -3667,7 +3667,7 @@ export declare class PreconditionFailed extends __BaseException {
3667
3667
  export declare class RealtimeLogConfigOwnerMismatch extends __BaseException {
3668
3668
  readonly name: "RealtimeLogConfigOwnerMismatch";
3669
3669
  readonly $fault: "client";
3670
- Message?: string;
3670
+ Message?: string | undefined;
3671
3671
  /**
3672
3672
  * @internal
3673
3673
  */
@@ -3680,7 +3680,7 @@ export declare class RealtimeLogConfigOwnerMismatch extends __BaseException {
3680
3680
  export declare class TooManyCacheBehaviors extends __BaseException {
3681
3681
  readonly name: "TooManyCacheBehaviors";
3682
3682
  readonly $fault: "client";
3683
- Message?: string;
3683
+ Message?: string | undefined;
3684
3684
  /**
3685
3685
  * @internal
3686
3686
  */
@@ -3693,7 +3693,7 @@ export declare class TooManyCacheBehaviors extends __BaseException {
3693
3693
  export declare class TooManyCertificates extends __BaseException {
3694
3694
  readonly name: "TooManyCertificates";
3695
3695
  readonly $fault: "client";
3696
- Message?: string;
3696
+ Message?: string | undefined;
3697
3697
  /**
3698
3698
  * @internal
3699
3699
  */
@@ -3707,7 +3707,7 @@ export declare class TooManyCertificates extends __BaseException {
3707
3707
  export declare class TooManyCookieNamesInWhiteList extends __BaseException {
3708
3708
  readonly name: "TooManyCookieNamesInWhiteList";
3709
3709
  readonly $fault: "client";
3710
- Message?: string;
3710
+ Message?: string | undefined;
3711
3711
  /**
3712
3712
  * @internal
3713
3713
  */
@@ -3721,7 +3721,7 @@ export declare class TooManyCookieNamesInWhiteList extends __BaseException {
3721
3721
  export declare class TooManyDistributions extends __BaseException {
3722
3722
  readonly name: "TooManyDistributions";
3723
3723
  readonly $fault: "client";
3724
- Message?: string;
3724
+ Message?: string | undefined;
3725
3725
  /**
3726
3726
  * @internal
3727
3727
  */
@@ -3736,7 +3736,7 @@ export declare class TooManyDistributions extends __BaseException {
3736
3736
  export declare class TooManyDistributionsAssociatedToCachePolicy extends __BaseException {
3737
3737
  readonly name: "TooManyDistributionsAssociatedToCachePolicy";
3738
3738
  readonly $fault: "client";
3739
- Message?: string;
3739
+ Message?: string | undefined;
3740
3740
  /**
3741
3741
  * @internal
3742
3742
  */
@@ -3750,7 +3750,7 @@ export declare class TooManyDistributionsAssociatedToCachePolicy extends __BaseE
3750
3750
  export declare class TooManyDistributionsAssociatedToFieldLevelEncryptionConfig extends __BaseException {
3751
3751
  readonly name: "TooManyDistributionsAssociatedToFieldLevelEncryptionConfig";
3752
3752
  readonly $fault: "client";
3753
- Message?: string;
3753
+ Message?: string | undefined;
3754
3754
  /**
3755
3755
  * @internal
3756
3756
  */
@@ -3765,7 +3765,7 @@ export declare class TooManyDistributionsAssociatedToFieldLevelEncryptionConfig
3765
3765
  export declare class TooManyDistributionsAssociatedToKeyGroup extends __BaseException {
3766
3766
  readonly name: "TooManyDistributionsAssociatedToKeyGroup";
3767
3767
  readonly $fault: "client";
3768
- Message?: string;
3768
+ Message?: string | undefined;
3769
3769
  /**
3770
3770
  * @internal
3771
3771
  */
@@ -3781,7 +3781,7 @@ export declare class TooManyDistributionsAssociatedToKeyGroup extends __BaseExce
3781
3781
  export declare class TooManyDistributionsAssociatedToOriginAccessControl extends __BaseException {
3782
3782
  readonly name: "TooManyDistributionsAssociatedToOriginAccessControl";
3783
3783
  readonly $fault: "client";
3784
- Message?: string;
3784
+ Message?: string | undefined;
3785
3785
  /**
3786
3786
  * @internal
3787
3787
  */
@@ -3796,7 +3796,7 @@ export declare class TooManyDistributionsAssociatedToOriginAccessControl extends
3796
3796
  export declare class TooManyDistributionsAssociatedToOriginRequestPolicy extends __BaseException {
3797
3797
  readonly name: "TooManyDistributionsAssociatedToOriginRequestPolicy";
3798
3798
  readonly $fault: "client";
3799
- Message?: string;
3799
+ Message?: string | undefined;
3800
3800
  /**
3801
3801
  * @internal
3802
3802
  */
@@ -3812,7 +3812,7 @@ export declare class TooManyDistributionsAssociatedToOriginRequestPolicy extends
3812
3812
  export declare class TooManyDistributionsAssociatedToResponseHeadersPolicy extends __BaseException {
3813
3813
  readonly name: "TooManyDistributionsAssociatedToResponseHeadersPolicy";
3814
3814
  readonly $fault: "client";
3815
- Message?: string;
3815
+ Message?: string | undefined;
3816
3816
  /**
3817
3817
  * @internal
3818
3818
  */
@@ -3827,7 +3827,7 @@ export declare class TooManyDistributionsAssociatedToResponseHeadersPolicy exten
3827
3827
  export declare class TooManyDistributionsWithFunctionAssociations extends __BaseException {
3828
3828
  readonly name: "TooManyDistributionsWithFunctionAssociations";
3829
3829
  readonly $fault: "client";
3830
- Message?: string;
3830
+ Message?: string | undefined;
3831
3831
  /**
3832
3832
  * @internal
3833
3833
  */
@@ -3841,7 +3841,7 @@ export declare class TooManyDistributionsWithFunctionAssociations extends __Base
3841
3841
  export declare class TooManyDistributionsWithLambdaAssociations extends __BaseException {
3842
3842
  readonly name: "TooManyDistributionsWithLambdaAssociations";
3843
3843
  readonly $fault: "client";
3844
- Message?: string;
3844
+ Message?: string | undefined;
3845
3845
  /**
3846
3846
  * @internal
3847
3847
  */
@@ -3855,7 +3855,7 @@ export declare class TooManyDistributionsWithLambdaAssociations extends __BaseEx
3855
3855
  export declare class TooManyDistributionsWithSingleFunctionARN extends __BaseException {
3856
3856
  readonly name: "TooManyDistributionsWithSingleFunctionARN";
3857
3857
  readonly $fault: "client";
3858
- Message?: string;
3858
+ Message?: string | undefined;
3859
3859
  /**
3860
3860
  * @internal
3861
3861
  */
@@ -3870,7 +3870,7 @@ export declare class TooManyDistributionsWithSingleFunctionARN extends __BaseExc
3870
3870
  export declare class TooManyFunctionAssociations extends __BaseException {
3871
3871
  readonly name: "TooManyFunctionAssociations";
3872
3872
  readonly $fault: "client";
3873
- Message?: string;
3873
+ Message?: string | undefined;
3874
3874
  /**
3875
3875
  * @internal
3876
3876
  */
@@ -3883,7 +3883,7 @@ export declare class TooManyFunctionAssociations extends __BaseException {
3883
3883
  export declare class TooManyHeadersInForwardedValues extends __BaseException {
3884
3884
  readonly name: "TooManyHeadersInForwardedValues";
3885
3885
  readonly $fault: "client";
3886
- Message?: string;
3886
+ Message?: string | undefined;
3887
3887
  /**
3888
3888
  * @internal
3889
3889
  */
@@ -3898,7 +3898,7 @@ export declare class TooManyHeadersInForwardedValues extends __BaseException {
3898
3898
  export declare class TooManyKeyGroupsAssociatedToDistribution extends __BaseException {
3899
3899
  readonly name: "TooManyKeyGroupsAssociatedToDistribution";
3900
3900
  readonly $fault: "client";
3901
- Message?: string;
3901
+ Message?: string | undefined;
3902
3902
  /**
3903
3903
  * @internal
3904
3904
  */
@@ -3912,7 +3912,7 @@ export declare class TooManyKeyGroupsAssociatedToDistribution extends __BaseExce
3912
3912
  export declare class TooManyLambdaFunctionAssociations extends __BaseException {
3913
3913
  readonly name: "TooManyLambdaFunctionAssociations";
3914
3914
  readonly $fault: "client";
3915
- Message?: string;
3915
+ Message?: string | undefined;
3916
3916
  /**
3917
3917
  * @internal
3918
3918
  */
@@ -3925,7 +3925,7 @@ export declare class TooManyLambdaFunctionAssociations extends __BaseException {
3925
3925
  export declare class TooManyOriginCustomHeaders extends __BaseException {
3926
3926
  readonly name: "TooManyOriginCustomHeaders";
3927
3927
  readonly $fault: "client";
3928
- Message?: string;
3928
+ Message?: string | undefined;
3929
3929
  /**
3930
3930
  * @internal
3931
3931
  */
@@ -3939,7 +3939,7 @@ export declare class TooManyOriginCustomHeaders extends __BaseException {
3939
3939
  export declare class TooManyOriginGroupsPerDistribution extends __BaseException {
3940
3940
  readonly name: "TooManyOriginGroupsPerDistribution";
3941
3941
  readonly $fault: "client";
3942
- Message?: string;
3942
+ Message?: string | undefined;
3943
3943
  /**
3944
3944
  * @internal
3945
3945
  */
@@ -3952,7 +3952,7 @@ export declare class TooManyOriginGroupsPerDistribution extends __BaseException
3952
3952
  export declare class TooManyOrigins extends __BaseException {
3953
3953
  readonly name: "TooManyOrigins";
3954
3954
  readonly $fault: "client";
3955
- Message?: string;
3955
+ Message?: string | undefined;
3956
3956
  /**
3957
3957
  * @internal
3958
3958
  */
@@ -3965,7 +3965,7 @@ export declare class TooManyOrigins extends __BaseException {
3965
3965
  export declare class TooManyQueryStringParameters extends __BaseException {
3966
3966
  readonly name: "TooManyQueryStringParameters";
3967
3967
  readonly $fault: "client";
3968
- Message?: string;
3968
+ Message?: string | undefined;
3969
3969
  /**
3970
3970
  * @internal
3971
3971
  */
@@ -3978,7 +3978,7 @@ export declare class TooManyQueryStringParameters extends __BaseException {
3978
3978
  export declare class TooManyTrustedSigners extends __BaseException {
3979
3979
  readonly name: "TooManyTrustedSigners";
3980
3980
  readonly $fault: "client";
3981
- Message?: string;
3981
+ Message?: string | undefined;
3982
3982
  /**
3983
3983
  * @internal
3984
3984
  */
@@ -3991,7 +3991,7 @@ export declare class TooManyTrustedSigners extends __BaseException {
3991
3991
  export declare class TrustedKeyGroupDoesNotExist extends __BaseException {
3992
3992
  readonly name: "TrustedKeyGroupDoesNotExist";
3993
3993
  readonly $fault: "client";
3994
- Message?: string;
3994
+ Message?: string | undefined;
3995
3995
  /**
3996
3996
  * @internal
3997
3997
  */
@@ -4004,7 +4004,7 @@ export declare class TrustedKeyGroupDoesNotExist extends __BaseException {
4004
4004
  export declare class TrustedSignerDoesNotExist extends __BaseException {
4005
4005
  readonly name: "TrustedSignerDoesNotExist";
4006
4006
  readonly $fault: "client";
4007
- Message?: string;
4007
+ Message?: string | undefined;
4008
4008
  /**
4009
4009
  * @internal
4010
4010
  */
@@ -4028,17 +4028,17 @@ export interface CreateCachePolicyResult {
4028
4028
  * <p>A cache policy.</p>
4029
4029
  * @public
4030
4030
  */
4031
- CachePolicy?: CachePolicy;
4031
+ CachePolicy?: CachePolicy | undefined;
4032
4032
  /**
4033
4033
  * <p>The fully qualified URI of the cache policy just created.</p>
4034
4034
  * @public
4035
4035
  */
4036
- Location?: string;
4036
+ Location?: string | undefined;
4037
4037
  /**
4038
4038
  * <p>The current version of the cache policy.</p>
4039
4039
  * @public
4040
4040
  */
4041
- ETag?: string;
4041
+ ETag?: string | undefined;
4042
4042
  }
4043
4043
  /**
4044
4044
  * <p>You have reached the maximum number of cache policies for this Amazon Web Services account. For more
@@ -4049,7 +4049,7 @@ export interface CreateCachePolicyResult {
4049
4049
  export declare class TooManyCachePolicies extends __BaseException {
4050
4050
  readonly name: "TooManyCachePolicies";
4051
4051
  readonly $fault: "client";
4052
- Message?: string;
4052
+ Message?: string | undefined;
4053
4053
  /**
4054
4054
  * @internal
4055
4055
  */
@@ -4064,7 +4064,7 @@ export declare class TooManyCachePolicies extends __BaseException {
4064
4064
  export declare class TooManyCookiesInCachePolicy extends __BaseException {
4065
4065
  readonly name: "TooManyCookiesInCachePolicy";
4066
4066
  readonly $fault: "client";
4067
- Message?: string;
4067
+ Message?: string | undefined;
4068
4068
  /**
4069
4069
  * @internal
4070
4070
  */
@@ -4079,7 +4079,7 @@ export declare class TooManyCookiesInCachePolicy extends __BaseException {
4079
4079
  export declare class TooManyHeadersInCachePolicy extends __BaseException {
4080
4080
  readonly name: "TooManyHeadersInCachePolicy";
4081
4081
  readonly $fault: "client";
4082
- Message?: string;
4082
+ Message?: string | undefined;
4083
4083
  /**
4084
4084
  * @internal
4085
4085
  */
@@ -4094,7 +4094,7 @@ export declare class TooManyHeadersInCachePolicy extends __BaseException {
4094
4094
  export declare class TooManyQueryStringsInCachePolicy extends __BaseException {
4095
4095
  readonly name: "TooManyQueryStringsInCachePolicy";
4096
4096
  readonly $fault: "client";
4097
- Message?: string;
4097
+ Message?: string | undefined;
4098
4098
  /**
4099
4099
  * @internal
4100
4100
  */
@@ -4111,7 +4111,7 @@ export declare class TooManyQueryStringsInCachePolicy extends __BaseException {
4111
4111
  export declare class CloudFrontOriginAccessIdentityAlreadyExists extends __BaseException {
4112
4112
  readonly name: "CloudFrontOriginAccessIdentityAlreadyExists";
4113
4113
  readonly $fault: "client";
4114
- Message?: string;
4114
+ Message?: string | undefined;
4115
4115
  /**
4116
4116
  * @internal
4117
4117
  */
@@ -4184,7 +4184,7 @@ export interface CloudFrontOriginAccessIdentity {
4184
4184
  * <p>The current configuration information for the identity.</p>
4185
4185
  * @public
4186
4186
  */
4187
- CloudFrontOriginAccessIdentityConfig?: CloudFrontOriginAccessIdentityConfig;
4187
+ CloudFrontOriginAccessIdentityConfig?: CloudFrontOriginAccessIdentityConfig | undefined;
4188
4188
  }
4189
4189
  /**
4190
4190
  * <p>The returned result of the corresponding request.</p>
@@ -4195,17 +4195,17 @@ export interface CreateCloudFrontOriginAccessIdentityResult {
4195
4195
  * <p>The origin access identity's information.</p>
4196
4196
  * @public
4197
4197
  */
4198
- CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity;
4198
+ CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity | undefined;
4199
4199
  /**
4200
4200
  * <p>The fully qualified URI of the new origin access identity just created.</p>
4201
4201
  * @public
4202
4202
  */
4203
- Location?: string;
4203
+ Location?: string | undefined;
4204
4204
  /**
4205
4205
  * <p>The current version of the origin access identity created.</p>
4206
4206
  * @public
4207
4207
  */
4208
- ETag?: string;
4208
+ ETag?: string | undefined;
4209
4209
  }
4210
4210
  /**
4211
4211
  * <p>Processing your request would cause you to exceed the maximum number of origin access
@@ -4215,7 +4215,7 @@ export interface CreateCloudFrontOriginAccessIdentityResult {
4215
4215
  export declare class TooManyCloudFrontOriginAccessIdentities extends __BaseException {
4216
4216
  readonly name: "TooManyCloudFrontOriginAccessIdentities";
4217
4217
  readonly $fault: "client";
4218
- Message?: string;
4218
+ Message?: string | undefined;
4219
4219
  /**
4220
4220
  * @internal
4221
4221
  */
@@ -4228,7 +4228,7 @@ export declare class TooManyCloudFrontOriginAccessIdentities extends __BaseExcep
4228
4228
  export declare class ContinuousDeploymentPolicyAlreadyExists extends __BaseException {
4229
4229
  readonly name: "ContinuousDeploymentPolicyAlreadyExists";
4230
4230
  readonly $fault: "client";
4231
- Message?: string;
4231
+ Message?: string | undefined;
4232
4232
  /**
4233
4233
  * @internal
4234
4234
  */
@@ -4248,7 +4248,7 @@ export interface StagingDistributionDnsNames {
4248
4248
  * <p>The CloudFront domain name of the staging distribution.</p>
4249
4249
  * @public
4250
4250
  */
4251
- Items?: string[];
4251
+ Items?: string[] | undefined;
4252
4252
  }
4253
4253
  /**
4254
4254
  * <p>This configuration determines which HTTP requests are sent to the staging
@@ -4311,7 +4311,7 @@ export interface ContinuousDeploymentSingleWeightConfig {
4311
4311
  * sent to your primary distribution. Define the session duration using TTL values.</p>
4312
4312
  * @public
4313
4313
  */
4314
- SessionStickinessConfig?: SessionStickinessConfig;
4314
+ SessionStickinessConfig?: SessionStickinessConfig | undefined;
4315
4315
  }
4316
4316
  /**
4317
4317
  * @public
@@ -4334,12 +4334,12 @@ export interface TrafficConfig {
4334
4334
  * <p>Contains the percentage of traffic to send to the staging distribution.</p>
4335
4335
  * @public
4336
4336
  */
4337
- SingleWeightConfig?: ContinuousDeploymentSingleWeightConfig;
4337
+ SingleWeightConfig?: ContinuousDeploymentSingleWeightConfig | undefined;
4338
4338
  /**
4339
4339
  * <p>Determines which HTTP requests are sent to the staging distribution.</p>
4340
4340
  * @public
4341
4341
  */
4342
- SingleHeaderConfig?: ContinuousDeploymentSingleHeaderConfig;
4342
+ SingleHeaderConfig?: ContinuousDeploymentSingleHeaderConfig | undefined;
4343
4343
  /**
4344
4344
  * <p>The type of traffic configuration.</p>
4345
4345
  * @public
@@ -4370,7 +4370,7 @@ export interface ContinuousDeploymentPolicyConfig {
4370
4370
  * distributions.</p>
4371
4371
  * @public
4372
4372
  */
4373
- TrafficConfig?: TrafficConfig;
4373
+ TrafficConfig?: TrafficConfig | undefined;
4374
4374
  }
4375
4375
  /**
4376
4376
  * @public
@@ -4411,18 +4411,18 @@ export interface CreateContinuousDeploymentPolicyResult {
4411
4411
  * <p>A continuous deployment policy.</p>
4412
4412
  * @public
4413
4413
  */
4414
- ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy;
4414
+ ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy | undefined;
4415
4415
  /**
4416
4416
  * <p>The location of the continuous deployment policy.</p>
4417
4417
  * @public
4418
4418
  */
4419
- Location?: string;
4419
+ Location?: string | undefined;
4420
4420
  /**
4421
4421
  * <p>The version identifier for the current version of the continuous deployment
4422
4422
  * policy.</p>
4423
4423
  * @public
4424
4424
  */
4425
- ETag?: string;
4425
+ ETag?: string | undefined;
4426
4426
  }
4427
4427
  /**
4428
4428
  * <p>A continuous deployment policy for this staging distribution already exists.</p>
@@ -4431,7 +4431,7 @@ export interface CreateContinuousDeploymentPolicyResult {
4431
4431
  export declare class StagingDistributionInUse extends __BaseException {
4432
4432
  readonly name: "StagingDistributionInUse";
4433
4433
  readonly $fault: "client";
4434
- Message?: string;
4434
+ Message?: string | undefined;
4435
4435
  /**
4436
4436
  * @internal
4437
4437
  */
@@ -4445,7 +4445,7 @@ export declare class StagingDistributionInUse extends __BaseException {
4445
4445
  export declare class TooManyContinuousDeploymentPolicies extends __BaseException {
4446
4446
  readonly name: "TooManyContinuousDeploymentPolicies";
4447
4447
  readonly $fault: "client";
4448
- Message?: string;
4448
+ Message?: string | undefined;
4449
4449
  /**
4450
4450
  * @internal
4451
4451
  */
@@ -4459,7 +4459,7 @@ export declare class TooManyContinuousDeploymentPolicies extends __BaseException
4459
4459
  export declare class ContinuousDeploymentPolicyInUse extends __BaseException {
4460
4460
  readonly name: "ContinuousDeploymentPolicyInUse";
4461
4461
  readonly $fault: "client";
4462
- Message?: string;
4462
+ Message?: string | undefined;
4463
4463
  /**
4464
4464
  * @internal
4465
4465
  */
@@ -4485,17 +4485,17 @@ export interface CreateDistributionResult {
4485
4485
  * <p>The distribution's information.</p>
4486
4486
  * @public
4487
4487
  */
4488
- Distribution?: Distribution;
4488
+ Distribution?: Distribution | undefined;
4489
4489
  /**
4490
4490
  * <p>The fully qualified URI of the new distribution resource just created.</p>
4491
4491
  * @public
4492
4492
  */
4493
- Location?: string;
4493
+ Location?: string | undefined;
4494
4494
  /**
4495
4495
  * <p>The current version of the distribution created.</p>
4496
4496
  * @public
4497
4497
  */
4498
- ETag?: string;
4498
+ ETag?: string | undefined;
4499
4499
  }
4500
4500
  /**
4501
4501
  * <p>An origin cannot contain both an origin access control (OAC) and an origin access
@@ -4505,7 +4505,7 @@ export interface CreateDistributionResult {
4505
4505
  export declare class IllegalOriginAccessConfiguration extends __BaseException {
4506
4506
  readonly name: "IllegalOriginAccessConfiguration";
4507
4507
  readonly $fault: "client";
4508
- Message?: string;
4508
+ Message?: string | undefined;
4509
4509
  /**
4510
4510
  * @internal
4511
4511
  */
@@ -4519,7 +4519,7 @@ export declare class IllegalOriginAccessConfiguration extends __BaseException {
4519
4519
  export declare class InvalidDomainNameForOriginAccessControl extends __BaseException {
4520
4520
  readonly name: "InvalidDomainNameForOriginAccessControl";
4521
4521
  readonly $fault: "client";
4522
- Message?: string;
4522
+ Message?: string | undefined;
4523
4523
  /**
4524
4524
  * @internal
4525
4525
  */
@@ -4532,7 +4532,7 @@ export declare class InvalidDomainNameForOriginAccessControl extends __BaseExcep
4532
4532
  export declare class NoSuchContinuousDeploymentPolicy extends __BaseException {
4533
4533
  readonly name: "NoSuchContinuousDeploymentPolicy";
4534
4534
  readonly $fault: "client";
4535
- Message?: string;
4535
+ Message?: string | undefined;
4536
4536
  /**
4537
4537
  * @internal
4538
4538
  */
@@ -4558,7 +4558,7 @@ export interface Tag {
4558
4558
  * characters <code>_ - . : / = + @</code>.</p>
4559
4559
  * @public
4560
4560
  */
4561
- Value?: string;
4561
+ Value?: string | undefined;
4562
4562
  }
4563
4563
  /**
4564
4564
  * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
@@ -4569,7 +4569,7 @@ export interface Tags {
4569
4569
  * <p>A complex type that contains <code>Tag</code> elements.</p>
4570
4570
  * @public
4571
4571
  */
4572
- Items?: Tag[];
4572
+ Items?: Tag[] | undefined;
4573
4573
  }
4574
4574
  /**
4575
4575
  * <p>A distribution Configuration and a list of tags to be associated with the
@@ -4608,17 +4608,17 @@ export interface CreateDistributionWithTagsResult {
4608
4608
  * <p>The distribution's information.</p>
4609
4609
  * @public
4610
4610
  */
4611
- Distribution?: Distribution;
4611
+ Distribution?: Distribution | undefined;
4612
4612
  /**
4613
4613
  * <p>The fully qualified URI of the new distribution resource just created.</p>
4614
4614
  * @public
4615
4615
  */
4616
- Location?: string;
4616
+ Location?: string | undefined;
4617
4617
  /**
4618
4618
  * <p>The current version of the distribution created.</p>
4619
4619
  * @public
4620
4620
  */
4621
- ETag?: string;
4621
+ ETag?: string | undefined;
4622
4622
  }
4623
4623
  /**
4624
4624
  * <p>The tagging specified is not valid.</p>
@@ -4627,7 +4627,7 @@ export interface CreateDistributionWithTagsResult {
4627
4627
  export declare class InvalidTagging extends __BaseException {
4628
4628
  readonly name: "InvalidTagging";
4629
4629
  readonly $fault: "client";
4630
- Message?: string;
4630
+ Message?: string | undefined;
4631
4631
  /**
4632
4632
  * @internal
4633
4633
  */
@@ -4658,7 +4658,7 @@ export interface ContentTypeProfile {
4658
4658
  * <p>The profile ID for a field-level encryption content type-profile mapping.</p>
4659
4659
  * @public
4660
4660
  */
4661
- ProfileId?: string;
4661
+ ProfileId?: string | undefined;
4662
4662
  /**
4663
4663
  * <p>The content type for a field-level encryption content type-profile mapping.</p>
4664
4664
  * @public
@@ -4679,7 +4679,7 @@ export interface ContentTypeProfiles {
4679
4679
  * <p>Items in a field-level encryption content type-profile mapping.</p>
4680
4680
  * @public
4681
4681
  */
4682
- Items?: ContentTypeProfile[];
4682
+ Items?: ContentTypeProfile[] | undefined;
4683
4683
  }
4684
4684
  /**
4685
4685
  * <p>The configuration for a field-level encryption content type-profile mapping.</p>
@@ -4698,7 +4698,7 @@ export interface ContentTypeProfileConfig {
4698
4698
  * <p>The configuration for a field-level encryption content type-profile.</p>
4699
4699
  * @public
4700
4700
  */
4701
- ContentTypeProfiles?: ContentTypeProfiles;
4701
+ ContentTypeProfiles?: ContentTypeProfiles | undefined;
4702
4702
  }
4703
4703
  /**
4704
4704
  * <p>Query argument-profile mapping for field-level encryption.</p>
@@ -4731,7 +4731,7 @@ export interface QueryArgProfiles {
4731
4731
  * <p>Number of items for query argument-profile mapping for field-level encryption.</p>
4732
4732
  * @public
4733
4733
  */
4734
- Items?: QueryArgProfile[];
4734
+ Items?: QueryArgProfile[] | undefined;
4735
4735
  }
4736
4736
  /**
4737
4737
  * <p>Configuration for query argument-profile mapping for field-level encryption.</p>
@@ -4749,7 +4749,7 @@ export interface QueryArgProfileConfig {
4749
4749
  * encryption.</p>
4750
4750
  * @public
4751
4751
  */
4752
- QueryArgProfiles?: QueryArgProfiles;
4752
+ QueryArgProfiles?: QueryArgProfiles | undefined;
4753
4753
  }
4754
4754
  /**
4755
4755
  * <p>A complex data type that includes the profile configurations specified for field-level
@@ -4767,20 +4767,20 @@ export interface FieldLevelEncryptionConfig {
4767
4767
  * characters.</p>
4768
4768
  * @public
4769
4769
  */
4770
- Comment?: string;
4770
+ Comment?: string | undefined;
4771
4771
  /**
4772
4772
  * <p>A complex data type that specifies when to forward content if a profile isn't found
4773
4773
  * and the profile that can be provided as a query argument in a request.</p>
4774
4774
  * @public
4775
4775
  */
4776
- QueryArgProfileConfig?: QueryArgProfileConfig;
4776
+ QueryArgProfileConfig?: QueryArgProfileConfig | undefined;
4777
4777
  /**
4778
4778
  * <p>A complex data type that specifies when to forward content if a content type isn't
4779
4779
  * recognized and profiles to use as by default in a request if a query argument doesn't
4780
4780
  * specify a profile to use.</p>
4781
4781
  * @public
4782
4782
  */
4783
- ContentTypeProfileConfig?: ContentTypeProfileConfig;
4783
+ ContentTypeProfileConfig?: ContentTypeProfileConfig | undefined;
4784
4784
  }
4785
4785
  /**
4786
4786
  * @public
@@ -4825,18 +4825,18 @@ export interface CreateFieldLevelEncryptionConfigResult {
4825
4825
  * <p>Returned when you create a new field-level encryption configuration.</p>
4826
4826
  * @public
4827
4827
  */
4828
- FieldLevelEncryption?: FieldLevelEncryption;
4828
+ FieldLevelEncryption?: FieldLevelEncryption | undefined;
4829
4829
  /**
4830
4830
  * <p>The fully qualified URI of the new configuration resource just created.</p>
4831
4831
  * @public
4832
4832
  */
4833
- Location?: string;
4833
+ Location?: string | undefined;
4834
4834
  /**
4835
4835
  * <p>The current version of the field level encryption configuration. For example:
4836
4836
  * <code>E2QWRUHAPOMQZL</code>.</p>
4837
4837
  * @public
4838
4838
  */
4839
- ETag?: string;
4839
+ ETag?: string | undefined;
4840
4840
  }
4841
4841
  /**
4842
4842
  * <p>The specified configuration for field-level encryption already exists.</p>
@@ -4845,7 +4845,7 @@ export interface CreateFieldLevelEncryptionConfigResult {
4845
4845
  export declare class FieldLevelEncryptionConfigAlreadyExists extends __BaseException {
4846
4846
  readonly name: "FieldLevelEncryptionConfigAlreadyExists";
4847
4847
  readonly $fault: "client";
4848
- Message?: string;
4848
+ Message?: string | undefined;
4849
4849
  /**
4850
4850
  * @internal
4851
4851
  */
@@ -4858,7 +4858,7 @@ export declare class FieldLevelEncryptionConfigAlreadyExists extends __BaseExcep
4858
4858
  export declare class NoSuchFieldLevelEncryptionProfile extends __BaseException {
4859
4859
  readonly name: "NoSuchFieldLevelEncryptionProfile";
4860
4860
  readonly $fault: "client";
4861
- Message?: string;
4861
+ Message?: string | undefined;
4862
4862
  /**
4863
4863
  * @internal
4864
4864
  */
@@ -4871,7 +4871,7 @@ export declare class NoSuchFieldLevelEncryptionProfile extends __BaseException {
4871
4871
  export declare class QueryArgProfileEmpty extends __BaseException {
4872
4872
  readonly name: "QueryArgProfileEmpty";
4873
4873
  readonly $fault: "client";
4874
- Message?: string;
4874
+ Message?: string | undefined;
4875
4875
  /**
4876
4876
  * @internal
4877
4877
  */
@@ -4885,7 +4885,7 @@ export declare class QueryArgProfileEmpty extends __BaseException {
4885
4885
  export declare class TooManyFieldLevelEncryptionConfigs extends __BaseException {
4886
4886
  readonly name: "TooManyFieldLevelEncryptionConfigs";
4887
4887
  readonly $fault: "client";
4888
- Message?: string;
4888
+ Message?: string | undefined;
4889
4889
  /**
4890
4890
  * @internal
4891
4891
  */
@@ -4899,7 +4899,7 @@ export declare class TooManyFieldLevelEncryptionConfigs extends __BaseException
4899
4899
  export declare class TooManyFieldLevelEncryptionContentTypeProfiles extends __BaseException {
4900
4900
  readonly name: "TooManyFieldLevelEncryptionContentTypeProfiles";
4901
4901
  readonly $fault: "client";
4902
- Message?: string;
4902
+ Message?: string | undefined;
4903
4903
  /**
4904
4904
  * @internal
4905
4905
  */
@@ -4913,7 +4913,7 @@ export declare class TooManyFieldLevelEncryptionContentTypeProfiles extends __Ba
4913
4913
  export declare class TooManyFieldLevelEncryptionQueryArgProfiles extends __BaseException {
4914
4914
  readonly name: "TooManyFieldLevelEncryptionQueryArgProfiles";
4915
4915
  readonly $fault: "client";
4916
- Message?: string;
4916
+ Message?: string | undefined;
4917
4917
  /**
4918
4918
  * @internal
4919
4919
  */
@@ -4934,7 +4934,7 @@ export interface FieldPatterns {
4934
4934
  * <p>An array of the field-level encryption field patterns.</p>
4935
4935
  * @public
4936
4936
  */
4937
- Items?: string[];
4937
+ Items?: string[] | undefined;
4938
4938
  }
4939
4939
  /**
4940
4940
  * <p>Complex data type for field-level encryption profiles that includes the encryption key
@@ -4981,7 +4981,7 @@ export interface EncryptionEntities {
4981
4981
  * </p>
4982
4982
  * @public
4983
4983
  */
4984
- Items?: EncryptionEntity[];
4984
+ Items?: EncryptionEntity[] | undefined;
4985
4985
  }
4986
4986
  /**
4987
4987
  * <p>A complex data type of profiles for the field-level encryption.</p>
@@ -5003,7 +5003,7 @@ export interface FieldLevelEncryptionProfileConfig {
5003
5003
  * longer than 128 characters.</p>
5004
5004
  * @public
5005
5005
  */
5006
- Comment?: string;
5006
+ Comment?: string | undefined;
5007
5007
  /**
5008
5008
  * <p>A complex data type of encryption entities for the field-level encryption profile that
5009
5009
  * include the public key ID, provider, and field patterns for specifying which fields to
@@ -5054,18 +5054,18 @@ export interface CreateFieldLevelEncryptionProfileResult {
5054
5054
  * <p>Returned when you create a new field-level encryption profile.</p>
5055
5055
  * @public
5056
5056
  */
5057
- FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile;
5057
+ FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile | undefined;
5058
5058
  /**
5059
5059
  * <p>The fully qualified URI of the new profile resource just created.</p>
5060
5060
  * @public
5061
5061
  */
5062
- Location?: string;
5062
+ Location?: string | undefined;
5063
5063
  /**
5064
5064
  * <p>The current version of the field level encryption profile. For example:
5065
5065
  * <code>E2QWRUHAPOMQZL</code>.</p>
5066
5066
  * @public
5067
5067
  */
5068
- ETag?: string;
5068
+ ETag?: string | undefined;
5069
5069
  }
5070
5070
  /**
5071
5071
  * <p>The specified profile for field-level encryption already exists.</p>
@@ -5074,7 +5074,7 @@ export interface CreateFieldLevelEncryptionProfileResult {
5074
5074
  export declare class FieldLevelEncryptionProfileAlreadyExists extends __BaseException {
5075
5075
  readonly name: "FieldLevelEncryptionProfileAlreadyExists";
5076
5076
  readonly $fault: "client";
5077
- Message?: string;
5077
+ Message?: string | undefined;
5078
5078
  /**
5079
5079
  * @internal
5080
5080
  */
@@ -5087,7 +5087,7 @@ export declare class FieldLevelEncryptionProfileAlreadyExists extends __BaseExce
5087
5087
  export declare class FieldLevelEncryptionProfileSizeExceeded extends __BaseException {
5088
5088
  readonly name: "FieldLevelEncryptionProfileSizeExceeded";
5089
5089
  readonly $fault: "client";
5090
- Message?: string;
5090
+ Message?: string | undefined;
5091
5091
  /**
5092
5092
  * @internal
5093
5093
  */
@@ -5100,7 +5100,7 @@ export declare class FieldLevelEncryptionProfileSizeExceeded extends __BaseExcep
5100
5100
  export declare class NoSuchPublicKey extends __BaseException {
5101
5101
  readonly name: "NoSuchPublicKey";
5102
5102
  readonly $fault: "client";
5103
- Message?: string;
5103
+ Message?: string | undefined;
5104
5104
  /**
5105
5105
  * @internal
5106
5106
  */
@@ -5114,7 +5114,7 @@ export declare class NoSuchPublicKey extends __BaseException {
5114
5114
  export declare class TooManyFieldLevelEncryptionEncryptionEntities extends __BaseException {
5115
5115
  readonly name: "TooManyFieldLevelEncryptionEncryptionEntities";
5116
5116
  readonly $fault: "client";
5117
- Message?: string;
5117
+ Message?: string | undefined;
5118
5118
  /**
5119
5119
  * @internal
5120
5120
  */
@@ -5128,7 +5128,7 @@ export declare class TooManyFieldLevelEncryptionEncryptionEntities extends __Bas
5128
5128
  export declare class TooManyFieldLevelEncryptionFieldPatterns extends __BaseException {
5129
5129
  readonly name: "TooManyFieldLevelEncryptionFieldPatterns";
5130
5130
  readonly $fault: "client";
5131
- Message?: string;
5131
+ Message?: string | undefined;
5132
5132
  /**
5133
5133
  * @internal
5134
5134
  */
@@ -5141,7 +5141,7 @@ export declare class TooManyFieldLevelEncryptionFieldPatterns extends __BaseExce
5141
5141
  export declare class TooManyFieldLevelEncryptionProfiles extends __BaseException {
5142
5142
  readonly name: "TooManyFieldLevelEncryptionProfiles";
5143
5143
  readonly $fault: "client";
5144
- Message?: string;
5144
+ Message?: string | undefined;
5145
5145
  /**
5146
5146
  * @internal
5147
5147
  */
@@ -5172,7 +5172,7 @@ export interface KeyValueStoreAssociations {
5172
5172
  * <p>The items of the key value store association.</p>
5173
5173
  * @public
5174
5174
  */
5175
- Items?: KeyValueStoreAssociation[];
5175
+ Items?: KeyValueStoreAssociation[] | undefined;
5176
5176
  }
5177
5177
  /**
5178
5178
  * @public
@@ -5205,7 +5205,7 @@ export interface FunctionConfig {
5205
5205
  * <p>The configuration for the key value store associations.</p>
5206
5206
  * @public
5207
5207
  */
5208
- KeyValueStoreAssociations?: KeyValueStoreAssociations;
5208
+ KeyValueStoreAssociations?: KeyValueStoreAssociations | undefined;
5209
5209
  }
5210
5210
  /**
5211
5211
  * @public
@@ -5262,12 +5262,12 @@ export interface FunctionMetadata {
5262
5262
  * distribution's cache behavior, using the function's ARN.</p>
5263
5263
  * @public
5264
5264
  */
5265
- Stage?: FunctionStage;
5265
+ Stage?: FunctionStage | undefined;
5266
5266
  /**
5267
5267
  * <p>The date and time when the function was created.</p>
5268
5268
  * @public
5269
5269
  */
5270
- CreatedTime?: Date;
5270
+ CreatedTime?: Date | undefined;
5271
5271
  /**
5272
5272
  * <p>The date and time when the function was most recently updated.</p>
5273
5273
  * @public
@@ -5288,7 +5288,7 @@ export interface FunctionSummary {
5288
5288
  * <p>The status of the CloudFront function.</p>
5289
5289
  * @public
5290
5290
  */
5291
- Status?: string;
5291
+ Status?: string | undefined;
5292
5292
  /**
5293
5293
  * <p>Contains configuration information about a CloudFront function.</p>
5294
5294
  * @public
@@ -5308,18 +5308,18 @@ export interface CreateFunctionResult {
5308
5308
  * <p>Contains configuration information and metadata about a CloudFront function.</p>
5309
5309
  * @public
5310
5310
  */
5311
- FunctionSummary?: FunctionSummary;
5311
+ FunctionSummary?: FunctionSummary | undefined;
5312
5312
  /**
5313
5313
  * <p>The URL of the CloudFront function. Use the URL to manage the function with the CloudFront
5314
5314
  * API.</p>
5315
5315
  * @public
5316
5316
  */
5317
- Location?: string;
5317
+ Location?: string | undefined;
5318
5318
  /**
5319
5319
  * <p>The version identifier for the current version of the CloudFront function.</p>
5320
5320
  * @public
5321
5321
  */
5322
- ETag?: string;
5322
+ ETag?: string | undefined;
5323
5323
  }
5324
5324
  /**
5325
5325
  * <p>A function with the same name already exists in this Amazon Web Services account. To create a
@@ -5330,7 +5330,7 @@ export interface CreateFunctionResult {
5330
5330
  export declare class FunctionAlreadyExists extends __BaseException {
5331
5331
  readonly name: "FunctionAlreadyExists";
5332
5332
  readonly $fault: "client";
5333
- Message?: string;
5333
+ Message?: string | undefined;
5334
5334
  /**
5335
5335
  * @internal
5336
5336
  */
@@ -5344,7 +5344,7 @@ export declare class FunctionAlreadyExists extends __BaseException {
5344
5344
  export declare class FunctionSizeLimitExceeded extends __BaseException {
5345
5345
  readonly name: "FunctionSizeLimitExceeded";
5346
5346
  readonly $fault: "client";
5347
- Message?: string;
5347
+ Message?: string | undefined;
5348
5348
  /**
5349
5349
  * @internal
5350
5350
  */
@@ -5359,7 +5359,7 @@ export declare class FunctionSizeLimitExceeded extends __BaseException {
5359
5359
  export declare class TooManyFunctions extends __BaseException {
5360
5360
  readonly name: "TooManyFunctions";
5361
5361
  readonly $fault: "client";
5362
- Message?: string;
5362
+ Message?: string | undefined;
5363
5363
  /**
5364
5364
  * @internal
5365
5365
  */
@@ -5372,7 +5372,7 @@ export declare class TooManyFunctions extends __BaseException {
5372
5372
  export declare class UnsupportedOperation extends __BaseException {
5373
5373
  readonly name: "UnsupportedOperation";
5374
5374
  readonly $fault: "client";
5375
- Message?: string;
5375
+ Message?: string | undefined;
5376
5376
  /**
5377
5377
  * @internal
5378
5378
  */
@@ -5395,7 +5395,7 @@ export interface Paths {
5395
5395
  * <p>A complex type that contains a list of the paths that you want to invalidate.</p>
5396
5396
  * @public
5397
5397
  */
5398
- Items?: string[];
5398
+ Items?: string[] | undefined;
5399
5399
  }
5400
5400
  /**
5401
5401
  * <p>An invalidation batch.</p>
@@ -5482,12 +5482,12 @@ export interface CreateInvalidationResult {
5482
5482
  * the <code>Invalidation ID</code>.</p>
5483
5483
  * @public
5484
5484
  */
5485
- Location?: string;
5485
+ Location?: string | undefined;
5486
5486
  /**
5487
5487
  * <p>The invalidation's information.</p>
5488
5488
  * @public
5489
5489
  */
5490
- Invalidation?: Invalidation;
5490
+ Invalidation?: Invalidation | undefined;
5491
5491
  }
5492
5492
  /**
5493
5493
  * <p>You have exceeded the maximum number of allowable InProgress invalidation batch
@@ -5497,7 +5497,7 @@ export interface CreateInvalidationResult {
5497
5497
  export declare class TooManyInvalidationsInProgress extends __BaseException {
5498
5498
  readonly name: "TooManyInvalidationsInProgress";
5499
5499
  readonly $fault: "client";
5500
- Message?: string;
5500
+ Message?: string | undefined;
5501
5501
  /**
5502
5502
  * @internal
5503
5503
  */
@@ -5524,7 +5524,7 @@ export interface KeyGroupConfig {
5524
5524
  * characters.</p>
5525
5525
  * @public
5526
5526
  */
5527
- Comment?: string;
5527
+ Comment?: string | undefined;
5528
5528
  }
5529
5529
  /**
5530
5530
  * @public
@@ -5566,17 +5566,17 @@ export interface CreateKeyGroupResult {
5566
5566
  * <p>The key group that was just created.</p>
5567
5567
  * @public
5568
5568
  */
5569
- KeyGroup?: KeyGroup;
5569
+ KeyGroup?: KeyGroup | undefined;
5570
5570
  /**
5571
5571
  * <p>The URL of the key group.</p>
5572
5572
  * @public
5573
5573
  */
5574
- Location?: string;
5574
+ Location?: string | undefined;
5575
5575
  /**
5576
5576
  * <p>The identifier for this version of the key group.</p>
5577
5577
  * @public
5578
5578
  */
5579
- ETag?: string;
5579
+ ETag?: string | undefined;
5580
5580
  }
5581
5581
  /**
5582
5582
  * <p>A key group with this name already exists. You must provide a unique name. To modify
@@ -5586,7 +5586,7 @@ export interface CreateKeyGroupResult {
5586
5586
  export declare class KeyGroupAlreadyExists extends __BaseException {
5587
5587
  readonly name: "KeyGroupAlreadyExists";
5588
5588
  readonly $fault: "client";
5589
- Message?: string;
5589
+ Message?: string | undefined;
5590
5590
  /**
5591
5591
  * @internal
5592
5592
  */
@@ -5601,7 +5601,7 @@ export declare class KeyGroupAlreadyExists extends __BaseException {
5601
5601
  export declare class TooManyKeyGroups extends __BaseException {
5602
5602
  readonly name: "TooManyKeyGroups";
5603
5603
  readonly $fault: "client";
5604
- Message?: string;
5604
+ Message?: string | undefined;
5605
5605
  /**
5606
5606
  * @internal
5607
5607
  */
@@ -5616,7 +5616,7 @@ export declare class TooManyKeyGroups extends __BaseException {
5616
5616
  export declare class TooManyPublicKeysInKeyGroup extends __BaseException {
5617
5617
  readonly name: "TooManyPublicKeysInKeyGroup";
5618
5618
  readonly $fault: "client";
5619
- Message?: string;
5619
+ Message?: string | undefined;
5620
5620
  /**
5621
5621
  * @internal
5622
5622
  */
@@ -5663,12 +5663,12 @@ export interface CreateKeyValueStoreRequest {
5663
5663
  * <p>The comment of the key value store.</p>
5664
5664
  * @public
5665
5665
  */
5666
- Comment?: string;
5666
+ Comment?: string | undefined;
5667
5667
  /**
5668
5668
  * <p>The S3 bucket that provides the source for the import. The source must be in a valid JSON format.</p>
5669
5669
  * @public
5670
5670
  */
5671
- ImportSource?: ImportSource;
5671
+ ImportSource?: ImportSource | undefined;
5672
5672
  }
5673
5673
  /**
5674
5674
  * <p>The key value store. Use this to separate data from function code, allowing you to update
@@ -5701,7 +5701,7 @@ export interface KeyValueStore {
5701
5701
  * <p>The status of the key value store.</p>
5702
5702
  * @public
5703
5703
  */
5704
- Status?: string;
5704
+ Status?: string | undefined;
5705
5705
  /**
5706
5706
  * <p>The last-modified time of the key value store.</p>
5707
5707
  * @public
@@ -5716,17 +5716,17 @@ export interface CreateKeyValueStoreResult {
5716
5716
  * <p>The resulting key value store.</p>
5717
5717
  * @public
5718
5718
  */
5719
- KeyValueStore?: KeyValueStore;
5719
+ KeyValueStore?: KeyValueStore | undefined;
5720
5720
  /**
5721
5721
  * <p>The <code>ETag</code> in the resulting key value store.</p>
5722
5722
  * @public
5723
5723
  */
5724
- ETag?: string;
5724
+ ETag?: string | undefined;
5725
5725
  /**
5726
5726
  * <p>The location of the resulting key value store.</p>
5727
5727
  * @public
5728
5728
  */
5729
- Location?: string;
5729
+ Location?: string | undefined;
5730
5730
  }
5731
5731
  /**
5732
5732
  * <p>The key value store entity already exists. You must provide a unique key value store
@@ -5736,7 +5736,7 @@ export interface CreateKeyValueStoreResult {
5736
5736
  export declare class EntityAlreadyExists extends __BaseException {
5737
5737
  readonly name: "EntityAlreadyExists";
5738
5738
  readonly $fault: "client";
5739
- Message?: string;
5739
+ Message?: string | undefined;
5740
5740
  /**
5741
5741
  * @internal
5742
5742
  */
@@ -5749,7 +5749,7 @@ export declare class EntityAlreadyExists extends __BaseException {
5749
5749
  export declare class EntityLimitExceeded extends __BaseException {
5750
5750
  readonly name: "EntityLimitExceeded";
5751
5751
  readonly $fault: "client";
5752
- Message?: string;
5752
+ Message?: string | undefined;
5753
5753
  /**
5754
5754
  * @internal
5755
5755
  */
@@ -5762,7 +5762,7 @@ export declare class EntityLimitExceeded extends __BaseException {
5762
5762
  export declare class EntitySizeLimitExceeded extends __BaseException {
5763
5763
  readonly name: "EntitySizeLimitExceeded";
5764
5764
  readonly $fault: "client";
5765
- Message?: string;
5765
+ Message?: string | undefined;
5766
5766
  /**
5767
5767
  * @internal
5768
5768
  */
@@ -5802,7 +5802,7 @@ export interface MonitoringSubscription {
5802
5802
  * <p>A subscription configuration for additional CloudWatch metrics.</p>
5803
5803
  * @public
5804
5804
  */
5805
- RealtimeMetricsSubscriptionConfig?: RealtimeMetricsSubscriptionConfig;
5805
+ RealtimeMetricsSubscriptionConfig?: RealtimeMetricsSubscriptionConfig | undefined;
5806
5806
  }
5807
5807
  /**
5808
5808
  * @public
@@ -5829,7 +5829,7 @@ export interface CreateMonitoringSubscriptionResult {
5829
5829
  * additional CloudWatch metrics are enabled for a given CloudFront distribution.</p>
5830
5830
  * @public
5831
5831
  */
5832
- MonitoringSubscription?: MonitoringSubscription;
5832
+ MonitoringSubscription?: MonitoringSubscription | undefined;
5833
5833
  }
5834
5834
  /**
5835
5835
  * <p>A monitoring subscription already exists for the specified distribution.</p>
@@ -5838,7 +5838,7 @@ export interface CreateMonitoringSubscriptionResult {
5838
5838
  export declare class MonitoringSubscriptionAlreadyExists extends __BaseException {
5839
5839
  readonly name: "MonitoringSubscriptionAlreadyExists";
5840
5840
  readonly $fault: "client";
5841
- Message?: string;
5841
+ Message?: string | undefined;
5842
5842
  /**
5843
5843
  * @internal
5844
5844
  */
@@ -5896,7 +5896,7 @@ export interface OriginAccessControlConfig {
5896
5896
  * <p>A description of the origin access control.</p>
5897
5897
  * @public
5898
5898
  */
5899
- Description?: string;
5899
+ Description?: string | undefined;
5900
5900
  /**
5901
5901
  * <p>The signing protocol of the origin access control, which determines how CloudFront signs
5902
5902
  * (authenticates) requests. The only valid value is <code>sigv4</code>.</p>
@@ -5967,7 +5967,7 @@ export interface OriginAccessControl {
5967
5967
  * <p>The origin access control.</p>
5968
5968
  * @public
5969
5969
  */
5970
- OriginAccessControlConfig?: OriginAccessControlConfig;
5970
+ OriginAccessControlConfig?: OriginAccessControlConfig | undefined;
5971
5971
  }
5972
5972
  /**
5973
5973
  * @public
@@ -5977,17 +5977,17 @@ export interface CreateOriginAccessControlResult {
5977
5977
  * <p>Contains an origin access control.</p>
5978
5978
  * @public
5979
5979
  */
5980
- OriginAccessControl?: OriginAccessControl;
5980
+ OriginAccessControl?: OriginAccessControl | undefined;
5981
5981
  /**
5982
5982
  * <p>The URL of the origin access control.</p>
5983
5983
  * @public
5984
5984
  */
5985
- Location?: string;
5985
+ Location?: string | undefined;
5986
5986
  /**
5987
5987
  * <p>The version identifier for the current version of the origin access control.</p>
5988
5988
  * @public
5989
5989
  */
5990
- ETag?: string;
5990
+ ETag?: string | undefined;
5991
5991
  }
5992
5992
  /**
5993
5993
  * <p>An origin access control with the specified parameters already exists.</p>
@@ -5996,7 +5996,7 @@ export interface CreateOriginAccessControlResult {
5996
5996
  export declare class OriginAccessControlAlreadyExists extends __BaseException {
5997
5997
  readonly name: "OriginAccessControlAlreadyExists";
5998
5998
  readonly $fault: "client";
5999
- Message?: string;
5999
+ Message?: string | undefined;
6000
6000
  /**
6001
6001
  * @internal
6002
6002
  */
@@ -6012,7 +6012,7 @@ export declare class OriginAccessControlAlreadyExists extends __BaseException {
6012
6012
  export declare class TooManyOriginAccessControls extends __BaseException {
6013
6013
  readonly name: "TooManyOriginAccessControls";
6014
6014
  readonly $fault: "client";
6015
- Message?: string;
6015
+ Message?: string | undefined;
6016
6016
  /**
6017
6017
  * @internal
6018
6018
  */
@@ -6077,7 +6077,7 @@ export interface OriginRequestPolicyCookiesConfig {
6077
6077
  * <p>Contains a list of cookie names.</p>
6078
6078
  * @public
6079
6079
  */
6080
- Cookies?: CookieNames;
6080
+ Cookies?: CookieNames | undefined;
6081
6081
  }
6082
6082
  /**
6083
6083
  * @public
@@ -6145,7 +6145,7 @@ export interface OriginRequestPolicyHeadersConfig {
6145
6145
  * <p>Contains a list of HTTP header names.</p>
6146
6146
  * @public
6147
6147
  */
6148
- Headers?: Headers;
6148
+ Headers?: Headers | undefined;
6149
6149
  }
6150
6150
  /**
6151
6151
  * @public
@@ -6220,7 +6220,7 @@ export interface OriginRequestPolicyQueryStringsConfig {
6220
6220
  * are).</p>
6221
6221
  * @public
6222
6222
  */
6223
- QueryStrings?: QueryStringNames;
6223
+ QueryStrings?: QueryStringNames | undefined;
6224
6224
  }
6225
6225
  /**
6226
6226
  * <p>An origin request policy configuration.</p>
@@ -6254,7 +6254,7 @@ export interface OriginRequestPolicyConfig {
6254
6254
  * characters.</p>
6255
6255
  * @public
6256
6256
  */
6257
- Comment?: string;
6257
+ Comment?: string | undefined;
6258
6258
  /**
6259
6259
  * <p>A unique name to identify the origin request policy.</p>
6260
6260
  * @public
@@ -6339,17 +6339,17 @@ export interface CreateOriginRequestPolicyResult {
6339
6339
  * <p>An origin request policy.</p>
6340
6340
  * @public
6341
6341
  */
6342
- OriginRequestPolicy?: OriginRequestPolicy;
6342
+ OriginRequestPolicy?: OriginRequestPolicy | undefined;
6343
6343
  /**
6344
6344
  * <p>The fully qualified URI of the origin request policy just created.</p>
6345
6345
  * @public
6346
6346
  */
6347
- Location?: string;
6347
+ Location?: string | undefined;
6348
6348
  /**
6349
6349
  * <p>The current version of the origin request policy.</p>
6350
6350
  * @public
6351
6351
  */
6352
- ETag?: string;
6352
+ ETag?: string | undefined;
6353
6353
  }
6354
6354
  /**
6355
6355
  * <p>An origin request policy with this name already exists. You must provide a unique
@@ -6360,7 +6360,7 @@ export interface CreateOriginRequestPolicyResult {
6360
6360
  export declare class OriginRequestPolicyAlreadyExists extends __BaseException {
6361
6361
  readonly name: "OriginRequestPolicyAlreadyExists";
6362
6362
  readonly $fault: "client";
6363
- Message?: string;
6363
+ Message?: string | undefined;
6364
6364
  /**
6365
6365
  * @internal
6366
6366
  */
@@ -6375,7 +6375,7 @@ export declare class OriginRequestPolicyAlreadyExists extends __BaseException {
6375
6375
  export declare class TooManyCookiesInOriginRequestPolicy extends __BaseException {
6376
6376
  readonly name: "TooManyCookiesInOriginRequestPolicy";
6377
6377
  readonly $fault: "client";
6378
- Message?: string;
6378
+ Message?: string | undefined;
6379
6379
  /**
6380
6380
  * @internal
6381
6381
  */
@@ -6390,7 +6390,7 @@ export declare class TooManyCookiesInOriginRequestPolicy extends __BaseException
6390
6390
  export declare class TooManyHeadersInOriginRequestPolicy extends __BaseException {
6391
6391
  readonly name: "TooManyHeadersInOriginRequestPolicy";
6392
6392
  readonly $fault: "client";
6393
- Message?: string;
6393
+ Message?: string | undefined;
6394
6394
  /**
6395
6395
  * @internal
6396
6396
  */
@@ -6405,7 +6405,7 @@ export declare class TooManyHeadersInOriginRequestPolicy extends __BaseException
6405
6405
  export declare class TooManyOriginRequestPolicies extends __BaseException {
6406
6406
  readonly name: "TooManyOriginRequestPolicies";
6407
6407
  readonly $fault: "client";
6408
- Message?: string;
6408
+ Message?: string | undefined;
6409
6409
  /**
6410
6410
  * @internal
6411
6411
  */
@@ -6420,7 +6420,7 @@ export declare class TooManyOriginRequestPolicies extends __BaseException {
6420
6420
  export declare class TooManyQueryStringsInOriginRequestPolicy extends __BaseException {
6421
6421
  readonly name: "TooManyQueryStringsInOriginRequestPolicy";
6422
6422
  readonly $fault: "client";
6423
- Message?: string;
6423
+ Message?: string | undefined;
6424
6424
  /**
6425
6425
  * @internal
6426
6426
  */
@@ -6452,7 +6452,7 @@ export interface PublicKeyConfig {
6452
6452
  * characters.</p>
6453
6453
  * @public
6454
6454
  */
6455
- Comment?: string;
6455
+ Comment?: string | undefined;
6456
6456
  }
6457
6457
  /**
6458
6458
  * @public
@@ -6493,17 +6493,17 @@ export interface CreatePublicKeyResult {
6493
6493
  * <p>The public key.</p>
6494
6494
  * @public
6495
6495
  */
6496
- PublicKey?: PublicKey;
6496
+ PublicKey?: PublicKey | undefined;
6497
6497
  /**
6498
6498
  * <p>The URL of the public key.</p>
6499
6499
  * @public
6500
6500
  */
6501
- Location?: string;
6501
+ Location?: string | undefined;
6502
6502
  /**
6503
6503
  * <p>The identifier for this version of the public key.</p>
6504
6504
  * @public
6505
6505
  */
6506
- ETag?: string;
6506
+ ETag?: string | undefined;
6507
6507
  }
6508
6508
  /**
6509
6509
  * <p>The specified public key already exists.</p>
@@ -6512,7 +6512,7 @@ export interface CreatePublicKeyResult {
6512
6512
  export declare class PublicKeyAlreadyExists extends __BaseException {
6513
6513
  readonly name: "PublicKeyAlreadyExists";
6514
6514
  readonly $fault: "client";
6515
- Message?: string;
6515
+ Message?: string | undefined;
6516
6516
  /**
6517
6517
  * @internal
6518
6518
  */
@@ -6526,7 +6526,7 @@ export declare class PublicKeyAlreadyExists extends __BaseException {
6526
6526
  export declare class TooManyPublicKeys extends __BaseException {
6527
6527
  readonly name: "TooManyPublicKeys";
6528
6528
  readonly $fault: "client";
6529
- Message?: string;
6529
+ Message?: string | undefined;
6530
6530
  /**
6531
6531
  * @internal
6532
6532
  */
@@ -6570,7 +6570,7 @@ export interface EndPoint {
6570
6570
  * log data.</p>
6571
6571
  * @public
6572
6572
  */
6573
- KinesisStreamConfig?: KinesisStreamConfig;
6573
+ KinesisStreamConfig?: KinesisStreamConfig | undefined;
6574
6574
  }
6575
6575
  /**
6576
6576
  * @public
@@ -6646,7 +6646,7 @@ export interface CreateRealtimeLogConfigResult {
6646
6646
  * <p>A real-time log configuration.</p>
6647
6647
  * @public
6648
6648
  */
6649
- RealtimeLogConfig?: RealtimeLogConfig;
6649
+ RealtimeLogConfig?: RealtimeLogConfig | undefined;
6650
6650
  }
6651
6651
  /**
6652
6652
  * <p>A real-time log configuration with this name already exists. You must provide a unique
@@ -6657,7 +6657,7 @@ export interface CreateRealtimeLogConfigResult {
6657
6657
  export declare class RealtimeLogConfigAlreadyExists extends __BaseException {
6658
6658
  readonly name: "RealtimeLogConfigAlreadyExists";
6659
6659
  readonly $fault: "client";
6660
- Message?: string;
6660
+ Message?: string | undefined;
6661
6661
  /**
6662
6662
  * @internal
6663
6663
  */
@@ -6672,7 +6672,7 @@ export declare class RealtimeLogConfigAlreadyExists extends __BaseException {
6672
6672
  export declare class TooManyRealtimeLogConfigs extends __BaseException {
6673
6673
  readonly name: "TooManyRealtimeLogConfigs";
6674
6674
  readonly $fault: "client";
6675
- Message?: string;
6675
+ Message?: string | undefined;
6676
6676
  /**
6677
6677
  * @internal
6678
6678
  */
@@ -6799,7 +6799,7 @@ export interface ResponseHeadersPolicyAccessControlExposeHeaders {
6799
6799
  * <p>The list of HTTP headers. You can specify <code>*</code> to expose all headers.</p>
6800
6800
  * @public
6801
6801
  */
6802
- Items?: string[];
6802
+ Items?: string[] | undefined;
6803
6803
  }
6804
6804
  /**
6805
6805
  * <p>A configuration for a set of HTTP response headers that are used for cross-origin
@@ -6850,7 +6850,7 @@ export interface ResponseHeadersPolicyCorsConfig {
6850
6850
  * response header, see <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Expose-Headers">Access-Control-Expose-Headers</a> in the MDN Web Docs.</p>
6851
6851
  * @public
6852
6852
  */
6853
- AccessControlExposeHeaders?: ResponseHeadersPolicyAccessControlExposeHeaders;
6853
+ AccessControlExposeHeaders?: ResponseHeadersPolicyAccessControlExposeHeaders | undefined;
6854
6854
  /**
6855
6855
  * <p>A number that CloudFront uses as the value for the <code>Access-Control-Max-Age</code> HTTP
6856
6856
  * response header.</p>
@@ -6858,7 +6858,7 @@ export interface ResponseHeadersPolicyCorsConfig {
6858
6858
  * header, see <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Max-Age">Access-Control-Max-Age</a> in the MDN Web Docs.</p>
6859
6859
  * @public
6860
6860
  */
6861
- AccessControlMaxAgeSec?: number;
6861
+ AccessControlMaxAgeSec?: number | undefined;
6862
6862
  /**
6863
6863
  * <p>A Boolean that determines whether CloudFront overrides HTTP response headers received from
6864
6864
  * the origin with the ones specified in this response headers policy.</p>
@@ -6906,7 +6906,7 @@ export interface ResponseHeadersPolicyCustomHeadersConfig {
6906
6906
  * <p>The list of HTTP response headers and their values.</p>
6907
6907
  * @public
6908
6908
  */
6909
- Items?: ResponseHeadersPolicyCustomHeader[];
6909
+ Items?: ResponseHeadersPolicyCustomHeader[] | undefined;
6910
6910
  }
6911
6911
  /**
6912
6912
  * <p>The name of an HTTP header that CloudFront removes from HTTP responses to requests that match the
@@ -6935,7 +6935,7 @@ export interface ResponseHeadersPolicyRemoveHeadersConfig {
6935
6935
  * <p>The list of HTTP header names.</p>
6936
6936
  * @public
6937
6937
  */
6938
- Items?: ResponseHeadersPolicyRemoveHeader[];
6938
+ Items?: ResponseHeadersPolicyRemoveHeader[] | undefined;
6939
6939
  }
6940
6940
  /**
6941
6941
  * <p>The policy directives and their values that CloudFront includes as values for the