@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.
@@ -139,13 +139,13 @@ export interface ResponseHeadersPolicyStrictTransportSecurity {
139
139
  * directive in the <code>Strict-Transport-Security</code> HTTP response header.</p>
140
140
  * @public
141
141
  */
142
- IncludeSubdomains?: boolean;
142
+ IncludeSubdomains?: boolean | undefined;
143
143
  /**
144
144
  * <p>A Boolean that determines whether CloudFront includes the <code>preload</code> directive in
145
145
  * the <code>Strict-Transport-Security</code> HTTP response header.</p>
146
146
  * @public
147
147
  */
148
- Preload?: boolean;
148
+ Preload?: boolean | undefined;
149
149
  /**
150
150
  * <p>A number that CloudFront uses as the value for the <code>max-age</code> directive in the
151
151
  * <code>Strict-Transport-Security</code> HTTP response header.</p>
@@ -184,7 +184,7 @@ export interface ResponseHeadersPolicyXSSProtection {
184
184
  * <p>For more information about this directive, see <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection">X-XSS-Protection</a> in the MDN Web Docs.</p>
185
185
  * @public
186
186
  */
187
- ModeBlock?: boolean;
187
+ ModeBlock?: boolean | undefined;
188
188
  /**
189
189
  * <p>A reporting URI, which CloudFront uses as the value of the <code>report</code> directive in
190
190
  * the <code>X-XSS-Protection</code> header.</p>
@@ -193,7 +193,7 @@ export interface ResponseHeadersPolicyXSSProtection {
193
193
  * <p>For more information about using a reporting URL, see <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection">X-XSS-Protection</a> in the MDN Web Docs.</p>
194
194
  * @public
195
195
  */
196
- ReportUri?: string;
196
+ ReportUri?: string | undefined;
197
197
  }
198
198
  /**
199
199
  * <p>A configuration for a set of security-related HTTP response headers. CloudFront adds these
@@ -209,7 +209,7 @@ export interface ResponseHeadersPolicySecurityHeadersConfig {
209
209
  * <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-XSS-Protection">X-XSS-Protection</a> in the MDN Web Docs.</p>
210
210
  * @public
211
211
  */
212
- XSSProtection?: ResponseHeadersPolicyXSSProtection;
212
+ XSSProtection?: ResponseHeadersPolicyXSSProtection | undefined;
213
213
  /**
214
214
  * <p>Determines whether CloudFront includes the <code>X-Frame-Options</code> HTTP response header
215
215
  * and the header's value.</p>
@@ -217,7 +217,7 @@ export interface ResponseHeadersPolicySecurityHeadersConfig {
217
217
  * <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options">X-Frame-Options</a> in the MDN Web Docs.</p>
218
218
  * @public
219
219
  */
220
- FrameOptions?: ResponseHeadersPolicyFrameOptions;
220
+ FrameOptions?: ResponseHeadersPolicyFrameOptions | undefined;
221
221
  /**
222
222
  * <p>Determines whether CloudFront includes the <code>Referrer-Policy</code> HTTP response header
223
223
  * and the header's value.</p>
@@ -225,7 +225,7 @@ export interface ResponseHeadersPolicySecurityHeadersConfig {
225
225
  * <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy">Referrer-Policy</a> in the MDN Web Docs.</p>
226
226
  * @public
227
227
  */
228
- ReferrerPolicy?: ResponseHeadersPolicyReferrerPolicy;
228
+ ReferrerPolicy?: ResponseHeadersPolicyReferrerPolicy | undefined;
229
229
  /**
230
230
  * <p>The policy directives and their values that CloudFront includes as values for the
231
231
  * <code>Content-Security-Policy</code> HTTP response header.</p>
@@ -233,7 +233,7 @@ export interface ResponseHeadersPolicySecurityHeadersConfig {
233
233
  * header, see <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy">Content-Security-Policy</a> in the MDN Web Docs.</p>
234
234
  * @public
235
235
  */
236
- ContentSecurityPolicy?: ResponseHeadersPolicyContentSecurityPolicy;
236
+ ContentSecurityPolicy?: ResponseHeadersPolicyContentSecurityPolicy | undefined;
237
237
  /**
238
238
  * <p>Determines whether CloudFront includes the <code>X-Content-Type-Options</code> HTTP response
239
239
  * header with its value set to <code>nosniff</code>.</p>
@@ -241,7 +241,7 @@ export interface ResponseHeadersPolicySecurityHeadersConfig {
241
241
  * header, see <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options">X-Content-Type-Options</a> in the MDN Web Docs.</p>
242
242
  * @public
243
243
  */
244
- ContentTypeOptions?: ResponseHeadersPolicyContentTypeOptions;
244
+ ContentTypeOptions?: ResponseHeadersPolicyContentTypeOptions | undefined;
245
245
  /**
246
246
  * <p>Determines whether CloudFront includes the <code>Strict-Transport-Security</code> HTTP
247
247
  * response header and the header's value.</p>
@@ -249,7 +249,7 @@ export interface ResponseHeadersPolicySecurityHeadersConfig {
249
249
  * header, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/understanding-response-headers-policies.html#understanding-response-headers-policies-security">Security headers</a> in the <i>Amazon CloudFront Developer Guide</i> and <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security">Strict-Transport-Security</a> in the MDN Web Docs.</p>
250
250
  * @public
251
251
  */
252
- StrictTransportSecurity?: ResponseHeadersPolicyStrictTransportSecurity;
252
+ StrictTransportSecurity?: ResponseHeadersPolicyStrictTransportSecurity | undefined;
253
253
  }
254
254
  /**
255
255
  * <p>A configuration for enabling the <code>Server-Timing</code> header in HTTP responses
@@ -283,7 +283,7 @@ export interface ResponseHeadersPolicyServerTimingHeadersConfig {
283
283
  * to four decimal places.</p>
284
284
  * @public
285
285
  */
286
- SamplingRate?: number;
286
+ SamplingRate?: number | undefined;
287
287
  }
288
288
  /**
289
289
  * <p>A response headers policy configuration.</p>
@@ -297,7 +297,7 @@ export interface ResponseHeadersPolicyConfig {
297
297
  * <p>The comment cannot be longer than 128 characters.</p>
298
298
  * @public
299
299
  */
300
- Comment?: string;
300
+ Comment?: string | undefined;
301
301
  /**
302
302
  * <p>A name to identify the response headers policy.</p>
303
303
  * <p>The name must be unique for response headers policies in this Amazon Web Services account.</p>
@@ -309,28 +309,28 @@ export interface ResponseHeadersPolicyConfig {
309
309
  * resource sharing (CORS).</p>
310
310
  * @public
311
311
  */
312
- CorsConfig?: ResponseHeadersPolicyCorsConfig;
312
+ CorsConfig?: ResponseHeadersPolicyCorsConfig | undefined;
313
313
  /**
314
314
  * <p>A configuration for a set of security-related HTTP response headers.</p>
315
315
  * @public
316
316
  */
317
- SecurityHeadersConfig?: ResponseHeadersPolicySecurityHeadersConfig;
317
+ SecurityHeadersConfig?: ResponseHeadersPolicySecurityHeadersConfig | undefined;
318
318
  /**
319
319
  * <p>A configuration for enabling the <code>Server-Timing</code> header in HTTP responses
320
320
  * sent from CloudFront.</p>
321
321
  * @public
322
322
  */
323
- ServerTimingHeadersConfig?: ResponseHeadersPolicyServerTimingHeadersConfig;
323
+ ServerTimingHeadersConfig?: ResponseHeadersPolicyServerTimingHeadersConfig | undefined;
324
324
  /**
325
325
  * <p>A configuration for a set of custom HTTP response headers.</p>
326
326
  * @public
327
327
  */
328
- CustomHeadersConfig?: ResponseHeadersPolicyCustomHeadersConfig;
328
+ CustomHeadersConfig?: ResponseHeadersPolicyCustomHeadersConfig | undefined;
329
329
  /**
330
330
  * <p>A configuration for a set of HTTP headers to remove from the HTTP response.</p>
331
331
  * @public
332
332
  */
333
- RemoveHeadersConfig?: ResponseHeadersPolicyRemoveHeadersConfig;
333
+ RemoveHeadersConfig?: ResponseHeadersPolicyRemoveHeadersConfig | undefined;
334
334
  }
335
335
  /**
336
336
  * @public
@@ -380,17 +380,17 @@ export interface CreateResponseHeadersPolicyResult {
380
380
  * <p>Contains a response headers policy.</p>
381
381
  * @public
382
382
  */
383
- ResponseHeadersPolicy?: ResponseHeadersPolicy;
383
+ ResponseHeadersPolicy?: ResponseHeadersPolicy | undefined;
384
384
  /**
385
385
  * <p>The URL of the response headers policy.</p>
386
386
  * @public
387
387
  */
388
- Location?: string;
388
+ Location?: string | undefined;
389
389
  /**
390
390
  * <p>The version identifier for the current version of the response headers policy.</p>
391
391
  * @public
392
392
  */
393
- ETag?: string;
393
+ ETag?: string | undefined;
394
394
  }
395
395
  /**
396
396
  * <p>A response headers policy with this name already exists. You must provide a unique
@@ -401,7 +401,7 @@ export interface CreateResponseHeadersPolicyResult {
401
401
  export declare class ResponseHeadersPolicyAlreadyExists extends __BaseException {
402
402
  readonly name: "ResponseHeadersPolicyAlreadyExists";
403
403
  readonly $fault: "client";
404
- Message?: string;
404
+ Message?: string | undefined;
405
405
  /**
406
406
  * @internal
407
407
  */
@@ -417,7 +417,7 @@ export declare class ResponseHeadersPolicyAlreadyExists extends __BaseException
417
417
  export declare class TooLongCSPInResponseHeadersPolicy extends __BaseException {
418
418
  readonly name: "TooLongCSPInResponseHeadersPolicy";
419
419
  readonly $fault: "client";
420
- Message?: string;
420
+ Message?: string | undefined;
421
421
  /**
422
422
  * @internal
423
423
  */
@@ -433,7 +433,7 @@ export declare class TooLongCSPInResponseHeadersPolicy extends __BaseException {
433
433
  export declare class TooManyCustomHeadersInResponseHeadersPolicy extends __BaseException {
434
434
  readonly name: "TooManyCustomHeadersInResponseHeadersPolicy";
435
435
  readonly $fault: "client";
436
- Message?: string;
436
+ Message?: string | undefined;
437
437
  /**
438
438
  * @internal
439
439
  */
@@ -449,7 +449,7 @@ export declare class TooManyCustomHeadersInResponseHeadersPolicy extends __BaseE
449
449
  export declare class TooManyRemoveHeadersInResponseHeadersPolicy extends __BaseException {
450
450
  readonly name: "TooManyRemoveHeadersInResponseHeadersPolicy";
451
451
  readonly $fault: "client";
452
- Message?: string;
452
+ Message?: string | undefined;
453
453
  /**
454
454
  * @internal
455
455
  */
@@ -465,7 +465,7 @@ export declare class TooManyRemoveHeadersInResponseHeadersPolicy extends __BaseE
465
465
  export declare class TooManyResponseHeadersPolicies extends __BaseException {
466
466
  readonly name: "TooManyResponseHeadersPolicies";
467
467
  readonly $fault: "client";
468
- Message?: string;
468
+ Message?: string | undefined;
469
469
  /**
470
470
  * @internal
471
471
  */
@@ -559,7 +559,7 @@ export interface StreamingDistributionConfig {
559
559
  * any, for this streaming distribution.</p>
560
560
  * @public
561
561
  */
562
- Aliases?: Aliases;
562
+ Aliases?: Aliases | undefined;
563
563
  /**
564
564
  * <p>Any comments you want to include about the streaming distribution.</p>
565
565
  * @public
@@ -570,7 +570,7 @@ export interface StreamingDistributionConfig {
570
570
  * distribution.</p>
571
571
  * @public
572
572
  */
573
- Logging?: StreamingLoggingConfig;
573
+ Logging?: StreamingLoggingConfig | undefined;
574
574
  /**
575
575
  * <p>A complex type that specifies any Amazon Web Services accounts that you want to permit to create
576
576
  * signed URLs for private content. If you want the distribution to use signed URLs,
@@ -585,7 +585,7 @@ export interface StreamingDistributionConfig {
585
585
  * distribution.</p>
586
586
  * @public
587
587
  */
588
- PriceClass?: PriceClass;
588
+ PriceClass?: PriceClass | undefined;
589
589
  /**
590
590
  * <p>Whether the streaming distribution is enabled to accept user requests for
591
591
  * content.</p>
@@ -633,7 +633,7 @@ export interface StreamingDistribution {
633
633
  * <p>The date and time that the distribution was last modified.</p>
634
634
  * @public
635
635
  */
636
- LastModifiedTime?: Date;
636
+ LastModifiedTime?: Date | undefined;
637
637
  /**
638
638
  * <p>The domain name that corresponds to the streaming distribution, for example,
639
639
  * <code>s5c39gqb8ow64r.cloudfront.net</code>.</p>
@@ -670,18 +670,18 @@ export interface CreateStreamingDistributionResult {
670
670
  * <p>The streaming distribution's information.</p>
671
671
  * @public
672
672
  */
673
- StreamingDistribution?: StreamingDistribution;
673
+ StreamingDistribution?: StreamingDistribution | undefined;
674
674
  /**
675
675
  * <p>The fully qualified URI of the new streaming distribution resource just
676
676
  * created.</p>
677
677
  * @public
678
678
  */
679
- Location?: string;
679
+ Location?: string | undefined;
680
680
  /**
681
681
  * <p>The current version of the streaming distribution created.</p>
682
682
  * @public
683
683
  */
684
- ETag?: string;
684
+ ETag?: string | undefined;
685
685
  }
686
686
  /**
687
687
  * <p>The caller reference you attempted to create the streaming distribution with is
@@ -691,7 +691,7 @@ export interface CreateStreamingDistributionResult {
691
691
  export declare class StreamingDistributionAlreadyExists extends __BaseException {
692
692
  readonly name: "StreamingDistributionAlreadyExists";
693
693
  readonly $fault: "client";
694
- Message?: string;
694
+ Message?: string | undefined;
695
695
  /**
696
696
  * @internal
697
697
  */
@@ -704,7 +704,7 @@ export declare class StreamingDistributionAlreadyExists extends __BaseException
704
704
  export declare class TooManyStreamingDistributionCNAMEs extends __BaseException {
705
705
  readonly name: "TooManyStreamingDistributionCNAMEs";
706
706
  readonly $fault: "client";
707
- Message?: string;
707
+ Message?: string | undefined;
708
708
  /**
709
709
  * @internal
710
710
  */
@@ -718,7 +718,7 @@ export declare class TooManyStreamingDistributionCNAMEs extends __BaseException
718
718
  export declare class TooManyStreamingDistributions extends __BaseException {
719
719
  readonly name: "TooManyStreamingDistributions";
720
720
  readonly $fault: "client";
721
- Message?: string;
721
+ Message?: string | undefined;
722
722
  /**
723
723
  * @internal
724
724
  */
@@ -761,18 +761,18 @@ export interface CreateStreamingDistributionWithTagsResult {
761
761
  * <p>The streaming distribution's information.</p>
762
762
  * @public
763
763
  */
764
- StreamingDistribution?: StreamingDistribution;
764
+ StreamingDistribution?: StreamingDistribution | undefined;
765
765
  /**
766
766
  * <p>The fully qualified URI of the new streaming distribution resource just
767
767
  * created.</p>
768
768
  * @public
769
769
  */
770
- Location?: string;
770
+ Location?: string | undefined;
771
771
  /**
772
772
  * <p>The current version of the distribution created.</p>
773
773
  * @public
774
774
  */
775
- ETag?: string;
775
+ ETag?: string | undefined;
776
776
  }
777
777
  /**
778
778
  * @public
@@ -791,7 +791,7 @@ export interface DeleteCachePolicyRequest {
791
791
  * <code>GetCachePolicyConfig</code>.</p>
792
792
  * @public
793
793
  */
794
- IfMatch?: string;
794
+ IfMatch?: string | undefined;
795
795
  }
796
796
  /**
797
797
  * <p>You cannot delete a managed policy.</p>
@@ -800,7 +800,7 @@ export interface DeleteCachePolicyRequest {
800
800
  export declare class IllegalDelete extends __BaseException {
801
801
  readonly name: "IllegalDelete";
802
802
  readonly $fault: "client";
803
- Message?: string;
803
+ Message?: string | undefined;
804
804
  /**
805
805
  * @internal
806
806
  */
@@ -813,7 +813,7 @@ export declare class IllegalDelete extends __BaseException {
813
813
  export declare class CloudFrontOriginAccessIdentityInUse extends __BaseException {
814
814
  readonly name: "CloudFrontOriginAccessIdentityInUse";
815
815
  readonly $fault: "client";
816
- Message?: string;
816
+ Message?: string | undefined;
817
817
  /**
818
818
  * @internal
819
819
  */
@@ -835,7 +835,7 @@ export interface DeleteCloudFrontOriginAccessIdentityRequest {
835
835
  * <code>E2QWRUHAPOMQZL</code>.</p>
836
836
  * @public
837
837
  */
838
- IfMatch?: string;
838
+ IfMatch?: string | undefined;
839
839
  }
840
840
  /**
841
841
  * <p>The specified origin access identity does not exist.</p>
@@ -844,7 +844,7 @@ export interface DeleteCloudFrontOriginAccessIdentityRequest {
844
844
  export declare class NoSuchCloudFrontOriginAccessIdentity extends __BaseException {
845
845
  readonly name: "NoSuchCloudFrontOriginAccessIdentity";
846
846
  readonly $fault: "client";
847
- Message?: string;
847
+ Message?: string | undefined;
848
848
  /**
849
849
  * @internal
850
850
  */
@@ -864,7 +864,7 @@ export interface DeleteContinuousDeploymentPolicyRequest {
864
864
  * you are deleting.</p>
865
865
  * @public
866
866
  */
867
- IfMatch?: string;
867
+ IfMatch?: string | undefined;
868
868
  }
869
869
  /**
870
870
  * <p>This action deletes a web distribution. To delete a web distribution using the CloudFront
@@ -928,7 +928,7 @@ export interface DeleteDistributionRequest {
928
928
  * distribution. For example: <code>E2QWRUHAPOMQZL</code>.</p>
929
929
  * @public
930
930
  */
931
- IfMatch?: string;
931
+ IfMatch?: string | undefined;
932
932
  }
933
933
  /**
934
934
  * <p>The specified CloudFront distribution is not disabled. You must disable the distribution
@@ -938,7 +938,7 @@ export interface DeleteDistributionRequest {
938
938
  export declare class DistributionNotDisabled extends __BaseException {
939
939
  readonly name: "DistributionNotDisabled";
940
940
  readonly $fault: "client";
941
- Message?: string;
941
+ Message?: string | undefined;
942
942
  /**
943
943
  * @internal
944
944
  */
@@ -958,7 +958,7 @@ export interface DeleteFieldLevelEncryptionConfigRequest {
958
958
  * configuration identity to delete. For example: <code>E2QWRUHAPOMQZL</code>.</p>
959
959
  * @public
960
960
  */
961
- IfMatch?: string;
961
+ IfMatch?: string | undefined;
962
962
  }
963
963
  /**
964
964
  * <p>The specified configuration for field-level encryption is in use.</p>
@@ -967,7 +967,7 @@ export interface DeleteFieldLevelEncryptionConfigRequest {
967
967
  export declare class FieldLevelEncryptionConfigInUse extends __BaseException {
968
968
  readonly name: "FieldLevelEncryptionConfigInUse";
969
969
  readonly $fault: "client";
970
- Message?: string;
970
+ Message?: string | undefined;
971
971
  /**
972
972
  * @internal
973
973
  */
@@ -987,7 +987,7 @@ export interface DeleteFieldLevelEncryptionProfileRequest {
987
987
  * profile to delete. For example: <code>E2QWRUHAPOMQZL</code>.</p>
988
988
  * @public
989
989
  */
990
- IfMatch?: string;
990
+ IfMatch?: string | undefined;
991
991
  }
992
992
  /**
993
993
  * <p>The specified profile for field-level encryption is in use.</p>
@@ -996,7 +996,7 @@ export interface DeleteFieldLevelEncryptionProfileRequest {
996
996
  export declare class FieldLevelEncryptionProfileInUse extends __BaseException {
997
997
  readonly name: "FieldLevelEncryptionProfileInUse";
998
998
  readonly $fault: "client";
999
- Message?: string;
999
+ Message?: string | undefined;
1000
1000
  /**
1001
1001
  * @internal
1002
1002
  */
@@ -1026,7 +1026,7 @@ export interface DeleteFunctionRequest {
1026
1026
  export declare class FunctionInUse extends __BaseException {
1027
1027
  readonly name: "FunctionInUse";
1028
1028
  readonly $fault: "client";
1029
- Message?: string;
1029
+ Message?: string | undefined;
1030
1030
  /**
1031
1031
  * @internal
1032
1032
  */
@@ -1039,7 +1039,7 @@ export declare class FunctionInUse extends __BaseException {
1039
1039
  export declare class NoSuchFunctionExists extends __BaseException {
1040
1040
  readonly name: "NoSuchFunctionExists";
1041
1041
  readonly $fault: "client";
1042
- Message?: string;
1042
+ Message?: string | undefined;
1043
1043
  /**
1044
1044
  * @internal
1045
1045
  */
@@ -1061,7 +1061,7 @@ export interface DeleteKeyGroupRequest {
1061
1061
  * or <code>GetKeyGroupConfig</code>.</p>
1062
1062
  * @public
1063
1063
  */
1064
- IfMatch?: string;
1064
+ IfMatch?: string | undefined;
1065
1065
  }
1066
1066
  /**
1067
1067
  * <p>A resource that was specified is not valid.</p>
@@ -1070,7 +1070,7 @@ export interface DeleteKeyGroupRequest {
1070
1070
  export declare class NoSuchResource extends __BaseException {
1071
1071
  readonly name: "NoSuchResource";
1072
1072
  readonly $fault: "client";
1073
- Message?: string;
1073
+ Message?: string | undefined;
1074
1074
  /**
1075
1075
  * @internal
1076
1076
  */
@@ -1083,7 +1083,7 @@ export declare class NoSuchResource extends __BaseException {
1083
1083
  export declare class ResourceInUse extends __BaseException {
1084
1084
  readonly name: "ResourceInUse";
1085
1085
  readonly $fault: "client";
1086
- Message?: string;
1086
+ Message?: string | undefined;
1087
1087
  /**
1088
1088
  * @internal
1089
1089
  */
@@ -1111,7 +1111,7 @@ export interface DeleteKeyValueStoreRequest {
1111
1111
  export declare class EntityNotFound extends __BaseException {
1112
1112
  readonly name: "EntityNotFound";
1113
1113
  readonly $fault: "client";
1114
- Message?: string;
1114
+ Message?: string | undefined;
1115
1115
  /**
1116
1116
  * @internal
1117
1117
  */
@@ -1139,7 +1139,7 @@ export interface DeleteMonitoringSubscriptionResult {
1139
1139
  export declare class NoSuchMonitoringSubscription extends __BaseException {
1140
1140
  readonly name: "NoSuchMonitoringSubscription";
1141
1141
  readonly $fault: "client";
1142
- Message?: string;
1142
+ Message?: string | undefined;
1143
1143
  /**
1144
1144
  * @internal
1145
1145
  */
@@ -1159,7 +1159,7 @@ export interface DeleteOriginAccessControlRequest {
1159
1159
  * are deleting.</p>
1160
1160
  * @public
1161
1161
  */
1162
- IfMatch?: string;
1162
+ IfMatch?: string | undefined;
1163
1163
  }
1164
1164
  /**
1165
1165
  * <p>The origin access control does not exist.</p>
@@ -1168,7 +1168,7 @@ export interface DeleteOriginAccessControlRequest {
1168
1168
  export declare class NoSuchOriginAccessControl extends __BaseException {
1169
1169
  readonly name: "NoSuchOriginAccessControl";
1170
1170
  readonly $fault: "client";
1171
- Message?: string;
1171
+ Message?: string | undefined;
1172
1172
  /**
1173
1173
  * @internal
1174
1174
  */
@@ -1182,7 +1182,7 @@ export declare class NoSuchOriginAccessControl extends __BaseException {
1182
1182
  export declare class OriginAccessControlInUse extends __BaseException {
1183
1183
  readonly name: "OriginAccessControlInUse";
1184
1184
  readonly $fault: "client";
1185
- Message?: string;
1185
+ Message?: string | undefined;
1186
1186
  /**
1187
1187
  * @internal
1188
1188
  */
@@ -1205,7 +1205,7 @@ export interface DeleteOriginRequestPolicyRequest {
1205
1205
  * <code>GetOriginRequestPolicyConfig</code>.</p>
1206
1206
  * @public
1207
1207
  */
1208
- IfMatch?: string;
1208
+ IfMatch?: string | undefined;
1209
1209
  }
1210
1210
  /**
1211
1211
  * <p>Cannot delete the origin request policy because it is attached to one or more cache
@@ -1215,7 +1215,7 @@ export interface DeleteOriginRequestPolicyRequest {
1215
1215
  export declare class OriginRequestPolicyInUse extends __BaseException {
1216
1216
  readonly name: "OriginRequestPolicyInUse";
1217
1217
  readonly $fault: "client";
1218
- Message?: string;
1218
+ Message?: string | undefined;
1219
1219
  /**
1220
1220
  * @internal
1221
1221
  */
@@ -1235,7 +1235,7 @@ export interface DeletePublicKeyRequest {
1235
1235
  * key identity to delete. For example: <code>E2QWRUHAPOMQZL</code>.</p>
1236
1236
  * @public
1237
1237
  */
1238
- IfMatch?: string;
1238
+ IfMatch?: string | undefined;
1239
1239
  }
1240
1240
  /**
1241
1241
  * <p>The specified public key is in use.</p>
@@ -1244,7 +1244,7 @@ export interface DeletePublicKeyRequest {
1244
1244
  export declare class PublicKeyInUse extends __BaseException {
1245
1245
  readonly name: "PublicKeyInUse";
1246
1246
  readonly $fault: "client";
1247
- Message?: string;
1247
+ Message?: string | undefined;
1248
1248
  /**
1249
1249
  * @internal
1250
1250
  */
@@ -1258,12 +1258,12 @@ export interface DeleteRealtimeLogConfigRequest {
1258
1258
  * <p>The name of the real-time log configuration to delete.</p>
1259
1259
  * @public
1260
1260
  */
1261
- Name?: string;
1261
+ Name?: string | undefined;
1262
1262
  /**
1263
1263
  * <p>The Amazon Resource Name (ARN) of the real-time log configuration to delete.</p>
1264
1264
  * @public
1265
1265
  */
1266
- ARN?: string;
1266
+ ARN?: string | undefined;
1267
1267
  }
1268
1268
  /**
1269
1269
  * <p>Cannot delete the real-time log configuration because it is attached to one or more
@@ -1273,7 +1273,7 @@ export interface DeleteRealtimeLogConfigRequest {
1273
1273
  export declare class RealtimeLogConfigInUse extends __BaseException {
1274
1274
  readonly name: "RealtimeLogConfigInUse";
1275
1275
  readonly $fault: "client";
1276
- Message?: string;
1276
+ Message?: string | undefined;
1277
1277
  /**
1278
1278
  * @internal
1279
1279
  */
@@ -1297,7 +1297,7 @@ export interface DeleteResponseHeadersPolicyRequest {
1297
1297
  * <code>GetResponseHeadersPolicyConfig</code>.</p>
1298
1298
  * @public
1299
1299
  */
1300
- IfMatch?: string;
1300
+ IfMatch?: string | undefined;
1301
1301
  }
1302
1302
  /**
1303
1303
  * <p>Cannot delete the response headers policy because it is attached to one or more cache
@@ -1307,7 +1307,7 @@ export interface DeleteResponseHeadersPolicyRequest {
1307
1307
  export declare class ResponseHeadersPolicyInUse extends __BaseException {
1308
1308
  readonly name: "ResponseHeadersPolicyInUse";
1309
1309
  readonly $fault: "client";
1310
- Message?: string;
1310
+ Message?: string | undefined;
1311
1311
  /**
1312
1312
  * @internal
1313
1313
  */
@@ -1328,7 +1328,7 @@ export interface DeleteStreamingDistributionRequest {
1328
1328
  * streaming distribution. For example: <code>E2QWRUHAPOMQZL</code>.</p>
1329
1329
  * @public
1330
1330
  */
1331
- IfMatch?: string;
1331
+ IfMatch?: string | undefined;
1332
1332
  }
1333
1333
  /**
1334
1334
  * <p>The specified streaming distribution does not exist.</p>
@@ -1337,7 +1337,7 @@ export interface DeleteStreamingDistributionRequest {
1337
1337
  export declare class NoSuchStreamingDistribution extends __BaseException {
1338
1338
  readonly name: "NoSuchStreamingDistribution";
1339
1339
  readonly $fault: "client";
1340
- Message?: string;
1340
+ Message?: string | undefined;
1341
1341
  /**
1342
1342
  * @internal
1343
1343
  */
@@ -1351,7 +1351,7 @@ export declare class NoSuchStreamingDistribution extends __BaseException {
1351
1351
  export declare class StreamingDistributionNotDisabled extends __BaseException {
1352
1352
  readonly name: "StreamingDistributionNotDisabled";
1353
1353
  readonly $fault: "client";
1354
- Message?: string;
1354
+ Message?: string | undefined;
1355
1355
  /**
1356
1356
  * @internal
1357
1357
  */
@@ -1370,7 +1370,7 @@ export interface DescribeFunctionRequest {
1370
1370
  * <p>The function's stage, either <code>DEVELOPMENT</code> or <code>LIVE</code>.</p>
1371
1371
  * @public
1372
1372
  */
1373
- Stage?: FunctionStage;
1373
+ Stage?: FunctionStage | undefined;
1374
1374
  }
1375
1375
  /**
1376
1376
  * @public
@@ -1380,12 +1380,12 @@ export interface DescribeFunctionResult {
1380
1380
  * <p>Contains configuration information and metadata about a CloudFront function.</p>
1381
1381
  * @public
1382
1382
  */
1383
- FunctionSummary?: FunctionSummary;
1383
+ FunctionSummary?: FunctionSummary | undefined;
1384
1384
  /**
1385
1385
  * <p>The version identifier for the current version of the CloudFront function.</p>
1386
1386
  * @public
1387
1387
  */
1388
- ETag?: string;
1388
+ ETag?: string | undefined;
1389
1389
  }
1390
1390
  /**
1391
1391
  * @public
@@ -1405,12 +1405,12 @@ export interface DescribeKeyValueStoreResult {
1405
1405
  * <p>The resulting key value store.</p>
1406
1406
  * @public
1407
1407
  */
1408
- KeyValueStore?: KeyValueStore;
1408
+ KeyValueStore?: KeyValueStore | undefined;
1409
1409
  /**
1410
1410
  * <p>The <code>ETag</code> of the resulting key value store.</p>
1411
1411
  * @public
1412
1412
  */
1413
- ETag?: string;
1413
+ ETag?: string | undefined;
1414
1414
  }
1415
1415
  /**
1416
1416
  * @public
@@ -1434,12 +1434,12 @@ export interface GetCachePolicyResult {
1434
1434
  * <p>The cache policy.</p>
1435
1435
  * @public
1436
1436
  */
1437
- CachePolicy?: CachePolicy;
1437
+ CachePolicy?: CachePolicy | undefined;
1438
1438
  /**
1439
1439
  * <p>The current version of the cache policy.</p>
1440
1440
  * @public
1441
1441
  */
1442
- ETag?: string;
1442
+ ETag?: string | undefined;
1443
1443
  }
1444
1444
  /**
1445
1445
  * @public
@@ -1463,12 +1463,12 @@ export interface GetCachePolicyConfigResult {
1463
1463
  * <p>The cache policy configuration.</p>
1464
1464
  * @public
1465
1465
  */
1466
- CachePolicyConfig?: CachePolicyConfig;
1466
+ CachePolicyConfig?: CachePolicyConfig | undefined;
1467
1467
  /**
1468
1468
  * <p>The current version of the cache policy.</p>
1469
1469
  * @public
1470
1470
  */
1471
- ETag?: string;
1471
+ ETag?: string | undefined;
1472
1472
  }
1473
1473
  /**
1474
1474
  * <p>The request to get an origin access identity's information.</p>
@@ -1490,13 +1490,13 @@ export interface GetCloudFrontOriginAccessIdentityResult {
1490
1490
  * <p>The origin access identity's information.</p>
1491
1491
  * @public
1492
1492
  */
1493
- CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity;
1493
+ CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity | undefined;
1494
1494
  /**
1495
1495
  * <p>The current version of the origin access identity's information. For example:
1496
1496
  * <code>E2QWRUHAPOMQZL</code>.</p>
1497
1497
  * @public
1498
1498
  */
1499
- ETag?: string;
1499
+ ETag?: string | undefined;
1500
1500
  }
1501
1501
  /**
1502
1502
  * <p>The origin access identity's configuration information. For more information, see
@@ -1519,13 +1519,13 @@ export interface GetCloudFrontOriginAccessIdentityConfigResult {
1519
1519
  * <p>The origin access identity's configuration information.</p>
1520
1520
  * @public
1521
1521
  */
1522
- CloudFrontOriginAccessIdentityConfig?: CloudFrontOriginAccessIdentityConfig;
1522
+ CloudFrontOriginAccessIdentityConfig?: CloudFrontOriginAccessIdentityConfig | undefined;
1523
1523
  /**
1524
1524
  * <p>The current version of the configuration. For example:
1525
1525
  * <code>E2QWRUHAPOMQZL</code>.</p>
1526
1526
  * @public
1527
1527
  */
1528
- ETag?: string;
1528
+ ETag?: string | undefined;
1529
1529
  }
1530
1530
  /**
1531
1531
  * @public
@@ -1545,13 +1545,13 @@ export interface GetContinuousDeploymentPolicyResult {
1545
1545
  * <p>A continuous deployment policy.</p>
1546
1546
  * @public
1547
1547
  */
1548
- ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy;
1548
+ ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy | undefined;
1549
1549
  /**
1550
1550
  * <p>The version identifier for the current version of the continuous deployment
1551
1551
  * policy.</p>
1552
1552
  * @public
1553
1553
  */
1554
- ETag?: string;
1554
+ ETag?: string | undefined;
1555
1555
  }
1556
1556
  /**
1557
1557
  * @public
@@ -1572,13 +1572,13 @@ export interface GetContinuousDeploymentPolicyConfigResult {
1572
1572
  * <p>Contains the configuration for a continuous deployment policy.</p>
1573
1573
  * @public
1574
1574
  */
1575
- ContinuousDeploymentPolicyConfig?: ContinuousDeploymentPolicyConfig;
1575
+ ContinuousDeploymentPolicyConfig?: ContinuousDeploymentPolicyConfig | undefined;
1576
1576
  /**
1577
1577
  * <p>The version identifier for the current version of the continuous deployment
1578
1578
  * policy.</p>
1579
1579
  * @public
1580
1580
  */
1581
- ETag?: string;
1581
+ ETag?: string | undefined;
1582
1582
  }
1583
1583
  /**
1584
1584
  * <p>The request to get a distribution's information.</p>
@@ -1601,13 +1601,13 @@ export interface GetDistributionResult {
1601
1601
  * <p>The distribution's information.</p>
1602
1602
  * @public
1603
1603
  */
1604
- Distribution?: Distribution;
1604
+ Distribution?: Distribution | undefined;
1605
1605
  /**
1606
1606
  * <p>The current version of the distribution's information. For example:
1607
1607
  * <code>E2QWRUHAPOMQZL</code>.</p>
1608
1608
  * @public
1609
1609
  */
1610
- ETag?: string;
1610
+ ETag?: string | undefined;
1611
1611
  }
1612
1612
  /**
1613
1613
  * <p>The request to get a distribution configuration.</p>
@@ -1630,13 +1630,13 @@ export interface GetDistributionConfigResult {
1630
1630
  * <p>The distribution's configuration information.</p>
1631
1631
  * @public
1632
1632
  */
1633
- DistributionConfig?: DistributionConfig;
1633
+ DistributionConfig?: DistributionConfig | undefined;
1634
1634
  /**
1635
1635
  * <p>The current version of the configuration. For example:
1636
1636
  * <code>E2QWRUHAPOMQZL</code>.</p>
1637
1637
  * @public
1638
1638
  */
1639
- ETag?: string;
1639
+ ETag?: string | undefined;
1640
1640
  }
1641
1641
  /**
1642
1642
  * @public
@@ -1656,13 +1656,13 @@ export interface GetFieldLevelEncryptionResult {
1656
1656
  * <p>Return the field-level encryption configuration information.</p>
1657
1657
  * @public
1658
1658
  */
1659
- FieldLevelEncryption?: FieldLevelEncryption;
1659
+ FieldLevelEncryption?: FieldLevelEncryption | undefined;
1660
1660
  /**
1661
1661
  * <p>The current version of the field level encryption configuration. For example:
1662
1662
  * <code>E2QWRUHAPOMQZL</code>.</p>
1663
1663
  * @public
1664
1664
  */
1665
- ETag?: string;
1665
+ ETag?: string | undefined;
1666
1666
  }
1667
1667
  /**
1668
1668
  * @public
@@ -1682,13 +1682,13 @@ export interface GetFieldLevelEncryptionConfigResult {
1682
1682
  * <p>Return the field-level encryption configuration information.</p>
1683
1683
  * @public
1684
1684
  */
1685
- FieldLevelEncryptionConfig?: FieldLevelEncryptionConfig;
1685
+ FieldLevelEncryptionConfig?: FieldLevelEncryptionConfig | undefined;
1686
1686
  /**
1687
1687
  * <p>The current version of the field level encryption configuration. For example:
1688
1688
  * <code>E2QWRUHAPOMQZL</code>.</p>
1689
1689
  * @public
1690
1690
  */
1691
- ETag?: string;
1691
+ ETag?: string | undefined;
1692
1692
  }
1693
1693
  /**
1694
1694
  * @public
@@ -1708,13 +1708,13 @@ export interface GetFieldLevelEncryptionProfileResult {
1708
1708
  * <p>Return the field-level encryption profile information.</p>
1709
1709
  * @public
1710
1710
  */
1711
- FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile;
1711
+ FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile | undefined;
1712
1712
  /**
1713
1713
  * <p>The current version of the field level encryption profile. For example:
1714
1714
  * <code>E2QWRUHAPOMQZL</code>.</p>
1715
1715
  * @public
1716
1716
  */
1717
- ETag?: string;
1717
+ ETag?: string | undefined;
1718
1718
  }
1719
1719
  /**
1720
1720
  * @public
@@ -1734,13 +1734,13 @@ export interface GetFieldLevelEncryptionProfileConfigResult {
1734
1734
  * <p>Return the field-level encryption profile configuration information.</p>
1735
1735
  * @public
1736
1736
  */
1737
- FieldLevelEncryptionProfileConfig?: FieldLevelEncryptionProfileConfig;
1737
+ FieldLevelEncryptionProfileConfig?: FieldLevelEncryptionProfileConfig | undefined;
1738
1738
  /**
1739
1739
  * <p>The current version of the field-level encryption profile configuration result. For
1740
1740
  * example: <code>E2QWRUHAPOMQZL</code>.</p>
1741
1741
  * @public
1742
1742
  */
1743
- ETag?: string;
1743
+ ETag?: string | undefined;
1744
1744
  }
1745
1745
  /**
1746
1746
  * @public
@@ -1755,7 +1755,7 @@ export interface GetFunctionRequest {
1755
1755
  * <p>The function's stage, either <code>DEVELOPMENT</code> or <code>LIVE</code>.</p>
1756
1756
  * @public
1757
1757
  */
1758
- Stage?: FunctionStage;
1758
+ Stage?: FunctionStage | undefined;
1759
1759
  }
1760
1760
  /**
1761
1761
  * @public
@@ -1765,17 +1765,17 @@ export interface GetFunctionResult {
1765
1765
  * <p>The function code of a CloudFront function.</p>
1766
1766
  * @public
1767
1767
  */
1768
- FunctionCode?: Uint8Array;
1768
+ FunctionCode?: Uint8Array | undefined;
1769
1769
  /**
1770
1770
  * <p>The version identifier for the current version of the CloudFront function.</p>
1771
1771
  * @public
1772
1772
  */
1773
- ETag?: string;
1773
+ ETag?: string | undefined;
1774
1774
  /**
1775
1775
  * <p>The content type (media type) of the response.</p>
1776
1776
  * @public
1777
1777
  */
1778
- ContentType?: string;
1778
+ ContentType?: string | undefined;
1779
1779
  }
1780
1780
  /**
1781
1781
  * <p>The request to get an invalidation's information.</p>
@@ -1804,7 +1804,7 @@ export interface GetInvalidationResult {
1804
1804
  * Complex Type</a>.</p>
1805
1805
  * @public
1806
1806
  */
1807
- Invalidation?: Invalidation;
1807
+ Invalidation?: Invalidation | undefined;
1808
1808
  }
1809
1809
  /**
1810
1810
  * <p>The specified invalidation does not exist.</p>
@@ -1813,7 +1813,7 @@ export interface GetInvalidationResult {
1813
1813
  export declare class NoSuchInvalidation extends __BaseException {
1814
1814
  readonly name: "NoSuchInvalidation";
1815
1815
  readonly $fault: "client";
1816
- Message?: string;
1816
+ Message?: string | undefined;
1817
1817
  /**
1818
1818
  * @internal
1819
1819
  */
@@ -1838,12 +1838,12 @@ export interface GetKeyGroupResult {
1838
1838
  * <p>The key group.</p>
1839
1839
  * @public
1840
1840
  */
1841
- KeyGroup?: KeyGroup;
1841
+ KeyGroup?: KeyGroup | undefined;
1842
1842
  /**
1843
1843
  * <p>The identifier for this version of the key group.</p>
1844
1844
  * @public
1845
1845
  */
1846
- ETag?: string;
1846
+ ETag?: string | undefined;
1847
1847
  }
1848
1848
  /**
1849
1849
  * @public
@@ -1864,12 +1864,12 @@ export interface GetKeyGroupConfigResult {
1864
1864
  * <p>The key group configuration.</p>
1865
1865
  * @public
1866
1866
  */
1867
- KeyGroupConfig?: KeyGroupConfig;
1867
+ KeyGroupConfig?: KeyGroupConfig | undefined;
1868
1868
  /**
1869
1869
  * <p>The identifier for this version of the key group.</p>
1870
1870
  * @public
1871
1871
  */
1872
- ETag?: string;
1872
+ ETag?: string | undefined;
1873
1873
  }
1874
1874
  /**
1875
1875
  * @public
@@ -1890,7 +1890,7 @@ export interface GetMonitoringSubscriptionResult {
1890
1890
  * additional CloudWatch metrics are enabled for a given CloudFront distribution.</p>
1891
1891
  * @public
1892
1892
  */
1893
- MonitoringSubscription?: MonitoringSubscription;
1893
+ MonitoringSubscription?: MonitoringSubscription | undefined;
1894
1894
  }
1895
1895
  /**
1896
1896
  * @public
@@ -1910,12 +1910,12 @@ export interface GetOriginAccessControlResult {
1910
1910
  * <p>Contains an origin access control, including its unique identifier.</p>
1911
1911
  * @public
1912
1912
  */
1913
- OriginAccessControl?: OriginAccessControl;
1913
+ OriginAccessControl?: OriginAccessControl | undefined;
1914
1914
  /**
1915
1915
  * <p>The version identifier for the current version of the origin access control.</p>
1916
1916
  * @public
1917
1917
  */
1918
- ETag?: string;
1918
+ ETag?: string | undefined;
1919
1919
  }
1920
1920
  /**
1921
1921
  * @public
@@ -1935,12 +1935,12 @@ export interface GetOriginAccessControlConfigResult {
1935
1935
  * <p>Contains an origin access control configuration.</p>
1936
1936
  * @public
1937
1937
  */
1938
- OriginAccessControlConfig?: OriginAccessControlConfig;
1938
+ OriginAccessControlConfig?: OriginAccessControlConfig | undefined;
1939
1939
  /**
1940
1940
  * <p>The version identifier for the current version of the origin access control.</p>
1941
1941
  * @public
1942
1942
  */
1943
- ETag?: string;
1943
+ ETag?: string | undefined;
1944
1944
  }
1945
1945
  /**
1946
1946
  * @public
@@ -1964,12 +1964,12 @@ export interface GetOriginRequestPolicyResult {
1964
1964
  * <p>The origin request policy.</p>
1965
1965
  * @public
1966
1966
  */
1967
- OriginRequestPolicy?: OriginRequestPolicy;
1967
+ OriginRequestPolicy?: OriginRequestPolicy | undefined;
1968
1968
  /**
1969
1969
  * <p>The current version of the origin request policy.</p>
1970
1970
  * @public
1971
1971
  */
1972
- ETag?: string;
1972
+ ETag?: string | undefined;
1973
1973
  }
1974
1974
  /**
1975
1975
  * @public
@@ -1993,12 +1993,12 @@ export interface GetOriginRequestPolicyConfigResult {
1993
1993
  * <p>The origin request policy configuration.</p>
1994
1994
  * @public
1995
1995
  */
1996
- OriginRequestPolicyConfig?: OriginRequestPolicyConfig;
1996
+ OriginRequestPolicyConfig?: OriginRequestPolicyConfig | undefined;
1997
1997
  /**
1998
1998
  * <p>The current version of the origin request policy.</p>
1999
1999
  * @public
2000
2000
  */
2001
- ETag?: string;
2001
+ ETag?: string | undefined;
2002
2002
  }
2003
2003
  /**
2004
2004
  * @public
@@ -2018,12 +2018,12 @@ export interface GetPublicKeyResult {
2018
2018
  * <p>The public key.</p>
2019
2019
  * @public
2020
2020
  */
2021
- PublicKey?: PublicKey;
2021
+ PublicKey?: PublicKey | undefined;
2022
2022
  /**
2023
2023
  * <p>The identifier for this version of the public key.</p>
2024
2024
  * @public
2025
2025
  */
2026
- ETag?: string;
2026
+ ETag?: string | undefined;
2027
2027
  }
2028
2028
  /**
2029
2029
  * @public
@@ -2043,12 +2043,12 @@ export interface GetPublicKeyConfigResult {
2043
2043
  * <p>A public key configuration.</p>
2044
2044
  * @public
2045
2045
  */
2046
- PublicKeyConfig?: PublicKeyConfig;
2046
+ PublicKeyConfig?: PublicKeyConfig | undefined;
2047
2047
  /**
2048
2048
  * <p>The identifier for this version of the public key configuration.</p>
2049
2049
  * @public
2050
2050
  */
2051
- ETag?: string;
2051
+ ETag?: string | undefined;
2052
2052
  }
2053
2053
  /**
2054
2054
  * @public
@@ -2058,12 +2058,12 @@ export interface GetRealtimeLogConfigRequest {
2058
2058
  * <p>The name of the real-time log configuration to get.</p>
2059
2059
  * @public
2060
2060
  */
2061
- Name?: string;
2061
+ Name?: string | undefined;
2062
2062
  /**
2063
2063
  * <p>The Amazon Resource Name (ARN) of the real-time log configuration to get.</p>
2064
2064
  * @public
2065
2065
  */
2066
- ARN?: string;
2066
+ ARN?: string | undefined;
2067
2067
  }
2068
2068
  /**
2069
2069
  * @public
@@ -2073,7 +2073,7 @@ export interface GetRealtimeLogConfigResult {
2073
2073
  * <p>A real-time log configuration.</p>
2074
2074
  * @public
2075
2075
  */
2076
- RealtimeLogConfig?: RealtimeLogConfig;
2076
+ RealtimeLogConfig?: RealtimeLogConfig | undefined;
2077
2077
  }
2078
2078
  /**
2079
2079
  * @public
@@ -2098,12 +2098,12 @@ export interface GetResponseHeadersPolicyResult {
2098
2098
  * <p>Contains a response headers policy.</p>
2099
2099
  * @public
2100
2100
  */
2101
- ResponseHeadersPolicy?: ResponseHeadersPolicy;
2101
+ ResponseHeadersPolicy?: ResponseHeadersPolicy | undefined;
2102
2102
  /**
2103
2103
  * <p>The version identifier for the current version of the response headers policy.</p>
2104
2104
  * @public
2105
2105
  */
2106
- ETag?: string;
2106
+ ETag?: string | undefined;
2107
2107
  }
2108
2108
  /**
2109
2109
  * @public
@@ -2128,12 +2128,12 @@ export interface GetResponseHeadersPolicyConfigResult {
2128
2128
  * <p>Contains a response headers policy.</p>
2129
2129
  * @public
2130
2130
  */
2131
- ResponseHeadersPolicyConfig?: ResponseHeadersPolicyConfig;
2131
+ ResponseHeadersPolicyConfig?: ResponseHeadersPolicyConfig | undefined;
2132
2132
  /**
2133
2133
  * <p>The version identifier for the current version of the response headers policy.</p>
2134
2134
  * @public
2135
2135
  */
2136
- ETag?: string;
2136
+ ETag?: string | undefined;
2137
2137
  }
2138
2138
  /**
2139
2139
  * <p>The request to get a streaming distribution's information.</p>
@@ -2155,13 +2155,13 @@ export interface GetStreamingDistributionResult {
2155
2155
  * <p>The streaming distribution's information.</p>
2156
2156
  * @public
2157
2157
  */
2158
- StreamingDistribution?: StreamingDistribution;
2158
+ StreamingDistribution?: StreamingDistribution | undefined;
2159
2159
  /**
2160
2160
  * <p>The current version of the streaming distribution's information. For example:
2161
2161
  * <code>E2QWRUHAPOMQZL</code>.</p>
2162
2162
  * @public
2163
2163
  */
2164
- ETag?: string;
2164
+ ETag?: string | undefined;
2165
2165
  }
2166
2166
  /**
2167
2167
  * <p>To request to get a streaming distribution configuration.</p>
@@ -2183,13 +2183,13 @@ export interface GetStreamingDistributionConfigResult {
2183
2183
  * <p>The streaming distribution's configuration information.</p>
2184
2184
  * @public
2185
2185
  */
2186
- StreamingDistributionConfig?: StreamingDistributionConfig;
2186
+ StreamingDistributionConfig?: StreamingDistributionConfig | undefined;
2187
2187
  /**
2188
2188
  * <p>The current version of the configuration. For example: <code>E2QWRUHAPOMQZL</code>.
2189
2189
  * </p>
2190
2190
  * @public
2191
2191
  */
2192
- ETag?: string;
2192
+ ETag?: string | undefined;
2193
2193
  }
2194
2194
  /**
2195
2195
  * @public
@@ -2212,7 +2212,7 @@ export interface ListCachePoliciesRequest {
2212
2212
  * </ul>
2213
2213
  * @public
2214
2214
  */
2215
- Type?: CachePolicyType;
2215
+ Type?: CachePolicyType | undefined;
2216
2216
  /**
2217
2217
  * <p>Use this field when paginating results to indicate where to begin in your list of
2218
2218
  * cache policies. The response includes cache policies in the list that occur after the
@@ -2220,12 +2220,12 @@ export interface ListCachePoliciesRequest {
2220
2220
  * <code>NextMarker</code> from the current page's response.</p>
2221
2221
  * @public
2222
2222
  */
2223
- Marker?: string;
2223
+ Marker?: string | undefined;
2224
2224
  /**
2225
2225
  * <p>The maximum number of cache policies that you want in the response.</p>
2226
2226
  * @public
2227
2227
  */
2228
- MaxItems?: number;
2228
+ MaxItems?: number | undefined;
2229
2229
  }
2230
2230
  /**
2231
2231
  * @public
@@ -2235,7 +2235,7 @@ export interface ListCachePoliciesResult {
2235
2235
  * <p>A list of cache policies.</p>
2236
2236
  * @public
2237
2237
  */
2238
- CachePolicyList?: CachePolicyList;
2238
+ CachePolicyList?: CachePolicyList | undefined;
2239
2239
  }
2240
2240
  /**
2241
2241
  * <p>The request to list origin access identities.</p>
@@ -2250,12 +2250,12 @@ export interface ListCloudFrontOriginAccessIdentitiesRequest {
2250
2250
  * the last identity on that page).</p>
2251
2251
  * @public
2252
2252
  */
2253
- Marker?: string;
2253
+ Marker?: string | undefined;
2254
2254
  /**
2255
2255
  * <p>The maximum number of origin access identities you want in the response body.</p>
2256
2256
  * @public
2257
2257
  */
2258
- MaxItems?: number;
2258
+ MaxItems?: number | undefined;
2259
2259
  }
2260
2260
  /**
2261
2261
  * <p>Summary of the information about a CloudFront origin access identity.</p>
@@ -2308,7 +2308,7 @@ export interface CloudFrontOriginAccessIdentityList {
2308
2308
  * your origin access identities where they left off.</p>
2309
2309
  * @public
2310
2310
  */
2311
- NextMarker?: string;
2311
+ NextMarker?: string | undefined;
2312
2312
  /**
2313
2313
  * <p>The maximum number of origin access identities you want in the response body.</p>
2314
2314
  * @public
@@ -2333,7 +2333,7 @@ export interface CloudFrontOriginAccessIdentityList {
2333
2333
  * Amazon Web Services account.</p>
2334
2334
  * @public
2335
2335
  */
2336
- Items?: CloudFrontOriginAccessIdentitySummary[];
2336
+ Items?: CloudFrontOriginAccessIdentitySummary[] | undefined;
2337
2337
  }
2338
2338
  /**
2339
2339
  * <p>The returned result of the corresponding request.</p>
@@ -2344,7 +2344,7 @@ export interface ListCloudFrontOriginAccessIdentitiesResult {
2344
2344
  * <p>The <code>CloudFrontOriginAccessIdentityList</code> type.</p>
2345
2345
  * @public
2346
2346
  */
2347
- CloudFrontOriginAccessIdentityList?: CloudFrontOriginAccessIdentityList;
2347
+ CloudFrontOriginAccessIdentityList?: CloudFrontOriginAccessIdentityList | undefined;
2348
2348
  }
2349
2349
  /**
2350
2350
  * @public
@@ -2368,12 +2368,12 @@ export interface ListConflictingAliasesRequest {
2368
2368
  * of <code>NextMarker</code> from the current page's response.</p>
2369
2369
  * @public
2370
2370
  */
2371
- Marker?: string;
2371
+ Marker?: string | undefined;
2372
2372
  /**
2373
2373
  * <p>The maximum number of conflicting aliases that you want in the response.</p>
2374
2374
  * @public
2375
2375
  */
2376
- MaxItems?: number;
2376
+ MaxItems?: number | undefined;
2377
2377
  }
2378
2378
  /**
2379
2379
  * <p>An alias (also called a CNAME) and the CloudFront distribution and Amazon Web Services account ID that
@@ -2387,18 +2387,18 @@ export interface ConflictingAlias {
2387
2387
  * <p>An alias (also called a CNAME).</p>
2388
2388
  * @public
2389
2389
  */
2390
- Alias?: string;
2390
+ Alias?: string | undefined;
2391
2391
  /**
2392
2392
  * <p>The (partially hidden) ID of the CloudFront distribution associated with the alias.</p>
2393
2393
  * @public
2394
2394
  */
2395
- DistributionId?: string;
2395
+ DistributionId?: string | undefined;
2396
2396
  /**
2397
2397
  * <p>The (partially hidden) ID of the Amazon Web Services account that owns the distribution that's
2398
2398
  * associated with the alias.</p>
2399
2399
  * @public
2400
2400
  */
2401
- AccountId?: string;
2401
+ AccountId?: string | undefined;
2402
2402
  }
2403
2403
  /**
2404
2404
  * <p>A list of aliases (also called CNAMEs) and the CloudFront distributions and Amazon Web Services accounts
@@ -2414,22 +2414,22 @@ export interface ConflictingAliasesList {
2414
2414
  * subsequent request to continue listing conflicting aliases where you left off.</p>
2415
2415
  * @public
2416
2416
  */
2417
- NextMarker?: string;
2417
+ NextMarker?: string | undefined;
2418
2418
  /**
2419
2419
  * <p>The maximum number of conflicting aliases requested.</p>
2420
2420
  * @public
2421
2421
  */
2422
- MaxItems?: number;
2422
+ MaxItems?: number | undefined;
2423
2423
  /**
2424
2424
  * <p>The number of conflicting aliases returned in the response.</p>
2425
2425
  * @public
2426
2426
  */
2427
- Quantity?: number;
2427
+ Quantity?: number | undefined;
2428
2428
  /**
2429
2429
  * <p>Contains the conflicting aliases in the list.</p>
2430
2430
  * @public
2431
2431
  */
2432
- Items?: ConflictingAlias[];
2432
+ Items?: ConflictingAlias[] | undefined;
2433
2433
  }
2434
2434
  /**
2435
2435
  * @public
@@ -2439,7 +2439,7 @@ export interface ListConflictingAliasesResult {
2439
2439
  * <p>A list of conflicting aliases.</p>
2440
2440
  * @public
2441
2441
  */
2442
- ConflictingAliasesList?: ConflictingAliasesList;
2442
+ ConflictingAliasesList?: ConflictingAliasesList | undefined;
2443
2443
  }
2444
2444
  /**
2445
2445
  * @public
@@ -2452,13 +2452,13 @@ export interface ListContinuousDeploymentPoliciesRequest {
2452
2452
  * of <code>NextMarker</code> from the current page's response.</p>
2453
2453
  * @public
2454
2454
  */
2455
- Marker?: string;
2455
+ Marker?: string | undefined;
2456
2456
  /**
2457
2457
  * <p>The maximum number of continuous deployment policies that you want returned in the
2458
2458
  * response.</p>
2459
2459
  * @public
2460
2460
  */
2461
- MaxItems?: number;
2461
+ MaxItems?: number | undefined;
2462
2462
  }
2463
2463
  /**
2464
2464
  * <p>A summary of the information about your continuous deployment policies.</p>
@@ -2481,7 +2481,7 @@ export interface ContinuousDeploymentPolicyList {
2481
2481
  * list, use this value in the <code>Marker</code> field of your request.</p>
2482
2482
  * @public
2483
2483
  */
2484
- NextMarker?: string;
2484
+ NextMarker?: string | undefined;
2485
2485
  /**
2486
2486
  * <p>The maximum number of continuous deployment policies that were specified in your
2487
2487
  * request.</p>
@@ -2498,7 +2498,7 @@ export interface ContinuousDeploymentPolicyList {
2498
2498
  * <p>A list of continuous deployment policy items.</p>
2499
2499
  * @public
2500
2500
  */
2501
- Items?: ContinuousDeploymentPolicySummary[];
2501
+ Items?: ContinuousDeploymentPolicySummary[] | undefined;
2502
2502
  }
2503
2503
  /**
2504
2504
  * @public
@@ -2508,7 +2508,7 @@ export interface ListContinuousDeploymentPoliciesResult {
2508
2508
  * <p>A list of continuous deployment policies.</p>
2509
2509
  * @public
2510
2510
  */
2511
- ContinuousDeploymentPolicyList?: ContinuousDeploymentPolicyList;
2511
+ ContinuousDeploymentPolicyList?: ContinuousDeploymentPolicyList | undefined;
2512
2512
  }
2513
2513
  /**
2514
2514
  * <p>The request to list your distributions.</p>
@@ -2523,12 +2523,12 @@ export interface ListDistributionsRequest {
2523
2523
  * the last distribution on that page).</p>
2524
2524
  * @public
2525
2525
  */
2526
- Marker?: string;
2526
+ Marker?: string | undefined;
2527
2527
  /**
2528
2528
  * <p>The maximum number of distributions you want in the response body.</p>
2529
2529
  * @public
2530
2530
  */
2531
- MaxItems?: number;
2531
+ MaxItems?: number | undefined;
2532
2532
  }
2533
2533
  /**
2534
2534
  * <p>A summary of the information about a CloudFront distribution.</p>
@@ -2580,7 +2580,7 @@ export interface DistributionSummary {
2580
2580
  * distribution.</p>
2581
2581
  * @public
2582
2582
  */
2583
- OriginGroups?: OriginGroups;
2583
+ OriginGroups?: OriginGroups | undefined;
2584
2584
  /**
2585
2585
  * <p>A complex type that describes the default cache behavior if you don't specify a
2586
2586
  * <code>CacheBehavior</code> element or if files don't match any of the values of
@@ -2655,7 +2655,7 @@ export interface DistributionSummary {
2655
2655
  * services in China</i>.</p>
2656
2656
  * @public
2657
2657
  */
2658
- AliasICPRecordals?: AliasICPRecordal[];
2658
+ AliasICPRecordals?: AliasICPRecordal[] | undefined;
2659
2659
  /**
2660
2660
  * <p>A Boolean that indicates whether this is a staging distribution. When this value is
2661
2661
  * <code>true</code>, this is a staging distribution. When this value is
@@ -2680,7 +2680,7 @@ export interface DistributionList {
2680
2680
  * your distributions where they left off.</p>
2681
2681
  * @public
2682
2682
  */
2683
- NextMarker?: string;
2683
+ NextMarker?: string | undefined;
2684
2684
  /**
2685
2685
  * <p>The value you provided for the <code>MaxItems</code> request parameter.</p>
2686
2686
  * @public
@@ -2704,7 +2704,7 @@ export interface DistributionList {
2704
2704
  * distribution that was created by the current Amazon Web Services account.</p>
2705
2705
  * @public
2706
2706
  */
2707
- Items?: DistributionSummary[];
2707
+ Items?: DistributionSummary[] | undefined;
2708
2708
  }
2709
2709
  /**
2710
2710
  * <p>The returned result of the corresponding request.</p>
@@ -2715,7 +2715,7 @@ export interface ListDistributionsResult {
2715
2715
  * <p>The <code>DistributionList</code> type.</p>
2716
2716
  * @public
2717
2717
  */
2718
- DistributionList?: DistributionList;
2718
+ DistributionList?: DistributionList | undefined;
2719
2719
  }
2720
2720
  /**
2721
2721
  * @public
@@ -2728,12 +2728,12 @@ export interface ListDistributionsByCachePolicyIdRequest {
2728
2728
  * <code>NextMarker</code> from the current page's response.</p>
2729
2729
  * @public
2730
2730
  */
2731
- Marker?: string;
2731
+ Marker?: string | undefined;
2732
2732
  /**
2733
2733
  * <p>The maximum number of distribution IDs that you want in the response.</p>
2734
2734
  * @public
2735
2735
  */
2736
- MaxItems?: number;
2736
+ MaxItems?: number | undefined;
2737
2737
  /**
2738
2738
  * <p>The ID of the cache policy whose associated distribution IDs you want to list.</p>
2739
2739
  * @public
@@ -2755,7 +2755,7 @@ export interface DistributionIdList {
2755
2755
  * subsequent request to continue listing distribution IDs where you left off.</p>
2756
2756
  * @public
2757
2757
  */
2758
- NextMarker?: string;
2758
+ NextMarker?: string | undefined;
2759
2759
  /**
2760
2760
  * <p>The maximum number of distribution IDs requested.</p>
2761
2761
  * @public
@@ -2777,7 +2777,7 @@ export interface DistributionIdList {
2777
2777
  * <p>Contains the distribution IDs in the list.</p>
2778
2778
  * @public
2779
2779
  */
2780
- Items?: string[];
2780
+ Items?: string[] | undefined;
2781
2781
  }
2782
2782
  /**
2783
2783
  * @public
@@ -2787,7 +2787,7 @@ export interface ListDistributionsByCachePolicyIdResult {
2787
2787
  * <p>A list of distribution IDs.</p>
2788
2788
  * @public
2789
2789
  */
2790
- DistributionIdList?: DistributionIdList;
2790
+ DistributionIdList?: DistributionIdList | undefined;
2791
2791
  }
2792
2792
  /**
2793
2793
  * @public
@@ -2800,12 +2800,12 @@ export interface ListDistributionsByKeyGroupRequest {
2800
2800
  * <code>NextMarker</code> from the current page's response.</p>
2801
2801
  * @public
2802
2802
  */
2803
- Marker?: string;
2803
+ Marker?: string | undefined;
2804
2804
  /**
2805
2805
  * <p>The maximum number of distribution IDs that you want in the response.</p>
2806
2806
  * @public
2807
2807
  */
2808
- MaxItems?: number;
2808
+ MaxItems?: number | undefined;
2809
2809
  /**
2810
2810
  * <p>The ID of the key group whose associated distribution IDs you are listing.</p>
2811
2811
  * @public
@@ -2820,7 +2820,7 @@ export interface ListDistributionsByKeyGroupResult {
2820
2820
  * <p>A list of distribution IDs.</p>
2821
2821
  * @public
2822
2822
  */
2823
- DistributionIdList?: DistributionIdList;
2823
+ DistributionIdList?: DistributionIdList | undefined;
2824
2824
  }
2825
2825
  /**
2826
2826
  * @public
@@ -2833,12 +2833,12 @@ export interface ListDistributionsByOriginRequestPolicyIdRequest {
2833
2833
  * <code>NextMarker</code> from the current page's response.</p>
2834
2834
  * @public
2835
2835
  */
2836
- Marker?: string;
2836
+ Marker?: string | undefined;
2837
2837
  /**
2838
2838
  * <p>The maximum number of distribution IDs that you want in the response.</p>
2839
2839
  * @public
2840
2840
  */
2841
- MaxItems?: number;
2841
+ MaxItems?: number | undefined;
2842
2842
  /**
2843
2843
  * <p>The ID of the origin request policy whose associated distribution IDs you want to
2844
2844
  * list.</p>
@@ -2854,7 +2854,7 @@ export interface ListDistributionsByOriginRequestPolicyIdResult {
2854
2854
  * <p>A list of distribution IDs.</p>
2855
2855
  * @public
2856
2856
  */
2857
- DistributionIdList?: DistributionIdList;
2857
+ DistributionIdList?: DistributionIdList | undefined;
2858
2858
  }
2859
2859
  /**
2860
2860
  * @public
@@ -2867,24 +2867,24 @@ export interface ListDistributionsByRealtimeLogConfigRequest {
2867
2867
  * <code>NextMarker</code> from the current page's response.</p>
2868
2868
  * @public
2869
2869
  */
2870
- Marker?: string;
2870
+ Marker?: string | undefined;
2871
2871
  /**
2872
2872
  * <p>The maximum number of distributions that you want in the response.</p>
2873
2873
  * @public
2874
2874
  */
2875
- MaxItems?: number;
2875
+ MaxItems?: number | undefined;
2876
2876
  /**
2877
2877
  * <p>The name of the real-time log configuration whose associated distributions you want to
2878
2878
  * list.</p>
2879
2879
  * @public
2880
2880
  */
2881
- RealtimeLogConfigName?: string;
2881
+ RealtimeLogConfigName?: string | undefined;
2882
2882
  /**
2883
2883
  * <p>The Amazon Resource Name (ARN) of the real-time log configuration whose associated
2884
2884
  * distributions you want to list.</p>
2885
2885
  * @public
2886
2886
  */
2887
- RealtimeLogConfigArn?: string;
2887
+ RealtimeLogConfigArn?: string | undefined;
2888
2888
  }
2889
2889
  /**
2890
2890
  * @public
@@ -2894,7 +2894,7 @@ export interface ListDistributionsByRealtimeLogConfigResult {
2894
2894
  * <p>A distribution list.</p>
2895
2895
  * @public
2896
2896
  */
2897
- DistributionList?: DistributionList;
2897
+ DistributionList?: DistributionList | undefined;
2898
2898
  }
2899
2899
  /**
2900
2900
  * @public
@@ -2907,12 +2907,12 @@ export interface ListDistributionsByResponseHeadersPolicyIdRequest {
2907
2907
  * <code>NextMarker</code> from the current page's response.</p>
2908
2908
  * @public
2909
2909
  */
2910
- Marker?: string;
2910
+ Marker?: string | undefined;
2911
2911
  /**
2912
2912
  * <p>The maximum number of distribution IDs that you want to get in the response.</p>
2913
2913
  * @public
2914
2914
  */
2915
- MaxItems?: number;
2915
+ MaxItems?: number | undefined;
2916
2916
  /**
2917
2917
  * <p>The ID of the response headers policy whose associated distribution IDs you want to
2918
2918
  * list.</p>
@@ -2928,7 +2928,7 @@ export interface ListDistributionsByResponseHeadersPolicyIdResult {
2928
2928
  * <p>A list of distribution IDs.</p>
2929
2929
  * @public
2930
2930
  */
2931
- DistributionIdList?: DistributionIdList;
2931
+ DistributionIdList?: DistributionIdList | undefined;
2932
2932
  }
2933
2933
  /**
2934
2934
  * <p>The request to list distributions that are associated with a specified WAF web
@@ -2945,13 +2945,13 @@ export interface ListDistributionsByWebACLIdRequest {
2945
2945
  * <code>Marker</code>.)</p>
2946
2946
  * @public
2947
2947
  */
2948
- Marker?: string;
2948
+ Marker?: string | undefined;
2949
2949
  /**
2950
2950
  * <p>The maximum number of distributions that you want CloudFront to return in the response body.
2951
2951
  * The maximum and default values are both 100.</p>
2952
2952
  * @public
2953
2953
  */
2954
- MaxItems?: number;
2954
+ MaxItems?: number | undefined;
2955
2955
  /**
2956
2956
  * <p>The ID of the WAF web ACL that you want to list the associated distributions. If you
2957
2957
  * specify "null" for the ID, the request returns a list of the distributions that aren't
@@ -2973,7 +2973,7 @@ export interface ListDistributionsByWebACLIdResult {
2973
2973
  * <p>The <code>DistributionList</code> type.</p>
2974
2974
  * @public
2975
2975
  */
2976
- DistributionList?: DistributionList;
2976
+ DistributionList?: DistributionList | undefined;
2977
2977
  }
2978
2978
  /**
2979
2979
  * @public
@@ -2987,13 +2987,13 @@ export interface ListFieldLevelEncryptionConfigsRequest {
2987
2987
  * the last configuration on that page).</p>
2988
2988
  * @public
2989
2989
  */
2990
- Marker?: string;
2990
+ Marker?: string | undefined;
2991
2991
  /**
2992
2992
  * <p>The maximum number of field-level encryption configurations you want in the response
2993
2993
  * body.</p>
2994
2994
  * @public
2995
2995
  */
2996
- MaxItems?: number;
2996
+ MaxItems?: number | undefined;
2997
2997
  }
2998
2998
  /**
2999
2999
  * <p>A summary of a field-level encryption item.</p>
@@ -3015,17 +3015,17 @@ export interface FieldLevelEncryptionSummary {
3015
3015
  * longer than 128 characters.</p>
3016
3016
  * @public
3017
3017
  */
3018
- Comment?: string;
3018
+ Comment?: string | undefined;
3019
3019
  /**
3020
3020
  * <p>A summary of a query argument-profile mapping.</p>
3021
3021
  * @public
3022
3022
  */
3023
- QueryArgProfileConfig?: QueryArgProfileConfig;
3023
+ QueryArgProfileConfig?: QueryArgProfileConfig | undefined;
3024
3024
  /**
3025
3025
  * <p>A summary of a content type-profile mapping.</p>
3026
3026
  * @public
3027
3027
  */
3028
- ContentTypeProfileConfig?: ContentTypeProfileConfig;
3028
+ ContentTypeProfileConfig?: ContentTypeProfileConfig | undefined;
3029
3029
  }
3030
3030
  /**
3031
3031
  * <p>List of field-level encryption configurations.</p>
@@ -3038,7 +3038,7 @@ export interface FieldLevelEncryptionList {
3038
3038
  * your configurations where you left off.</p>
3039
3039
  * @public
3040
3040
  */
3041
- NextMarker?: string;
3041
+ NextMarker?: string | undefined;
3042
3042
  /**
3043
3043
  * <p>The maximum number of elements you want in the response body.</p>
3044
3044
  * @public
@@ -3053,7 +3053,7 @@ export interface FieldLevelEncryptionList {
3053
3053
  * <p>An array of field-level encryption items.</p>
3054
3054
  * @public
3055
3055
  */
3056
- Items?: FieldLevelEncryptionSummary[];
3056
+ Items?: FieldLevelEncryptionSummary[] | undefined;
3057
3057
  }
3058
3058
  /**
3059
3059
  * @public
@@ -3064,7 +3064,7 @@ export interface ListFieldLevelEncryptionConfigsResult {
3064
3064
  * CloudFront for this account.</p>
3065
3065
  * @public
3066
3066
  */
3067
- FieldLevelEncryptionList?: FieldLevelEncryptionList;
3067
+ FieldLevelEncryptionList?: FieldLevelEncryptionList | undefined;
3068
3068
  }
3069
3069
  /**
3070
3070
  * @public
@@ -3078,13 +3078,13 @@ export interface ListFieldLevelEncryptionProfilesRequest {
3078
3078
  * page).</p>
3079
3079
  * @public
3080
3080
  */
3081
- Marker?: string;
3081
+ Marker?: string | undefined;
3082
3082
  /**
3083
3083
  * <p>The maximum number of field-level encryption profiles you want in the response body.
3084
3084
  * </p>
3085
3085
  * @public
3086
3086
  */
3087
- MaxItems?: number;
3087
+ MaxItems?: number | undefined;
3088
3088
  }
3089
3089
  /**
3090
3090
  * <p>The field-level encryption profile summary.</p>
@@ -3118,7 +3118,7 @@ export interface FieldLevelEncryptionProfileSummary {
3118
3118
  * be longer than 128 characters.</p>
3119
3119
  * @public
3120
3120
  */
3121
- Comment?: string;
3121
+ Comment?: string | undefined;
3122
3122
  }
3123
3123
  /**
3124
3124
  * <p>List of field-level encryption profiles.</p>
@@ -3131,7 +3131,7 @@ export interface FieldLevelEncryptionProfileList {
3131
3131
  * your profiles where you left off.</p>
3132
3132
  * @public
3133
3133
  */
3134
- NextMarker?: string;
3134
+ NextMarker?: string | undefined;
3135
3135
  /**
3136
3136
  * <p>The maximum number of field-level encryption profiles you want in the response body.
3137
3137
  * </p>
@@ -3147,7 +3147,7 @@ export interface FieldLevelEncryptionProfileList {
3147
3147
  * <p>The field-level encryption profile items.</p>
3148
3148
  * @public
3149
3149
  */
3150
- Items?: FieldLevelEncryptionProfileSummary[];
3150
+ Items?: FieldLevelEncryptionProfileSummary[] | undefined;
3151
3151
  }
3152
3152
  /**
3153
3153
  * @public
@@ -3158,7 +3158,7 @@ export interface ListFieldLevelEncryptionProfilesResult {
3158
3158
  * for this account.</p>
3159
3159
  * @public
3160
3160
  */
3161
- FieldLevelEncryptionProfileList?: FieldLevelEncryptionProfileList;
3161
+ FieldLevelEncryptionProfileList?: FieldLevelEncryptionProfileList | undefined;
3162
3162
  }
3163
3163
  /**
3164
3164
  * @public
@@ -3171,18 +3171,18 @@ export interface ListFunctionsRequest {
3171
3171
  * <code>NextMarker</code> from the current page's response.</p>
3172
3172
  * @public
3173
3173
  */
3174
- Marker?: string;
3174
+ Marker?: string | undefined;
3175
3175
  /**
3176
3176
  * <p>The maximum number of functions that you want in the response.</p>
3177
3177
  * @public
3178
3178
  */
3179
- MaxItems?: number;
3179
+ MaxItems?: number | undefined;
3180
3180
  /**
3181
3181
  * <p>An optional filter to return only the functions that are in the specified stage,
3182
3182
  * either <code>DEVELOPMENT</code> or <code>LIVE</code>.</p>
3183
3183
  * @public
3184
3184
  */
3185
- Stage?: FunctionStage;
3185
+ Stage?: FunctionStage | undefined;
3186
3186
  }
3187
3187
  /**
3188
3188
  * <p>A list of CloudFront functions.</p>
@@ -3195,7 +3195,7 @@ export interface FunctionList {
3195
3195
  * subsequent request to continue listing functions where you left off.</p>
3196
3196
  * @public
3197
3197
  */
3198
- NextMarker?: string;
3198
+ NextMarker?: string | undefined;
3199
3199
  /**
3200
3200
  * <p>The maximum number of functions requested.</p>
3201
3201
  * @public
@@ -3210,7 +3210,7 @@ export interface FunctionList {
3210
3210
  * <p>Contains the functions in the list.</p>
3211
3211
  * @public
3212
3212
  */
3213
- Items?: FunctionSummary[];
3213
+ Items?: FunctionSummary[] | undefined;
3214
3214
  }
3215
3215
  /**
3216
3216
  * @public
@@ -3220,7 +3220,7 @@ export interface ListFunctionsResult {
3220
3220
  * <p>A list of CloudFront functions.</p>
3221
3221
  * @public
3222
3222
  */
3223
- FunctionList?: FunctionList;
3223
+ FunctionList?: FunctionList | undefined;
3224
3224
  }
3225
3225
  /**
3226
3226
  * <p>The request to list invalidations.</p>
@@ -3242,12 +3242,12 @@ export interface ListInvalidationsRequest {
3242
3242
  * page.</p>
3243
3243
  * @public
3244
3244
  */
3245
- Marker?: string;
3245
+ Marker?: string | undefined;
3246
3246
  /**
3247
3247
  * <p>The maximum number of invalidation batches that you want in the response body.</p>
3248
3248
  * @public
3249
3249
  */
3250
- MaxItems?: number;
3250
+ MaxItems?: number | undefined;
3251
3251
  }
3252
3252
  /**
3253
3253
  * <p>A summary of an invalidation request.</p>
@@ -3288,7 +3288,7 @@ export interface InvalidationList {
3288
3288
  * listing your invalidation batches where they left off.</p>
3289
3289
  * @public
3290
3290
  */
3291
- NextMarker?: string;
3291
+ NextMarker?: string | undefined;
3292
3292
  /**
3293
3293
  * <p>The value that you provided for the <code>MaxItems</code> request parameter.</p>
3294
3294
  * @public
@@ -3313,7 +3313,7 @@ export interface InvalidationList {
3313
3313
  * invalidation batch created by the current Amazon Web Services account.</p>
3314
3314
  * @public
3315
3315
  */
3316
- Items?: InvalidationSummary[];
3316
+ Items?: InvalidationSummary[] | undefined;
3317
3317
  }
3318
3318
  /**
3319
3319
  * <p>The returned result of the corresponding request.</p>
@@ -3324,7 +3324,7 @@ export interface ListInvalidationsResult {
3324
3324
  * <p>Information about invalidation batches.</p>
3325
3325
  * @public
3326
3326
  */
3327
- InvalidationList?: InvalidationList;
3327
+ InvalidationList?: InvalidationList | undefined;
3328
3328
  }
3329
3329
  /**
3330
3330
  * @public
@@ -3337,12 +3337,12 @@ export interface ListKeyGroupsRequest {
3337
3337
  * <code>NextMarker</code> from the current page's response.</p>
3338
3338
  * @public
3339
3339
  */
3340
- Marker?: string;
3340
+ Marker?: string | undefined;
3341
3341
  /**
3342
3342
  * <p>The maximum number of key groups that you want in the response.</p>
3343
3343
  * @public
3344
3344
  */
3345
- MaxItems?: number;
3345
+ MaxItems?: number | undefined;
3346
3346
  }
3347
3347
  /**
3348
3348
  * <p>Contains information about a key group.</p>
@@ -3366,7 +3366,7 @@ export interface KeyGroupList {
3366
3366
  * subsequent request to continue listing key groups.</p>
3367
3367
  * @public
3368
3368
  */
3369
- NextMarker?: string;
3369
+ NextMarker?: string | undefined;
3370
3370
  /**
3371
3371
  * <p>The maximum number of key groups requested.</p>
3372
3372
  * @public
@@ -3381,7 +3381,7 @@ export interface KeyGroupList {
3381
3381
  * <p>A list of key groups.</p>
3382
3382
  * @public
3383
3383
  */
3384
- Items?: KeyGroupSummary[];
3384
+ Items?: KeyGroupSummary[] | undefined;
3385
3385
  }
3386
3386
  /**
3387
3387
  * @public
@@ -3391,7 +3391,7 @@ export interface ListKeyGroupsResult {
3391
3391
  * <p>A list of key groups.</p>
3392
3392
  * @public
3393
3393
  */
3394
- KeyGroupList?: KeyGroupList;
3394
+ KeyGroupList?: KeyGroupList | undefined;
3395
3395
  }
3396
3396
  /**
3397
3397
  * @public
@@ -3401,17 +3401,17 @@ export interface ListKeyValueStoresRequest {
3401
3401
  * <p>The marker associated with the key value stores list.</p>
3402
3402
  * @public
3403
3403
  */
3404
- Marker?: string;
3404
+ Marker?: string | undefined;
3405
3405
  /**
3406
3406
  * <p>The maximum number of items in the key value stores list.</p>
3407
3407
  * @public
3408
3408
  */
3409
- MaxItems?: number;
3409
+ MaxItems?: number | undefined;
3410
3410
  /**
3411
3411
  * <p>The status of the request for the key value stores list.</p>
3412
3412
  * @public
3413
3413
  */
3414
- Status?: string;
3414
+ Status?: string | undefined;
3415
3415
  }
3416
3416
  /**
3417
3417
  * <p>The key value store list.</p>
@@ -3422,7 +3422,7 @@ export interface KeyValueStoreList {
3422
3422
  * <p>The next marker associated with the key value store list.</p>
3423
3423
  * @public
3424
3424
  */
3425
- NextMarker?: string;
3425
+ NextMarker?: string | undefined;
3426
3426
  /**
3427
3427
  * <p>The maximum number of items in the key value store list.</p>
3428
3428
  * @public
@@ -3437,7 +3437,7 @@ export interface KeyValueStoreList {
3437
3437
  * <p>The items of the key value store list.</p>
3438
3438
  * @public
3439
3439
  */
3440
- Items?: KeyValueStore[];
3440
+ Items?: KeyValueStore[] | undefined;
3441
3441
  }
3442
3442
  /**
3443
3443
  * @public
@@ -3447,7 +3447,7 @@ export interface ListKeyValueStoresResult {
3447
3447
  * <p>The resulting key value stores list.</p>
3448
3448
  * @public
3449
3449
  */
3450
- KeyValueStoreList?: KeyValueStoreList;
3450
+ KeyValueStoreList?: KeyValueStoreList | undefined;
3451
3451
  }
3452
3452
  /**
3453
3453
  * @public
@@ -3460,12 +3460,12 @@ export interface ListOriginAccessControlsRequest {
3460
3460
  * <code>NextMarker</code> from the current page's response.</p>
3461
3461
  * @public
3462
3462
  */
3463
- Marker?: string;
3463
+ Marker?: string | undefined;
3464
3464
  /**
3465
3465
  * <p>The maximum number of origin access controls that you want in the response.</p>
3466
3466
  * @public
3467
3467
  */
3468
- MaxItems?: number;
3468
+ MaxItems?: number | undefined;
3469
3469
  }
3470
3470
  /**
3471
3471
  * <p>A CloudFront origin access control.</p>
@@ -3541,7 +3541,7 @@ export interface OriginAccessControlList {
3541
3541
  * request to continue listing origin access controls.</p>
3542
3542
  * @public
3543
3543
  */
3544
- NextMarker?: string;
3544
+ NextMarker?: string | undefined;
3545
3545
  /**
3546
3546
  * <p>The maximum number of origin access controls requested.</p>
3547
3547
  * @public
@@ -3562,7 +3562,7 @@ export interface OriginAccessControlList {
3562
3562
  * <p>Contains the origin access controls in the list.</p>
3563
3563
  * @public
3564
3564
  */
3565
- Items?: OriginAccessControlSummary[];
3565
+ Items?: OriginAccessControlSummary[] | undefined;
3566
3566
  }
3567
3567
  /**
3568
3568
  * @public
@@ -3572,7 +3572,7 @@ export interface ListOriginAccessControlsResult {
3572
3572
  * <p>A list of origin access controls.</p>
3573
3573
  * @public
3574
3574
  */
3575
- OriginAccessControlList?: OriginAccessControlList;
3575
+ OriginAccessControlList?: OriginAccessControlList | undefined;
3576
3576
  }
3577
3577
  /**
3578
3578
  * @public
@@ -3607,7 +3607,7 @@ export interface ListOriginRequestPoliciesRequest {
3607
3607
  * </ul>
3608
3608
  * @public
3609
3609
  */
3610
- Type?: OriginRequestPolicyType;
3610
+ Type?: OriginRequestPolicyType | undefined;
3611
3611
  /**
3612
3612
  * <p>Use this field when paginating results to indicate where to begin in your list of
3613
3613
  * origin request policies. The response includes origin request policies in the list that
@@ -3615,12 +3615,12 @@ export interface ListOriginRequestPoliciesRequest {
3615
3615
  * value of <code>NextMarker</code> from the current page's response.</p>
3616
3616
  * @public
3617
3617
  */
3618
- Marker?: string;
3618
+ Marker?: string | undefined;
3619
3619
  /**
3620
3620
  * <p>The maximum number of origin request policies that you want in the response.</p>
3621
3621
  * @public
3622
3622
  */
3623
- MaxItems?: number;
3623
+ MaxItems?: number | undefined;
3624
3624
  }
3625
3625
  /**
3626
3626
  * <p>Contains an origin request policy.</p>
@@ -3651,7 +3651,7 @@ export interface OriginRequestPolicyList {
3651
3651
  * off.</p>
3652
3652
  * @public
3653
3653
  */
3654
- NextMarker?: string;
3654
+ NextMarker?: string | undefined;
3655
3655
  /**
3656
3656
  * <p>The maximum number of origin request policies requested.</p>
3657
3657
  * @public
@@ -3666,7 +3666,7 @@ export interface OriginRequestPolicyList {
3666
3666
  * <p>Contains the origin request policies in the list.</p>
3667
3667
  * @public
3668
3668
  */
3669
- Items?: OriginRequestPolicySummary[];
3669
+ Items?: OriginRequestPolicySummary[] | undefined;
3670
3670
  }
3671
3671
  /**
3672
3672
  * @public
@@ -3676,7 +3676,7 @@ export interface ListOriginRequestPoliciesResult {
3676
3676
  * <p>A list of origin request policies.</p>
3677
3677
  * @public
3678
3678
  */
3679
- OriginRequestPolicyList?: OriginRequestPolicyList;
3679
+ OriginRequestPolicyList?: OriginRequestPolicyList | undefined;
3680
3680
  }
3681
3681
  /**
3682
3682
  * @public
@@ -3690,12 +3690,12 @@ export interface ListPublicKeysRequest {
3690
3690
  * the last public key on that page).</p>
3691
3691
  * @public
3692
3692
  */
3693
- Marker?: string;
3693
+ Marker?: string | undefined;
3694
3694
  /**
3695
3695
  * <p>The maximum number of public keys you want in the response body.</p>
3696
3696
  * @public
3697
3697
  */
3698
- MaxItems?: number;
3698
+ MaxItems?: number | undefined;
3699
3699
  }
3700
3700
  /**
3701
3701
  * <p>Contains information about a public key.</p>
@@ -3727,7 +3727,7 @@ export interface PublicKeySummary {
3727
3727
  * characters.</p>
3728
3728
  * @public
3729
3729
  */
3730
- Comment?: string;
3730
+ Comment?: string | undefined;
3731
3731
  }
3732
3732
  /**
3733
3733
  * <p>A list of public keys that you can use with <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html">signed URLs and signed cookies</a>, or with <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/field-level-encryption.html">field-level encryption</a>.</p>
@@ -3740,7 +3740,7 @@ export interface PublicKeyList {
3740
3740
  * your public keys where you left off.</p>
3741
3741
  * @public
3742
3742
  */
3743
- NextMarker?: string;
3743
+ NextMarker?: string | undefined;
3744
3744
  /**
3745
3745
  * <p>The maximum number of public keys you want in the response.</p>
3746
3746
  * @public
@@ -3755,7 +3755,7 @@ export interface PublicKeyList {
3755
3755
  * <p>A list of public keys.</p>
3756
3756
  * @public
3757
3757
  */
3758
- Items?: PublicKeySummary[];
3758
+ Items?: PublicKeySummary[] | undefined;
3759
3759
  }
3760
3760
  /**
3761
3761
  * @public
@@ -3766,7 +3766,7 @@ export interface ListPublicKeysResult {
3766
3766
  * account.</p>
3767
3767
  * @public
3768
3768
  */
3769
- PublicKeyList?: PublicKeyList;
3769
+ PublicKeyList?: PublicKeyList | undefined;
3770
3770
  }
3771
3771
  /**
3772
3772
  * @public
@@ -3777,7 +3777,7 @@ export interface ListRealtimeLogConfigsRequest {
3777
3777
  * response.</p>
3778
3778
  * @public
3779
3779
  */
3780
- MaxItems?: number;
3780
+ MaxItems?: number | undefined;
3781
3781
  /**
3782
3782
  * <p>Use this field when paginating results to indicate where to begin in your list of
3783
3783
  * real-time log configurations. The response includes real-time log configurations in the
@@ -3785,7 +3785,7 @@ export interface ListRealtimeLogConfigsRequest {
3785
3785
  * value to the value of <code>NextMarker</code> from the current page's response.</p>
3786
3786
  * @public
3787
3787
  */
3788
- Marker?: string;
3788
+ Marker?: string | undefined;
3789
3789
  }
3790
3790
  /**
3791
3791
  * <p>A list of real-time log configurations.</p>
@@ -3801,7 +3801,7 @@ export interface RealtimeLogConfigs {
3801
3801
  * <p>Contains the list of real-time log configurations.</p>
3802
3802
  * @public
3803
3803
  */
3804
- Items?: RealtimeLogConfig[];
3804
+ Items?: RealtimeLogConfig[] | undefined;
3805
3805
  /**
3806
3806
  * <p>A flag that indicates whether there are more real-time log configurations than are
3807
3807
  * contained in this list.</p>
@@ -3821,7 +3821,7 @@ export interface RealtimeLogConfigs {
3821
3821
  * </p>
3822
3822
  * @public
3823
3823
  */
3824
- NextMarker?: string;
3824
+ NextMarker?: string | undefined;
3825
3825
  }
3826
3826
  /**
3827
3827
  * @public
@@ -3831,7 +3831,7 @@ export interface ListRealtimeLogConfigsResult {
3831
3831
  * <p>A list of real-time log configurations.</p>
3832
3832
  * @public
3833
3833
  */
3834
- RealtimeLogConfigs?: RealtimeLogConfigs;
3834
+ RealtimeLogConfigs?: RealtimeLogConfigs | undefined;
3835
3835
  }
3836
3836
  /**
3837
3837
  * @public
@@ -3865,7 +3865,7 @@ export interface ListResponseHeadersPoliciesRequest {
3865
3865
  * </ul>
3866
3866
  * @public
3867
3867
  */
3868
- Type?: ResponseHeadersPolicyType;
3868
+ Type?: ResponseHeadersPolicyType | undefined;
3869
3869
  /**
3870
3870
  * <p>Use this field when paginating results to indicate where to begin in your list of
3871
3871
  * response headers policies. The response includes response headers policies in the list
@@ -3873,13 +3873,13 @@ export interface ListResponseHeadersPoliciesRequest {
3873
3873
  * the value of <code>NextMarker</code> from the current page's response.</p>
3874
3874
  * @public
3875
3875
  */
3876
- Marker?: string;
3876
+ Marker?: string | undefined;
3877
3877
  /**
3878
3878
  * <p>The maximum number of response headers policies that you want to get in the
3879
3879
  * response.</p>
3880
3880
  * @public
3881
3881
  */
3882
- MaxItems?: number;
3882
+ MaxItems?: number | undefined;
3883
3883
  }
3884
3884
  /**
3885
3885
  * <p>Contains a response headers policy.</p>
@@ -3910,7 +3910,7 @@ export interface ResponseHeadersPolicyList {
3910
3910
  * off.</p>
3911
3911
  * @public
3912
3912
  */
3913
- NextMarker?: string;
3913
+ NextMarker?: string | undefined;
3914
3914
  /**
3915
3915
  * <p>The maximum number of response headers policies requested.</p>
3916
3916
  * @public
@@ -3925,7 +3925,7 @@ export interface ResponseHeadersPolicyList {
3925
3925
  * <p>The response headers policies in the list.</p>
3926
3926
  * @public
3927
3927
  */
3928
- Items?: ResponseHeadersPolicySummary[];
3928
+ Items?: ResponseHeadersPolicySummary[] | undefined;
3929
3929
  }
3930
3930
  /**
3931
3931
  * @public
@@ -3935,7 +3935,7 @@ export interface ListResponseHeadersPoliciesResult {
3935
3935
  * <p>A list of response headers policies.</p>
3936
3936
  * @public
3937
3937
  */
3938
- ResponseHeadersPolicyList?: ResponseHeadersPolicyList;
3938
+ ResponseHeadersPolicyList?: ResponseHeadersPolicyList | undefined;
3939
3939
  }
3940
3940
  /**
3941
3941
  * <p>The request to list your streaming distributions.</p>
@@ -3946,12 +3946,12 @@ export interface ListStreamingDistributionsRequest {
3946
3946
  * <p>The value that you provided for the <code>Marker</code> request parameter.</p>
3947
3947
  * @public
3948
3948
  */
3949
- Marker?: string;
3949
+ Marker?: string | undefined;
3950
3950
  /**
3951
3951
  * <p>The value that you provided for the <code>MaxItems</code> request parameter.</p>
3952
3952
  * @public
3953
3953
  */
3954
- MaxItems?: number;
3954
+ MaxItems?: number | undefined;
3955
3955
  }
3956
3956
  /**
3957
3957
  * <p>A summary of the information for a CloudFront streaming distribution.</p>
@@ -4050,7 +4050,7 @@ export interface StreamingDistributionList {
4050
4050
  * your RTMP distributions where they left off.</p>
4051
4051
  * @public
4052
4052
  */
4053
- NextMarker?: string;
4053
+ NextMarker?: string | undefined;
4054
4054
  /**
4055
4055
  * <p>The value you provided for the <code>MaxItems</code> request parameter.</p>
4056
4056
  * @public
@@ -4075,7 +4075,7 @@ export interface StreamingDistributionList {
4075
4075
  * each distribution that was created by the current Amazon Web Services account.</p>
4076
4076
  * @public
4077
4077
  */
4078
- Items?: StreamingDistributionSummary[];
4078
+ Items?: StreamingDistributionSummary[] | undefined;
4079
4079
  }
4080
4080
  /**
4081
4081
  * <p>The returned result of the corresponding request.</p>
@@ -4086,7 +4086,7 @@ export interface ListStreamingDistributionsResult {
4086
4086
  * <p>The <code>StreamingDistributionList</code> type.</p>
4087
4087
  * @public
4088
4088
  */
4089
- StreamingDistributionList?: StreamingDistributionList;
4089
+ StreamingDistributionList?: StreamingDistributionList | undefined;
4090
4090
  }
4091
4091
  /**
4092
4092
  * <p>The request to list tags for a CloudFront resource.</p>
@@ -4134,7 +4134,7 @@ export interface PublishFunctionResult {
4134
4134
  * <p>Contains configuration information and metadata about a CloudFront function.</p>
4135
4135
  * @public
4136
4136
  */
4137
- FunctionSummary?: FunctionSummary;
4137
+ FunctionSummary?: FunctionSummary | undefined;
4138
4138
  }
4139
4139
  /**
4140
4140
  * <p>The request to add tags to a CloudFront resource.</p>
@@ -4159,7 +4159,7 @@ export interface TagResourceRequest {
4159
4159
  export declare class TestFunctionFailed extends __BaseException {
4160
4160
  readonly name: "TestFunctionFailed";
4161
4161
  readonly $fault: "server";
4162
- Message?: string;
4162
+ Message?: string | undefined;
4163
4163
  /**
4164
4164
  * @internal
4165
4165
  */
@@ -4185,7 +4185,7 @@ export interface TestFunctionRequest {
4185
4185
  * <code>LIVE</code>.</p>
4186
4186
  * @public
4187
4187
  */
4188
- Stage?: FunctionStage;
4188
+ Stage?: FunctionStage | undefined;
4189
4189
  /**
4190
4190
  * <p>The event object to test the function with. For more information about the structure
4191
4191
  * of the event object, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/managing-functions.html#test-function">Testing functions</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
@@ -4203,32 +4203,32 @@ export interface TestResult {
4203
4203
  * tested.</p>
4204
4204
  * @public
4205
4205
  */
4206
- FunctionSummary?: FunctionSummary;
4206
+ FunctionSummary?: FunctionSummary | undefined;
4207
4207
  /**
4208
4208
  * <p>The amount of time that the function took to run as a percentage of the maximum
4209
4209
  * allowed time. For example, a compute utilization of 35 means that the function completed
4210
4210
  * in 35% of the maximum allowed time.</p>
4211
4211
  * @public
4212
4212
  */
4213
- ComputeUtilization?: string;
4213
+ ComputeUtilization?: string | undefined;
4214
4214
  /**
4215
4215
  * <p>Contains the log lines that the function wrote (if any) when running the test.</p>
4216
4216
  * @public
4217
4217
  */
4218
- FunctionExecutionLogs?: string[];
4218
+ FunctionExecutionLogs?: string[] | undefined;
4219
4219
  /**
4220
4220
  * <p>If the result of testing the function was an error, this field contains the error
4221
4221
  * message.</p>
4222
4222
  * @public
4223
4223
  */
4224
- FunctionErrorMessage?: string;
4224
+ FunctionErrorMessage?: string | undefined;
4225
4225
  /**
4226
4226
  * <p>The event object returned by the function. For more information about the structure of
4227
4227
  * the event object, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/functions-event-structure.html">Event
4228
4228
  * object structure</a> in the <i>Amazon CloudFront Developer Guide</i>.</p>
4229
4229
  * @public
4230
4230
  */
4231
- FunctionOutput?: string;
4231
+ FunctionOutput?: string | undefined;
4232
4232
  }
4233
4233
  /**
4234
4234
  * @public
@@ -4239,7 +4239,7 @@ export interface TestFunctionResult {
4239
4239
  * object.</p>
4240
4240
  * @public
4241
4241
  */
4242
- TestResult?: TestResult;
4242
+ TestResult?: TestResult | undefined;
4243
4243
  }
4244
4244
  /**
4245
4245
  * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
@@ -4250,7 +4250,7 @@ export interface TagKeys {
4250
4250
  * <p>A complex type that contains <code>Tag</code> key elements.</p>
4251
4251
  * @public
4252
4252
  */
4253
- Items?: string[];
4253
+ Items?: string[] | undefined;
4254
4254
  }
4255
4255
  /**
4256
4256
  * <p>The request to remove tags from a CloudFront resource.</p>
@@ -4290,7 +4290,7 @@ export interface UpdateCachePolicyRequest {
4290
4290
  * <code>GetCachePolicyConfig</code>.</p>
4291
4291
  * @public
4292
4292
  */
4293
- IfMatch?: string;
4293
+ IfMatch?: string | undefined;
4294
4294
  }
4295
4295
  /**
4296
4296
  * @public
@@ -4300,12 +4300,12 @@ export interface UpdateCachePolicyResult {
4300
4300
  * <p>A cache policy.</p>
4301
4301
  * @public
4302
4302
  */
4303
- CachePolicy?: CachePolicy;
4303
+ CachePolicy?: CachePolicy | undefined;
4304
4304
  /**
4305
4305
  * <p>The current version of the cache policy.</p>
4306
4306
  * @public
4307
4307
  */
4308
- ETag?: string;
4308
+ ETag?: string | undefined;
4309
4309
  }
4310
4310
  /**
4311
4311
  * <p>The request to update an origin access identity.</p>
@@ -4327,7 +4327,7 @@ export interface UpdateCloudFrontOriginAccessIdentityRequest {
4327
4327
  * identity's configuration. For example: <code>E2QWRUHAPOMQZL</code>.</p>
4328
4328
  * @public
4329
4329
  */
4330
- IfMatch?: string;
4330
+ IfMatch?: string | undefined;
4331
4331
  }
4332
4332
  /**
4333
4333
  * <p>The returned result of the corresponding request.</p>
@@ -4338,13 +4338,13 @@ export interface UpdateCloudFrontOriginAccessIdentityResult {
4338
4338
  * <p>The origin access identity's information.</p>
4339
4339
  * @public
4340
4340
  */
4341
- CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity;
4341
+ CloudFrontOriginAccessIdentity?: CloudFrontOriginAccessIdentity | undefined;
4342
4342
  /**
4343
4343
  * <p>The current version of the configuration. For example:
4344
4344
  * <code>E2QWRUHAPOMQZL</code>.</p>
4345
4345
  * @public
4346
4346
  */
4347
- ETag?: string;
4347
+ ETag?: string | undefined;
4348
4348
  }
4349
4349
  /**
4350
4350
  * @public
@@ -4365,7 +4365,7 @@ export interface UpdateContinuousDeploymentPolicyRequest {
4365
4365
  * you are updating.</p>
4366
4366
  * @public
4367
4367
  */
4368
- IfMatch?: string;
4368
+ IfMatch?: string | undefined;
4369
4369
  }
4370
4370
  /**
4371
4371
  * @public
@@ -4375,13 +4375,13 @@ export interface UpdateContinuousDeploymentPolicyResult {
4375
4375
  * <p>A continuous deployment policy.</p>
4376
4376
  * @public
4377
4377
  */
4378
- ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy;
4378
+ ContinuousDeploymentPolicy?: ContinuousDeploymentPolicy | undefined;
4379
4379
  /**
4380
4380
  * <p>The version identifier for the current version of the continuous deployment
4381
4381
  * policy.</p>
4382
4382
  * @public
4383
4383
  */
4384
- ETag?: string;
4384
+ ETag?: string | undefined;
4385
4385
  }
4386
4386
  /**
4387
4387
  * <p>The request to update a distribution.</p>
@@ -4403,7 +4403,7 @@ export interface UpdateDistributionRequest {
4403
4403
  * distribution's configuration. For example: <code>E2QWRUHAPOMQZL</code>.</p>
4404
4404
  * @public
4405
4405
  */
4406
- IfMatch?: string;
4406
+ IfMatch?: string | undefined;
4407
4407
  }
4408
4408
  /**
4409
4409
  * <p>The returned result of the corresponding request.</p>
@@ -4414,13 +4414,13 @@ export interface UpdateDistributionResult {
4414
4414
  * <p>The distribution's information.</p>
4415
4415
  * @public
4416
4416
  */
4417
- Distribution?: Distribution;
4417
+ Distribution?: Distribution | undefined;
4418
4418
  /**
4419
4419
  * <p>The current version of the configuration. For example:
4420
4420
  * <code>E2QWRUHAPOMQZL</code>.</p>
4421
4421
  * @public
4422
4422
  */
4423
- ETag?: string;
4423
+ ETag?: string | undefined;
4424
4424
  }
4425
4425
  /**
4426
4426
  * @public
@@ -4436,7 +4436,7 @@ export interface UpdateDistributionWithStagingConfigRequest {
4436
4436
  * <p>The identifier of the staging distribution whose configuration you are copying to the primary distribution.</p>
4437
4437
  * @public
4438
4438
  */
4439
- StagingDistributionId?: string;
4439
+ StagingDistributionId?: string | undefined;
4440
4440
  /**
4441
4441
  * <p>The current versions (<code>ETag</code> values) of both primary and staging distributions.
4442
4442
  * Provide these in the following format:</p>
@@ -4445,7 +4445,7 @@ export interface UpdateDistributionWithStagingConfigRequest {
4445
4445
  * </p>
4446
4446
  * @public
4447
4447
  */
4448
- IfMatch?: string;
4448
+ IfMatch?: string | undefined;
4449
4449
  }
4450
4450
  /**
4451
4451
  * @public
@@ -4456,12 +4456,12 @@ export interface UpdateDistributionWithStagingConfigResult {
4456
4456
  * about how to track and manage content delivery.</p>
4457
4457
  * @public
4458
4458
  */
4459
- Distribution?: Distribution;
4459
+ Distribution?: Distribution | undefined;
4460
4460
  /**
4461
4461
  * <p>The current version of the primary distribution (after it's updated).</p>
4462
4462
  * @public
4463
4463
  */
4464
- ETag?: string;
4464
+ ETag?: string | undefined;
4465
4465
  }
4466
4466
  /**
4467
4467
  * @public
@@ -4482,7 +4482,7 @@ export interface UpdateFieldLevelEncryptionConfigRequest {
4482
4482
  * configuration identity to update. For example: <code>E2QWRUHAPOMQZL</code>.</p>
4483
4483
  * @public
4484
4484
  */
4485
- IfMatch?: string;
4485
+ IfMatch?: string | undefined;
4486
4486
  }
4487
4487
  /**
4488
4488
  * @public
@@ -4492,13 +4492,13 @@ export interface UpdateFieldLevelEncryptionConfigResult {
4492
4492
  * <p>Return the results of updating the configuration.</p>
4493
4493
  * @public
4494
4494
  */
4495
- FieldLevelEncryption?: FieldLevelEncryption;
4495
+ FieldLevelEncryption?: FieldLevelEncryption | undefined;
4496
4496
  /**
4497
4497
  * <p>The value of the <code>ETag</code> header that you received when updating the
4498
4498
  * configuration. For example: <code>E2QWRUHAPOMQZL</code>.</p>
4499
4499
  * @public
4500
4500
  */
4501
- ETag?: string;
4501
+ ETag?: string | undefined;
4502
4502
  }
4503
4503
  /**
4504
4504
  * @public
@@ -4519,7 +4519,7 @@ export interface UpdateFieldLevelEncryptionProfileRequest {
4519
4519
  * profile identity to update. For example: <code>E2QWRUHAPOMQZL</code>.</p>
4520
4520
  * @public
4521
4521
  */
4522
- IfMatch?: string;
4522
+ IfMatch?: string | undefined;
4523
4523
  }
4524
4524
  /**
4525
4525
  * @public
@@ -4529,12 +4529,12 @@ export interface UpdateFieldLevelEncryptionProfileResult {
4529
4529
  * <p>Return the results of updating the profile.</p>
4530
4530
  * @public
4531
4531
  */
4532
- FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile;
4532
+ FieldLevelEncryptionProfile?: FieldLevelEncryptionProfile | undefined;
4533
4533
  /**
4534
4534
  * <p>The result of the field-level encryption profile request.</p>
4535
4535
  * @public
4536
4536
  */
4537
- ETag?: string;
4537
+ ETag?: string | undefined;
4538
4538
  }
4539
4539
  /**
4540
4540
  * @public
@@ -4572,12 +4572,12 @@ export interface UpdateFunctionResult {
4572
4572
  * <p>Contains configuration information and metadata about a CloudFront function.</p>
4573
4573
  * @public
4574
4574
  */
4575
- FunctionSummary?: FunctionSummary;
4575
+ FunctionSummary?: FunctionSummary | undefined;
4576
4576
  /**
4577
4577
  * <p>The version identifier for the current version of the CloudFront function.</p>
4578
4578
  * @public
4579
4579
  */
4580
- ETag?: string;
4580
+ ETag?: string | undefined;
4581
4581
  }
4582
4582
  /**
4583
4583
  * @public
@@ -4598,7 +4598,7 @@ export interface UpdateKeyGroupRequest {
4598
4598
  * <code>ETag</code> value.</p>
4599
4599
  * @public
4600
4600
  */
4601
- IfMatch?: string;
4601
+ IfMatch?: string | undefined;
4602
4602
  }
4603
4603
  /**
4604
4604
  * @public
@@ -4608,12 +4608,12 @@ export interface UpdateKeyGroupResult {
4608
4608
  * <p>The key group that was just updated.</p>
4609
4609
  * @public
4610
4610
  */
4611
- KeyGroup?: KeyGroup;
4611
+ KeyGroup?: KeyGroup | undefined;
4612
4612
  /**
4613
4613
  * <p>The identifier for this version of the key group.</p>
4614
4614
  * @public
4615
4615
  */
4616
- ETag?: string;
4616
+ ETag?: string | undefined;
4617
4617
  }
4618
4618
  /**
4619
4619
  * @public
@@ -4643,12 +4643,12 @@ export interface UpdateKeyValueStoreResult {
4643
4643
  * <p>The resulting key value store to update.</p>
4644
4644
  * @public
4645
4645
  */
4646
- KeyValueStore?: KeyValueStore;
4646
+ KeyValueStore?: KeyValueStore | undefined;
4647
4647
  /**
4648
4648
  * <p>The <code>ETag</code> of the resulting key value store.</p>
4649
4649
  * @public
4650
4650
  */
4651
- ETag?: string;
4651
+ ETag?: string | undefined;
4652
4652
  }
4653
4653
  /**
4654
4654
  * @public
@@ -4669,7 +4669,7 @@ export interface UpdateOriginAccessControlRequest {
4669
4669
  * are updating.</p>
4670
4670
  * @public
4671
4671
  */
4672
- IfMatch?: string;
4672
+ IfMatch?: string | undefined;
4673
4673
  }
4674
4674
  /**
4675
4675
  * @public
@@ -4679,12 +4679,12 @@ export interface UpdateOriginAccessControlResult {
4679
4679
  * <p>The origin access control after it has been updated.</p>
4680
4680
  * @public
4681
4681
  */
4682
- OriginAccessControl?: OriginAccessControl;
4682
+ OriginAccessControl?: OriginAccessControl | undefined;
4683
4683
  /**
4684
4684
  * <p>The new version of the origin access control after it has been updated.</p>
4685
4685
  * @public
4686
4686
  */
4687
- ETag?: string;
4687
+ ETag?: string | undefined;
4688
4688
  }
4689
4689
  /**
4690
4690
  * @public
@@ -4708,7 +4708,7 @@ export interface UpdateOriginRequestPolicyRequest {
4708
4708
  * <code>GetOriginRequestPolicyConfig</code>.</p>
4709
4709
  * @public
4710
4710
  */
4711
- IfMatch?: string;
4711
+ IfMatch?: string | undefined;
4712
4712
  }
4713
4713
  /**
4714
4714
  * @public
@@ -4718,12 +4718,12 @@ export interface UpdateOriginRequestPolicyResult {
4718
4718
  * <p>An origin request policy.</p>
4719
4719
  * @public
4720
4720
  */
4721
- OriginRequestPolicy?: OriginRequestPolicy;
4721
+ OriginRequestPolicy?: OriginRequestPolicy | undefined;
4722
4722
  /**
4723
4723
  * <p>The current version of the origin request policy.</p>
4724
4724
  * @public
4725
4725
  */
4726
- ETag?: string;
4726
+ ETag?: string | undefined;
4727
4727
  }
4728
4728
  /**
4729
4729
  * @public
@@ -4744,7 +4744,7 @@ export interface UpdatePublicKeyRequest {
4744
4744
  * key to update. For example: <code>E2QWRUHAPOMQZL</code>.</p>
4745
4745
  * @public
4746
4746
  */
4747
- IfMatch?: string;
4747
+ IfMatch?: string | undefined;
4748
4748
  }
4749
4749
  /**
4750
4750
  * @public
@@ -4754,12 +4754,12 @@ export interface UpdatePublicKeyResult {
4754
4754
  * <p>The public key.</p>
4755
4755
  * @public
4756
4756
  */
4757
- PublicKey?: PublicKey;
4757
+ PublicKey?: PublicKey | undefined;
4758
4758
  /**
4759
4759
  * <p>The identifier of the current version of the public key.</p>
4760
4760
  * @public
4761
4761
  */
4762
- ETag?: string;
4762
+ ETag?: string | undefined;
4763
4763
  }
4764
4764
  /**
4765
4765
  * @public
@@ -4770,31 +4770,31 @@ export interface UpdateRealtimeLogConfigRequest {
4770
4770
  * log data.</p>
4771
4771
  * @public
4772
4772
  */
4773
- EndPoints?: EndPoint[];
4773
+ EndPoints?: EndPoint[] | undefined;
4774
4774
  /**
4775
4775
  * <p>A list of fields to include in each real-time log record.</p>
4776
4776
  * <p>For more information about fields, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html#understand-real-time-log-config-fields">Real-time log configuration fields</a> in the
4777
4777
  * <i>Amazon CloudFront Developer Guide</i>.</p>
4778
4778
  * @public
4779
4779
  */
4780
- Fields?: string[];
4780
+ Fields?: string[] | undefined;
4781
4781
  /**
4782
4782
  * <p>The name for this real-time log configuration.</p>
4783
4783
  * @public
4784
4784
  */
4785
- Name?: string;
4785
+ Name?: string | undefined;
4786
4786
  /**
4787
4787
  * <p>The Amazon Resource Name (ARN) for this real-time log configuration.</p>
4788
4788
  * @public
4789
4789
  */
4790
- ARN?: string;
4790
+ ARN?: string | undefined;
4791
4791
  /**
4792
4792
  * <p>The sampling rate for this real-time log configuration. The sampling rate determines
4793
4793
  * the percentage of viewer requests that are represented in the real-time log data. You
4794
4794
  * must provide an integer between 1 and 100, inclusive.</p>
4795
4795
  * @public
4796
4796
  */
4797
- SamplingRate?: number;
4797
+ SamplingRate?: number | undefined;
4798
4798
  }
4799
4799
  /**
4800
4800
  * @public
@@ -4804,7 +4804,7 @@ export interface UpdateRealtimeLogConfigResult {
4804
4804
  * <p>A real-time log configuration.</p>
4805
4805
  * @public
4806
4806
  */
4807
- RealtimeLogConfig?: RealtimeLogConfig;
4807
+ RealtimeLogConfig?: RealtimeLogConfig | undefined;
4808
4808
  }
4809
4809
  /**
4810
4810
  * @public
@@ -4826,7 +4826,7 @@ export interface UpdateResponseHeadersPolicyRequest {
4826
4826
  * to <code>GetResponseHeadersPolicyConfig</code>.</p>
4827
4827
  * @public
4828
4828
  */
4829
- IfMatch?: string;
4829
+ IfMatch?: string | undefined;
4830
4830
  }
4831
4831
  /**
4832
4832
  * @public
@@ -4836,12 +4836,12 @@ export interface UpdateResponseHeadersPolicyResult {
4836
4836
  * <p>A response headers policy.</p>
4837
4837
  * @public
4838
4838
  */
4839
- ResponseHeadersPolicy?: ResponseHeadersPolicy;
4839
+ ResponseHeadersPolicy?: ResponseHeadersPolicy | undefined;
4840
4840
  /**
4841
4841
  * <p>The current version of the response headers policy.</p>
4842
4842
  * @public
4843
4843
  */
4844
- ETag?: string;
4844
+ ETag?: string | undefined;
4845
4845
  }
4846
4846
  /**
4847
4847
  * <p>The request to update a streaming distribution.</p>
@@ -4863,7 +4863,7 @@ export interface UpdateStreamingDistributionRequest {
4863
4863
  * streaming distribution's configuration. For example: <code>E2QWRUHAPOMQZL</code>.</p>
4864
4864
  * @public
4865
4865
  */
4866
- IfMatch?: string;
4866
+ IfMatch?: string | undefined;
4867
4867
  }
4868
4868
  /**
4869
4869
  * <p>The returned result of the corresponding request.</p>
@@ -4874,13 +4874,13 @@ export interface UpdateStreamingDistributionResult {
4874
4874
  * <p>The streaming distribution's information.</p>
4875
4875
  * @public
4876
4876
  */
4877
- StreamingDistribution?: StreamingDistribution;
4877
+ StreamingDistribution?: StreamingDistribution | undefined;
4878
4878
  /**
4879
4879
  * <p>The current version of the configuration. For example:
4880
4880
  * <code>E2QWRUHAPOMQZL</code>.</p>
4881
4881
  * @public
4882
4882
  */
4883
- ETag?: string;
4883
+ ETag?: string | undefined;
4884
4884
  }
4885
4885
  /**
4886
4886
  * @internal