@aws-sdk/client-cloudfront 3.797.0 → 3.799.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.
Files changed (204) hide show
  1. package/README.md +200 -0
  2. package/dist-cjs/index.js +2696 -655
  3. package/dist-cjs/runtimeConfig.js +1 -0
  4. package/dist-es/CloudFront.js +50 -0
  5. package/dist-es/commands/AssociateDistributionTenantWebACLCommand.js +22 -0
  6. package/dist-es/commands/AssociateDistributionWebACLCommand.js +22 -0
  7. package/dist-es/commands/CreateConnectionGroupCommand.js +22 -0
  8. package/dist-es/commands/CreateDistributionTenantCommand.js +22 -0
  9. package/dist-es/commands/CreateInvalidationForDistributionTenantCommand.js +22 -0
  10. package/dist-es/commands/DeleteConnectionGroupCommand.js +22 -0
  11. package/dist-es/commands/DeleteDistributionTenantCommand.js +22 -0
  12. package/dist-es/commands/DisassociateDistributionTenantWebACLCommand.js +22 -0
  13. package/dist-es/commands/DisassociateDistributionWebACLCommand.js +22 -0
  14. package/dist-es/commands/GetConnectionGroupByRoutingEndpointCommand.js +22 -0
  15. package/dist-es/commands/GetConnectionGroupCommand.js +22 -0
  16. package/dist-es/commands/GetDistributionTenantByDomainCommand.js +22 -0
  17. package/dist-es/commands/GetDistributionTenantCommand.js +22 -0
  18. package/dist-es/commands/GetInvalidationForDistributionTenantCommand.js +22 -0
  19. package/dist-es/commands/GetManagedCertificateDetailsCommand.js +22 -0
  20. package/dist-es/commands/ListConnectionGroupsCommand.js +22 -0
  21. package/dist-es/commands/ListDistributionTenantsByCustomizationCommand.js +22 -0
  22. package/dist-es/commands/ListDistributionTenantsCommand.js +22 -0
  23. package/dist-es/commands/ListDistributionsByConnectionModeCommand.js +23 -0
  24. package/dist-es/commands/ListDomainConflictsCommand.js +22 -0
  25. package/dist-es/commands/ListInvalidationsForDistributionTenantCommand.js +22 -0
  26. package/dist-es/commands/TestFunctionCommand.js +1 -1
  27. package/dist-es/commands/UpdateConnectionGroupCommand.js +22 -0
  28. package/dist-es/commands/UpdateDistributionCommand.js +1 -1
  29. package/dist-es/commands/UpdateDistributionTenantCommand.js +22 -0
  30. package/dist-es/commands/UpdateDistributionWithStagingConfigCommand.js +1 -1
  31. package/dist-es/commands/UpdateDomainAssociationCommand.js +22 -0
  32. package/dist-es/commands/UpdateFunctionCommand.js +1 -1
  33. package/dist-es/commands/VerifyDnsConfigurationCommand.js +22 -0
  34. package/dist-es/commands/index.js +26 -1
  35. package/dist-es/models/index.js +1 -0
  36. package/dist-es/models/models_0.js +77 -201
  37. package/dist-es/models/models_1.js +203 -58
  38. package/dist-es/models/models_2.js +52 -0
  39. package/dist-es/pagination/ListConnectionGroupsPaginator.js +4 -0
  40. package/dist-es/pagination/ListDistributionTenantsByCustomizationPaginator.js +4 -0
  41. package/dist-es/pagination/ListDistributionTenantsPaginator.js +4 -0
  42. package/dist-es/pagination/ListDistributionsByConnectionModePaginator.js +4 -0
  43. package/dist-es/pagination/ListDomainConflictsPaginator.js +4 -0
  44. package/dist-es/pagination/ListInvalidationsForDistributionTenantPaginator.js +4 -0
  45. package/dist-es/pagination/index.js +6 -0
  46. package/dist-es/protocols/Aws_restXml.js +1907 -460
  47. package/dist-es/runtimeConfig.js +2 -1
  48. package/dist-es/waiters/index.js +1 -0
  49. package/dist-es/waiters/waitForInvalidationForDistributionTenantCompleted.js +31 -0
  50. package/dist-types/CloudFront.d.ts +178 -0
  51. package/dist-types/CloudFrontClient.d.ts +27 -2
  52. package/dist-types/commands/AssociateDistributionTenantWebACLCommand.d.ts +92 -0
  53. package/dist-types/commands/AssociateDistributionWebACLCommand.d.ts +92 -0
  54. package/dist-types/commands/CopyDistributionCommand.d.ts +16 -1
  55. package/dist-types/commands/CreateConnectionGroupCommand.d.ts +123 -0
  56. package/dist-types/commands/CreateDistributionCommand.d.ts +35 -2
  57. package/dist-types/commands/CreateDistributionTenantCommand.d.ts +185 -0
  58. package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +32 -2
  59. package/dist-types/commands/CreateInvalidationForDistributionTenantCommand.d.ts +119 -0
  60. package/dist-types/commands/CreateOriginRequestPolicyCommand.d.ts +1 -1
  61. package/dist-types/commands/CreatePublicKeyCommand.d.ts +1 -1
  62. package/dist-types/commands/CreateRealtimeLogConfigCommand.d.ts +1 -1
  63. package/dist-types/commands/CreateStreamingDistributionCommand.d.ts +2 -2
  64. package/dist-types/commands/CreateStreamingDistributionWithTagsCommand.d.ts +2 -2
  65. package/dist-types/commands/DeleteConnectionGroupCommand.d.ts +90 -0
  66. package/dist-types/commands/DeleteDistributionCommand.d.ts +3 -0
  67. package/dist-types/commands/DeleteDistributionTenantCommand.d.ts +88 -0
  68. package/dist-types/commands/DisassociateDistributionTenantWebACLCommand.d.ts +90 -0
  69. package/dist-types/commands/DisassociateDistributionWebACLCommand.d.ts +90 -0
  70. package/dist-types/commands/GetConnectionGroupByRoutingEndpointCommand.d.ts +99 -0
  71. package/dist-types/commands/GetConnectionGroupCommand.d.ts +99 -0
  72. package/dist-types/commands/GetDistributionCommand.d.ts +16 -1
  73. package/dist-types/commands/GetDistributionConfigCommand.d.ts +16 -1
  74. package/dist-types/commands/GetDistributionTenantByDomainCommand.d.ts +124 -0
  75. package/dist-types/commands/GetDistributionTenantCommand.d.ts +124 -0
  76. package/dist-types/commands/GetInvalidationForDistributionTenantCommand.d.ts +95 -0
  77. package/dist-types/commands/GetManagedCertificateDetailsCommand.d.ts +89 -0
  78. package/dist-types/commands/GetStreamingDistributionCommand.d.ts +1 -1
  79. package/dist-types/commands/GetStreamingDistributionConfigCommand.d.ts +1 -1
  80. package/dist-types/commands/ListConnectionGroupsCommand.d.ts +100 -0
  81. package/dist-types/commands/ListDistributionTenantsByCustomizationCommand.d.ts +120 -0
  82. package/dist-types/commands/ListDistributionTenantsCommand.d.ts +121 -0
  83. package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +3 -1
  84. package/dist-types/commands/ListDistributionsByConnectionModeCommand.d.ts +392 -0
  85. package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +3 -1
  86. package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +3 -1
  87. package/dist-types/commands/ListDistributionsCommand.d.ts +3 -1
  88. package/dist-types/commands/ListDomainConflictsCommand.d.ts +96 -0
  89. package/dist-types/commands/ListInvalidationsForDistributionTenantCommand.d.ts +96 -0
  90. package/dist-types/commands/ListStreamingDistributionsCommand.d.ts +3 -2
  91. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  92. package/dist-types/commands/ListVpcOriginsCommand.d.ts +1 -1
  93. package/dist-types/commands/PublishFunctionCommand.d.ts +1 -1
  94. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  95. package/dist-types/commands/TestFunctionCommand.d.ts +1 -1
  96. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  97. package/dist-types/commands/UpdateCachePolicyCommand.d.ts +1 -1
  98. package/dist-types/commands/UpdateCloudFrontOriginAccessIdentityCommand.d.ts +1 -1
  99. package/dist-types/commands/UpdateConnectionGroupCommand.d.ts +123 -0
  100. package/dist-types/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +1 -1
  101. package/dist-types/commands/UpdateDistributionCommand.d.ts +33 -3
  102. package/dist-types/commands/UpdateDistributionTenantCommand.d.ts +182 -0
  103. package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +17 -2
  104. package/dist-types/commands/UpdateDomainAssociationCommand.d.ts +98 -0
  105. package/dist-types/commands/UpdateFieldLevelEncryptionConfigCommand.d.ts +1 -1
  106. package/dist-types/commands/UpdateFieldLevelEncryptionProfileCommand.d.ts +1 -1
  107. package/dist-types/commands/UpdateFunctionCommand.d.ts +1 -1
  108. package/dist-types/commands/UpdateKeyGroupCommand.d.ts +1 -1
  109. package/dist-types/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
  110. package/dist-types/commands/UpdateOriginAccessControlCommand.d.ts +1 -1
  111. package/dist-types/commands/UpdateOriginRequestPolicyCommand.d.ts +1 -1
  112. package/dist-types/commands/UpdatePublicKeyCommand.d.ts +1 -1
  113. package/dist-types/commands/UpdateRealtimeLogConfigCommand.d.ts +1 -1
  114. package/dist-types/commands/UpdateResponseHeadersPolicyCommand.d.ts +1 -1
  115. package/dist-types/commands/UpdateStreamingDistributionCommand.d.ts +3 -3
  116. package/dist-types/commands/UpdateVpcOriginCommand.d.ts +1 -1
  117. package/dist-types/commands/VerifyDnsConfigurationCommand.d.ts +88 -0
  118. package/dist-types/commands/index.d.ts +26 -1
  119. package/dist-types/models/index.d.ts +1 -0
  120. package/dist-types/models/models_0.d.ts +830 -869
  121. package/dist-types/models/models_1.d.ts +2571 -2123
  122. package/dist-types/models/models_2.d.ts +1244 -0
  123. package/dist-types/pagination/ListConnectionGroupsPaginator.d.ts +7 -0
  124. package/dist-types/pagination/ListDistributionTenantsByCustomizationPaginator.d.ts +7 -0
  125. package/dist-types/pagination/ListDistributionTenantsPaginator.d.ts +7 -0
  126. package/dist-types/pagination/ListDistributionsByConnectionModePaginator.d.ts +7 -0
  127. package/dist-types/pagination/ListDomainConflictsPaginator.d.ts +7 -0
  128. package/dist-types/pagination/ListInvalidationsForDistributionTenantPaginator.d.ts +7 -0
  129. package/dist-types/pagination/index.d.ts +6 -0
  130. package/dist-types/protocols/Aws_restXml.d.ts +225 -0
  131. package/dist-types/runtimeConfig.d.ts +1 -1
  132. package/dist-types/ts3.4/CloudFront.d.ts +476 -0
  133. package/dist-types/ts3.4/CloudFrontClient.d.ts +152 -2
  134. package/dist-types/ts3.4/commands/AssociateDistributionTenantWebACLCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/AssociateDistributionWebACLCommand.d.ts +51 -0
  136. package/dist-types/ts3.4/commands/CreateConnectionGroupCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/CreateDistributionTenantCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/CreateInvalidationForDistributionTenantCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/CreateOriginRequestPolicyCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/CreatePublicKeyCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/CreateRealtimeLogConfigCommand.d.ts +1 -1
  142. package/dist-types/ts3.4/commands/DeleteConnectionGroupCommand.d.ts +46 -0
  143. package/dist-types/ts3.4/commands/DeleteDistributionTenantCommand.d.ts +47 -0
  144. package/dist-types/ts3.4/commands/DisassociateDistributionTenantWebACLCommand.d.ts +51 -0
  145. package/dist-types/ts3.4/commands/DisassociateDistributionWebACLCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/GetConnectionGroupByRoutingEndpointCommand.d.ts +51 -0
  147. package/dist-types/ts3.4/commands/GetConnectionGroupCommand.d.ts +51 -0
  148. package/dist-types/ts3.4/commands/GetDistributionTenantByDomainCommand.d.ts +51 -0
  149. package/dist-types/ts3.4/commands/GetDistributionTenantCommand.d.ts +51 -0
  150. package/dist-types/ts3.4/commands/GetInvalidationForDistributionTenantCommand.d.ts +51 -0
  151. package/dist-types/ts3.4/commands/GetManagedCertificateDetailsCommand.d.ts +51 -0
  152. package/dist-types/ts3.4/commands/ListConnectionGroupsCommand.d.ts +51 -0
  153. package/dist-types/ts3.4/commands/ListDistributionTenantsByCustomizationCommand.d.ts +51 -0
  154. package/dist-types/ts3.4/commands/ListDistributionTenantsCommand.d.ts +51 -0
  155. package/dist-types/ts3.4/commands/ListDistributionsByConnectionModeCommand.d.ts +51 -0
  156. package/dist-types/ts3.4/commands/ListDomainConflictsCommand.d.ts +51 -0
  157. package/dist-types/ts3.4/commands/ListInvalidationsForDistributionTenantCommand.d.ts +51 -0
  158. package/dist-types/ts3.4/commands/ListStreamingDistributionsCommand.d.ts +2 -4
  159. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  160. package/dist-types/ts3.4/commands/ListVpcOriginsCommand.d.ts +1 -1
  161. package/dist-types/ts3.4/commands/PublishFunctionCommand.d.ts +1 -1
  162. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  163. package/dist-types/ts3.4/commands/TestFunctionCommand.d.ts +1 -1
  164. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  165. package/dist-types/ts3.4/commands/UpdateCachePolicyCommand.d.ts +1 -1
  166. package/dist-types/ts3.4/commands/UpdateCloudFrontOriginAccessIdentityCommand.d.ts +1 -1
  167. package/dist-types/ts3.4/commands/UpdateConnectionGroupCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +1 -1
  169. package/dist-types/ts3.4/commands/UpdateDistributionCommand.d.ts +1 -1
  170. package/dist-types/ts3.4/commands/UpdateDistributionTenantCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/UpdateDistributionWithStagingConfigCommand.d.ts +1 -1
  172. package/dist-types/ts3.4/commands/UpdateDomainAssociationCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/UpdateFieldLevelEncryptionConfigCommand.d.ts +1 -1
  174. package/dist-types/ts3.4/commands/UpdateFieldLevelEncryptionProfileCommand.d.ts +1 -1
  175. package/dist-types/ts3.4/commands/UpdateFunctionCommand.d.ts +1 -1
  176. package/dist-types/ts3.4/commands/UpdateKeyGroupCommand.d.ts +1 -1
  177. package/dist-types/ts3.4/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
  178. package/dist-types/ts3.4/commands/UpdateOriginAccessControlCommand.d.ts +1 -1
  179. package/dist-types/ts3.4/commands/UpdateOriginRequestPolicyCommand.d.ts +1 -1
  180. package/dist-types/ts3.4/commands/UpdatePublicKeyCommand.d.ts +1 -1
  181. package/dist-types/ts3.4/commands/UpdateRealtimeLogConfigCommand.d.ts +1 -1
  182. package/dist-types/ts3.4/commands/UpdateResponseHeadersPolicyCommand.d.ts +1 -1
  183. package/dist-types/ts3.4/commands/UpdateStreamingDistributionCommand.d.ts +1 -1
  184. package/dist-types/ts3.4/commands/UpdateVpcOriginCommand.d.ts +1 -1
  185. package/dist-types/ts3.4/commands/VerifyDnsConfigurationCommand.d.ts +51 -0
  186. package/dist-types/ts3.4/commands/index.d.ts +26 -1
  187. package/dist-types/ts3.4/models/index.d.ts +1 -0
  188. package/dist-types/ts3.4/models/models_0.d.ts +190 -214
  189. package/dist-types/ts3.4/models/models_1.d.ts +413 -275
  190. package/dist-types/ts3.4/models/models_2.d.ts +363 -0
  191. package/dist-types/ts3.4/pagination/ListConnectionGroupsPaginator.d.ts +11 -0
  192. package/dist-types/ts3.4/pagination/ListDistributionTenantsByCustomizationPaginator.d.ts +11 -0
  193. package/dist-types/ts3.4/pagination/ListDistributionTenantsPaginator.d.ts +11 -0
  194. package/dist-types/ts3.4/pagination/ListDistributionsByConnectionModePaginator.d.ts +11 -0
  195. package/dist-types/ts3.4/pagination/ListDomainConflictsPaginator.d.ts +11 -0
  196. package/dist-types/ts3.4/pagination/ListInvalidationsForDistributionTenantPaginator.d.ts +11 -0
  197. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  198. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +300 -0
  199. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -4
  200. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  201. package/dist-types/ts3.4/waiters/waitForInvalidationForDistributionTenantCompleted.d.ts +11 -0
  202. package/dist-types/waiters/index.d.ts +1 -0
  203. package/dist-types/waiters/waitForInvalidationForDistributionTenantCompleted.d.ts +14 -0
  204. package/package.json +11 -11
@@ -505,6 +505,126 @@ export declare class TooManyDistributionCNAMEs extends __BaseException {
505
505
  */
506
506
  constructor(opts: __ExceptionOptionType<TooManyDistributionCNAMEs, __BaseException>);
507
507
  }
508
+ /**
509
+ * @public
510
+ */
511
+ export interface AssociateDistributionTenantWebACLRequest {
512
+ /**
513
+ * <p>The ID of the distribution tenant.</p>
514
+ * @public
515
+ */
516
+ Id: string | undefined;
517
+ /**
518
+ * <p>The Amazon Resource Name (ARN) of the WAF web ACL to associate.</p>
519
+ * @public
520
+ */
521
+ WebACLArn: string | undefined;
522
+ /**
523
+ * <p>The current <code>ETag</code> of the distribution tenant. This value is returned in the response of the <code>GetDistributionTenant</code> API operation.</p>
524
+ * @public
525
+ */
526
+ IfMatch?: string | undefined;
527
+ }
528
+ /**
529
+ * @public
530
+ */
531
+ export interface AssociateDistributionTenantWebACLResult {
532
+ /**
533
+ * <p>The ID of the distribution tenant.</p>
534
+ * @public
535
+ */
536
+ Id?: string | undefined;
537
+ /**
538
+ * <p>The ARN of the WAF web ACL that you associated with the distribution tenant.</p>
539
+ * @public
540
+ */
541
+ WebACLArn?: string | undefined;
542
+ /**
543
+ * <p>The current version of the distribution tenant.</p>
544
+ * @public
545
+ */
546
+ ETag?: string | undefined;
547
+ }
548
+ /**
549
+ * <p>The entity was not found.</p>
550
+ * @public
551
+ */
552
+ export declare class EntityNotFound extends __BaseException {
553
+ readonly name: "EntityNotFound";
554
+ readonly $fault: "client";
555
+ Message?: string | undefined;
556
+ /**
557
+ * @internal
558
+ */
559
+ constructor(opts: __ExceptionOptionType<EntityNotFound, __BaseException>);
560
+ }
561
+ /**
562
+ * <p>The <code>If-Match</code> version is missing or not valid.</p>
563
+ * @public
564
+ */
565
+ export declare class InvalidIfMatchVersion extends __BaseException {
566
+ readonly name: "InvalidIfMatchVersion";
567
+ readonly $fault: "client";
568
+ Message?: string | undefined;
569
+ /**
570
+ * @internal
571
+ */
572
+ constructor(opts: __ExceptionOptionType<InvalidIfMatchVersion, __BaseException>);
573
+ }
574
+ /**
575
+ * <p>The precondition in one or more of the request fields evaluated to
576
+ * <code>false</code>.</p>
577
+ * @public
578
+ */
579
+ export declare class PreconditionFailed extends __BaseException {
580
+ readonly name: "PreconditionFailed";
581
+ readonly $fault: "client";
582
+ Message?: string | undefined;
583
+ /**
584
+ * @internal
585
+ */
586
+ constructor(opts: __ExceptionOptionType<PreconditionFailed, __BaseException>);
587
+ }
588
+ /**
589
+ * @public
590
+ */
591
+ export interface AssociateDistributionWebACLRequest {
592
+ /**
593
+ * <p>The ID of the distribution.</p>
594
+ * @public
595
+ */
596
+ Id: string | undefined;
597
+ /**
598
+ * <p>The Amazon Resource Name (ARN) of the WAF web ACL to associate.</p>
599
+ * @public
600
+ */
601
+ WebACLArn: string | undefined;
602
+ /**
603
+ * <p>The value of the <code>ETag</code> header that you received when retrieving the distribution that you're associating with the WAF web ACL.</p>
604
+ * @public
605
+ */
606
+ IfMatch?: string | undefined;
607
+ }
608
+ /**
609
+ * @public
610
+ */
611
+ export interface AssociateDistributionWebACLResult {
612
+ /**
613
+ * <p>The ID of the distribution.</p>
614
+ * @public
615
+ */
616
+ Id?: string | undefined;
617
+ /**
618
+ * <p>The ARN of the WAF web ACL that you associated with the distribution.</p>
619
+ * @public
620
+ */
621
+ WebACLArn?: string | undefined;
622
+ /**
623
+ * <p>The current version of the distribution.</p>
624
+ * @public
625
+ */
626
+ ETag?: string | undefined;
627
+ }
508
628
  /**
509
629
  * <p>Invalidation batch specified is too large.</p>
510
630
  * @public
@@ -1777,6 +1897,17 @@ export declare class CannotUpdateEntityWhileInUse extends __BaseException {
1777
1897
  */
1778
1898
  constructor(opts: __ExceptionOptionType<CannotUpdateEntityWhileInUse, __BaseException>);
1779
1899
  }
1900
+ /**
1901
+ * <p>The Certificate Manager (ACM) certificate associated with your distribution.</p>
1902
+ * @public
1903
+ */
1904
+ export interface Certificate {
1905
+ /**
1906
+ * <p>The Amazon Resource Name (ARN) of the ACM certificate.</p>
1907
+ * @public
1908
+ */
1909
+ Arn: string | undefined;
1910
+ }
1780
1911
  /**
1781
1912
  * @public
1782
1913
  * @enum
@@ -1790,6 +1921,18 @@ export declare const CertificateSource: {
1790
1921
  * @public
1791
1922
  */
1792
1923
  export type CertificateSource = (typeof CertificateSource)[keyof typeof CertificateSource];
1924
+ /**
1925
+ * @public
1926
+ * @enum
1927
+ */
1928
+ export declare const CertificateTransparencyLoggingPreference: {
1929
+ readonly Disabled: "disabled";
1930
+ readonly Enabled: "enabled";
1931
+ };
1932
+ /**
1933
+ * @public
1934
+ */
1935
+ export type CertificateTransparencyLoggingPreference = (typeof CertificateTransparencyLoggingPreference)[keyof typeof CertificateTransparencyLoggingPreference];
1793
1936
  /**
1794
1937
  * <p>The CNAME specified is already defined for CloudFront.</p>
1795
1938
  * @public
@@ -1844,6 +1987,18 @@ export interface CopyDistributionRequest {
1844
1987
  */
1845
1988
  Enabled?: boolean | undefined;
1846
1989
  }
1990
+ /**
1991
+ * @public
1992
+ * @enum
1993
+ */
1994
+ export declare const ConnectionMode: {
1995
+ readonly Direct: "direct";
1996
+ readonly TenantOnly: "tenant-only";
1997
+ };
1998
+ /**
1999
+ * @public
2000
+ */
2001
+ export type ConnectionMode = (typeof ConnectionMode)[keyof typeof ConnectionMode];
1847
2002
  /**
1848
2003
  * <p>A complex type that controls:</p>
1849
2004
  * <ul>
@@ -2793,6 +2948,7 @@ export interface Origins {
2793
2948
  * @enum
2794
2949
  */
2795
2950
  export declare const PriceClass: {
2951
+ readonly None: "None";
2796
2952
  readonly PriceClass_100: "PriceClass_100";
2797
2953
  readonly PriceClass_200: "PriceClass_200";
2798
2954
  readonly PriceClass_All: "PriceClass_All";
@@ -2822,8 +2978,7 @@ export type GeoRestrictionType = (typeof GeoRestrictionType)[keyof typeof GeoRes
2822
2978
  */
2823
2979
  export interface GeoRestriction {
2824
2980
  /**
2825
- * <p>The method that you want to use to restrict distribution of your content by
2826
- * country:</p>
2981
+ * <p>The method that you want to use to restrict distribution of your content by country:</p>
2827
2982
  * <ul>
2828
2983
  * <li>
2829
2984
  * <p>
@@ -2881,6 +3036,65 @@ export interface Restrictions {
2881
3036
  */
2882
3037
  GeoRestriction: GeoRestriction | undefined;
2883
3038
  }
3039
+ /**
3040
+ * <p>The configuration for a string schema.</p>
3041
+ * @public
3042
+ */
3043
+ export interface StringSchemaConfig {
3044
+ /**
3045
+ * <p>A comment to describe the parameter.</p>
3046
+ * @public
3047
+ */
3048
+ Comment?: string | undefined;
3049
+ /**
3050
+ * <p>The default value of the parameter.</p>
3051
+ * @public
3052
+ */
3053
+ DefaultValue?: string | undefined;
3054
+ /**
3055
+ * <p>Whether the defined parameter is required.</p>
3056
+ * @public
3057
+ */
3058
+ Required: boolean | undefined;
3059
+ }
3060
+ /**
3061
+ * <p>An object that contains information about the parameter definition.</p>
3062
+ * @public
3063
+ */
3064
+ export interface ParameterDefinitionSchema {
3065
+ /**
3066
+ * <p>An object that contains information about the string schema.</p>
3067
+ * @public
3068
+ */
3069
+ StringSchema?: StringSchemaConfig | undefined;
3070
+ }
3071
+ /**
3072
+ * <p>A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.</p>
3073
+ * @public
3074
+ */
3075
+ export interface ParameterDefinition {
3076
+ /**
3077
+ * <p>The name of the parameter.</p>
3078
+ * @public
3079
+ */
3080
+ Name: string | undefined;
3081
+ /**
3082
+ * <p>The value that you assigned to the parameter.</p>
3083
+ * @public
3084
+ */
3085
+ Definition: ParameterDefinitionSchema | undefined;
3086
+ }
3087
+ /**
3088
+ * <p>The configuration for a distribution tenant.</p>
3089
+ * @public
3090
+ */
3091
+ export interface TenantConfig {
3092
+ /**
3093
+ * <p>The parameters that you specify for a distribution tenant.</p>
3094
+ * @public
3095
+ */
3096
+ ParameterDefinitions?: ParameterDefinition[] | undefined;
3097
+ }
2884
3098
  /**
2885
3099
  * @public
2886
3100
  * @enum
@@ -3040,7 +3254,7 @@ export interface ViewerCertificate {
3040
3254
  * <code>static-ip</code> - Do not specify this value unless your distribution
3041
3255
  * has been enabled for this feature by the CloudFront team. If you have a use case
3042
3256
  * that requires static IP addresses for a distribution, contact CloudFront through
3043
- * the <a href="https://console.aws.amazon.com/support/home">Amazon Web ServicesSupport Center</a>.</p>
3257
+ * the <a href="https://console.aws.amazon.com/support/home">Amazon Web Services Support Center</a>.</p>
3044
3258
  * </li>
3045
3259
  * </ul>
3046
3260
  * <p>If the distribution uses the CloudFront domain name such as
@@ -3343,6 +3557,16 @@ export interface DistributionConfig {
3343
3557
  * @public
3344
3558
  */
3345
3559
  AnycastIpListId?: string | undefined;
3560
+ /**
3561
+ * <p>A distribution tenant configuration.</p>
3562
+ * @public
3563
+ */
3564
+ TenantConfig?: TenantConfig | undefined;
3565
+ /**
3566
+ * <p>The connection mode to filter distributions by.</p>
3567
+ * @public
3568
+ */
3569
+ ConnectionMode?: ConnectionMode | undefined;
3346
3570
  }
3347
3571
  /**
3348
3572
  * <p>A distribution tells CloudFront where you want content to be delivered from, and the details
@@ -3558,19 +3782,6 @@ export declare class InvalidHeadersForS3Origin extends __BaseException {
3558
3782
  */
3559
3783
  constructor(opts: __ExceptionOptionType<InvalidHeadersForS3Origin, __BaseException>);
3560
3784
  }
3561
- /**
3562
- * <p>The <code>If-Match</code> version is missing or not valid.</p>
3563
- * @public
3564
- */
3565
- export declare class InvalidIfMatchVersion extends __BaseException {
3566
- readonly name: "InvalidIfMatchVersion";
3567
- readonly $fault: "client";
3568
- Message?: string | undefined;
3569
- /**
3570
- * @internal
3571
- */
3572
- constructor(opts: __ExceptionOptionType<InvalidIfMatchVersion, __BaseException>);
3573
- }
3574
3785
  /**
3575
3786
  * <p>The specified Lambda@Edge function association is invalid.</p>
3576
3787
  * @public
@@ -3879,20 +4090,6 @@ export declare class NoSuchResponseHeadersPolicy extends __BaseException {
3879
4090
  */
3880
4091
  constructor(opts: __ExceptionOptionType<NoSuchResponseHeadersPolicy, __BaseException>);
3881
4092
  }
3882
- /**
3883
- * <p>The precondition in one or more of the request fields evaluated to
3884
- * <code>false</code>.</p>
3885
- * @public
3886
- */
3887
- export declare class PreconditionFailed extends __BaseException {
3888
- readonly name: "PreconditionFailed";
3889
- readonly $fault: "client";
3890
- Message?: string | undefined;
3891
- /**
3892
- * @internal
3893
- */
3894
- constructor(opts: __ExceptionOptionType<PreconditionFailed, __BaseException>);
3895
- }
3896
4093
  /**
3897
4094
  * <p>The specified real-time log configuration belongs to a different Amazon Web Services account.</p>
3898
4095
  * @public
@@ -4286,7 +4483,7 @@ export interface CreateAnycastIpListRequest {
4286
4483
  */
4287
4484
  Name: string | undefined;
4288
4485
  /**
4289
- * <p>The number of static IP addresses that are allocated to the Anycast static IP list.</p>
4486
+ * <p>The number of static IP addresses that are allocated to the Anycast static IP list. Valid values: 21 or 3.</p>
4290
4487
  * @public
4291
4488
  */
4292
4489
  IpCount: number | undefined;
@@ -4576,88 +4773,200 @@ export declare class TooManyCloudFrontOriginAccessIdentities extends __BaseExcep
4576
4773
  constructor(opts: __ExceptionOptionType<TooManyCloudFrontOriginAccessIdentities, __BaseException>);
4577
4774
  }
4578
4775
  /**
4579
- * <p>A continuous deployment policy with this configuration already exists.</p>
4580
4776
  * @public
4581
4777
  */
4582
- export declare class ContinuousDeploymentPolicyAlreadyExists extends __BaseException {
4583
- readonly name: "ContinuousDeploymentPolicyAlreadyExists";
4584
- readonly $fault: "client";
4585
- Message?: string | undefined;
4778
+ export interface CreateConnectionGroupRequest {
4586
4779
  /**
4587
- * @internal
4780
+ * <p>The name of the connection group. Enter a friendly identifier that is unique within your Amazon Web Services account. This name can't be updated after you create the connection group.</p>
4781
+ * @public
4588
4782
  */
4589
- constructor(opts: __ExceptionOptionType<ContinuousDeploymentPolicyAlreadyExists, __BaseException>);
4590
- }
4591
- /**
4592
- * <p>The CloudFront domain name of the staging distribution.</p>
4593
- * @public
4594
- */
4595
- export interface StagingDistributionDnsNames {
4783
+ Name: string | undefined;
4596
4784
  /**
4597
- * <p>The number of CloudFront domain names in your staging distribution.</p>
4785
+ * <p>Enable IPv6 for the connection group. The default is <code>true</code>. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/distribution-web-values-specify.html#DownloadDistValuesEnableIPv6">Enable IPv6</a> in the
4786
+ * <i>Amazon CloudFront Developer Guide</i>.</p>
4598
4787
  * @public
4599
4788
  */
4600
- Quantity: number | undefined;
4789
+ Ipv6Enabled?: boolean | undefined;
4601
4790
  /**
4602
- * <p>The CloudFront domain name of the staging distribution.</p>
4791
+ * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
4603
4792
  * @public
4604
4793
  */
4605
- Items?: string[] | undefined;
4606
- }
4607
- /**
4608
- * <p>This configuration determines which HTTP requests are sent to the staging
4609
- * distribution. If the HTTP request contains a header and value that matches what you
4610
- * specify here, the request is sent to the staging distribution. Otherwise the request is
4611
- * sent to the primary distribution.</p>
4612
- * @public
4613
- */
4614
- export interface ContinuousDeploymentSingleHeaderConfig {
4794
+ Tags?: Tags | undefined;
4615
4795
  /**
4616
- * <p>The request header name that you want CloudFront to send to your staging
4617
- * distribution. The header must contain the prefix <code>aws-cf-cd-</code>.</p>
4796
+ * <p>The ID of the Anycast static IP list.</p>
4618
4797
  * @public
4619
4798
  */
4620
- Header: string | undefined;
4799
+ AnycastIpListId?: string | undefined;
4621
4800
  /**
4622
- * <p>The request header value.</p>
4801
+ * <p>Enable the connection group.</p>
4623
4802
  * @public
4624
4803
  */
4625
- Value: string | undefined;
4804
+ Enabled?: boolean | undefined;
4626
4805
  }
4627
4806
  /**
4628
- * <p>Session stickiness provides the ability to define multiple requests from a single
4629
- * viewer as a single session. This prevents the potentially inconsistent experience of
4630
- * sending some of a given user's requests to your staging distribution, while others are
4631
- * sent to your primary distribution. Define the session duration using TTL values.</p>
4807
+ * <p>The connection group for your distribution tenants. When you first create a distribution tenant and you don't specify a connection group, CloudFront will automatically create a default connection group for you. When you create a new distribution tenant and don't specify a connection group, the default one will be associated with your distribution tenant.</p>
4632
4808
  * @public
4633
4809
  */
4634
- export interface SessionStickinessConfig {
4810
+ export interface ConnectionGroup {
4635
4811
  /**
4636
- * <p>The amount of time after which you want sessions to cease if no requests are
4637
- * received. Allowed values are 300–3600 seconds (5–60 minutes).</p>
4638
- * <p>The value must be less than or equal to <code>MaximumTTL</code>.</p>
4812
+ * <p>The ID of the connection group.</p>
4639
4813
  * @public
4640
4814
  */
4641
- IdleTTL: number | undefined;
4815
+ Id?: string | undefined;
4642
4816
  /**
4643
- * <p>The maximum amount of time to consider requests from the viewer as being part of the
4644
- * same session. Allowed values are 300–3600 seconds (5–60 minutes).</p>
4645
- * <p>The value must be greater than or equal to <code>IdleTTL</code>.</p>
4817
+ * <p>The name of the connection group.</p>
4646
4818
  * @public
4647
4819
  */
4648
- MaximumTTL: number | undefined;
4649
- }
4650
- /**
4651
- * <p>Contains the percentage of traffic to send to a staging distribution.</p>
4652
- * @public
4653
- */
4654
- export interface ContinuousDeploymentSingleWeightConfig {
4820
+ Name?: string | undefined;
4655
4821
  /**
4656
- * <p>The percentage of traffic to send to a staging distribution, expressed as a decimal
4657
- * number between 0 and 0.15. For example, a value of 0.10 means 10% of traffic is sent to the staging distribution.</p>
4822
+ * <p>The Amazon Resource Name (ARN) of the connection group.</p>
4658
4823
  * @public
4659
4824
  */
4660
- Weight: number | undefined;
4825
+ Arn?: string | undefined;
4826
+ /**
4827
+ * <p>The date and time when the connection group was created.</p>
4828
+ * @public
4829
+ */
4830
+ CreatedTime?: Date | undefined;
4831
+ /**
4832
+ * <p>The date and time when the connection group was updated.</p>
4833
+ * @public
4834
+ */
4835
+ LastModifiedTime?: Date | undefined;
4836
+ /**
4837
+ * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
4838
+ * @public
4839
+ */
4840
+ Tags?: Tags | undefined;
4841
+ /**
4842
+ * <p>IPv6 is enabled for the connection group.</p>
4843
+ * @public
4844
+ */
4845
+ Ipv6Enabled?: boolean | undefined;
4846
+ /**
4847
+ * <p>The routing endpoint (also known as the DNS name) that is assigned to the connection group, such as d111111abcdef8.cloudfront.net.</p>
4848
+ * @public
4849
+ */
4850
+ RoutingEndpoint?: string | undefined;
4851
+ /**
4852
+ * <p>The ID of the Anycast static IP list.</p>
4853
+ * @public
4854
+ */
4855
+ AnycastIpListId?: string | undefined;
4856
+ /**
4857
+ * <p>The status of the connection group.</p>
4858
+ * @public
4859
+ */
4860
+ Status?: string | undefined;
4861
+ /**
4862
+ * <p>Whether the connection group is enabled.</p>
4863
+ * @public
4864
+ */
4865
+ Enabled?: boolean | undefined;
4866
+ /**
4867
+ * <p>Whether the connection group is the default connection group for the distribution tenants.</p>
4868
+ * @public
4869
+ */
4870
+ IsDefault?: boolean | undefined;
4871
+ }
4872
+ /**
4873
+ * @public
4874
+ */
4875
+ export interface CreateConnectionGroupResult {
4876
+ /**
4877
+ * <p>The connection group that you created.</p>
4878
+ * @public
4879
+ */
4880
+ ConnectionGroup?: ConnectionGroup | undefined;
4881
+ /**
4882
+ * <p>The current version of the connection group.</p>
4883
+ * @public
4884
+ */
4885
+ ETag?: string | undefined;
4886
+ }
4887
+ /**
4888
+ * <p>A continuous deployment policy with this configuration already exists.</p>
4889
+ * @public
4890
+ */
4891
+ export declare class ContinuousDeploymentPolicyAlreadyExists extends __BaseException {
4892
+ readonly name: "ContinuousDeploymentPolicyAlreadyExists";
4893
+ readonly $fault: "client";
4894
+ Message?: string | undefined;
4895
+ /**
4896
+ * @internal
4897
+ */
4898
+ constructor(opts: __ExceptionOptionType<ContinuousDeploymentPolicyAlreadyExists, __BaseException>);
4899
+ }
4900
+ /**
4901
+ * <p>The CloudFront domain name of the staging distribution.</p>
4902
+ * @public
4903
+ */
4904
+ export interface StagingDistributionDnsNames {
4905
+ /**
4906
+ * <p>The number of CloudFront domain names in your staging distribution.</p>
4907
+ * @public
4908
+ */
4909
+ Quantity: number | undefined;
4910
+ /**
4911
+ * <p>The CloudFront domain name of the staging distribution.</p>
4912
+ * @public
4913
+ */
4914
+ Items?: string[] | undefined;
4915
+ }
4916
+ /**
4917
+ * <p>This configuration determines which HTTP requests are sent to the staging
4918
+ * distribution. If the HTTP request contains a header and value that matches what you
4919
+ * specify here, the request is sent to the staging distribution. Otherwise the request is
4920
+ * sent to the primary distribution.</p>
4921
+ * @public
4922
+ */
4923
+ export interface ContinuousDeploymentSingleHeaderConfig {
4924
+ /**
4925
+ * <p>The request header name that you want CloudFront to send to your staging
4926
+ * distribution. The header must contain the prefix <code>aws-cf-cd-</code>.</p>
4927
+ * @public
4928
+ */
4929
+ Header: string | undefined;
4930
+ /**
4931
+ * <p>The request header value.</p>
4932
+ * @public
4933
+ */
4934
+ Value: string | undefined;
4935
+ }
4936
+ /**
4937
+ * <p>Session stickiness provides the ability to define multiple requests from a single
4938
+ * viewer as a single session. This prevents the potentially inconsistent experience of
4939
+ * sending some of a given user's requests to your staging distribution, while others are
4940
+ * sent to your primary distribution. Define the session duration using TTL values.</p>
4941
+ * @public
4942
+ */
4943
+ export interface SessionStickinessConfig {
4944
+ /**
4945
+ * <p>The amount of time after which you want sessions to cease if no requests are
4946
+ * received. Allowed values are 300–3600 seconds (5–60 minutes).</p>
4947
+ * <p>The value must be less than or equal to <code>MaximumTTL</code>.</p>
4948
+ * @public
4949
+ */
4950
+ IdleTTL: number | undefined;
4951
+ /**
4952
+ * <p>The maximum amount of time to consider requests from the viewer as being part of the
4953
+ * same session. Allowed values are 300–3600 seconds (5–60 minutes).</p>
4954
+ * <p>The value must be greater than or equal to <code>IdleTTL</code>.</p>
4955
+ * @public
4956
+ */
4957
+ MaximumTTL: number | undefined;
4958
+ }
4959
+ /**
4960
+ * <p>Contains the percentage of traffic to send to a staging distribution.</p>
4961
+ * @public
4962
+ */
4963
+ export interface ContinuousDeploymentSingleWeightConfig {
4964
+ /**
4965
+ * <p>The percentage of traffic to send to a staging distribution, expressed as a decimal
4966
+ * number between 0 and 0.15. For example, a value of 0.10 means 10% of traffic is sent to the staging distribution.</p>
4967
+ * @public
4968
+ */
4969
+ Weight: number | undefined;
4661
4970
  /**
4662
4971
  * <p>Session stickiness provides the ability to define multiple requests from a single
4663
4972
  * viewer as a single session. This prevents the potentially inconsistent experience of
@@ -4851,19 +5160,6 @@ export interface CreateDistributionResult {
4851
5160
  */
4852
5161
  ETag?: string | undefined;
4853
5162
  }
4854
- /**
4855
- * <p>The entity was not found.</p>
4856
- * @public
4857
- */
4858
- export declare class EntityNotFound extends __BaseException {
4859
- readonly name: "EntityNotFound";
4860
- readonly $fault: "client";
4861
- Message?: string | undefined;
4862
- /**
4863
- * @internal
4864
- */
4865
- constructor(opts: __ExceptionOptionType<EntityNotFound, __BaseException>);
4866
- }
4867
5163
  /**
4868
5164
  * <p>An origin cannot contain both an origin access control (OAC) and an origin access
4869
5165
  * identity (OAI).</p>
@@ -4906,150 +5202,481 @@ export declare class NoSuchContinuousDeploymentPolicy extends __BaseException {
4906
5202
  constructor(opts: __ExceptionOptionType<NoSuchContinuousDeploymentPolicy, __BaseException>);
4907
5203
  }
4908
5204
  /**
4909
- * <p>A distribution Configuration and a list of tags to be associated with the
4910
- * distribution.</p>
5205
+ * <p>The customizations that you specified for the distribution tenant for geographic restrictions.</p>
4911
5206
  * @public
4912
5207
  */
4913
- export interface DistributionConfigWithTags {
5208
+ export interface GeoRestrictionCustomization {
4914
5209
  /**
4915
- * <p>A distribution configuration.</p>
5210
+ * <p>The method that you want to use to restrict distribution of your content by
5211
+ * country:</p>
5212
+ * <ul>
5213
+ * <li>
5214
+ * <p>
5215
+ * <code>none</code>: No geographic restriction is enabled, meaning access to content is
5216
+ * not restricted by client geo location.</p>
5217
+ * </li>
5218
+ * <li>
5219
+ * <p>
5220
+ * <code>blacklist</code>: The <code>Location</code> elements specify the
5221
+ * countries in which you don't want CloudFront to distribute your content.</p>
5222
+ * </li>
5223
+ * <li>
5224
+ * <p>
5225
+ * <code>whitelist</code>: The <code>Location</code> elements specify the
5226
+ * countries in which you want CloudFront to distribute your content.</p>
5227
+ * </li>
5228
+ * </ul>
4916
5229
  * @public
4917
5230
  */
4918
- DistributionConfig: DistributionConfig | undefined;
5231
+ RestrictionType: GeoRestrictionType | undefined;
4919
5232
  /**
4920
- * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
5233
+ * <p>The locations for geographic restrictions.</p>
4921
5234
  * @public
4922
5235
  */
4923
- Tags: Tags | undefined;
5236
+ Locations?: string[] | undefined;
4924
5237
  }
4925
5238
  /**
4926
- * <p>The request to create a new distribution with tags.</p>
4927
5239
  * @public
5240
+ * @enum
4928
5241
  */
4929
- export interface CreateDistributionWithTagsRequest {
5242
+ export declare const CustomizationActionType: {
5243
+ readonly disable: "disable";
5244
+ readonly override: "override";
5245
+ };
5246
+ /**
5247
+ * @public
5248
+ */
5249
+ export type CustomizationActionType = (typeof CustomizationActionType)[keyof typeof CustomizationActionType];
5250
+ /**
5251
+ * <p>The WAF web ACL customization specified for the distribution tenant.</p>
5252
+ * @public
5253
+ */
5254
+ export interface WebAclCustomization {
4930
5255
  /**
4931
- * <p>The distribution's configuration information.</p>
5256
+ * <p>The action for the WAF web ACL customization. You can specify <code>override</code> to specify a separate WAF web ACL for the distribution tenant. If you specify <code>disable</code>, the distribution tenant won't have WAF web ACL protections and won't inherit from the multi-tenant distribution.</p>
4932
5257
  * @public
4933
5258
  */
4934
- DistributionConfigWithTags: DistributionConfigWithTags | undefined;
5259
+ Action: CustomizationActionType | undefined;
5260
+ /**
5261
+ * <p>The Amazon Resource Name (ARN) of the WAF web ACL.</p>
5262
+ * @public
5263
+ */
5264
+ Arn?: string | undefined;
4935
5265
  }
4936
5266
  /**
4937
- * <p>The returned result of the corresponding request.</p>
5267
+ * <p>Customizations for the distribution tenant. For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.</p>
4938
5268
  * @public
4939
5269
  */
4940
- export interface CreateDistributionWithTagsResult {
5270
+ export interface Customizations {
4941
5271
  /**
4942
- * <p>The distribution's information.</p>
5272
+ * <p>The WAF web ACL.</p>
4943
5273
  * @public
4944
5274
  */
4945
- Distribution?: Distribution | undefined;
5275
+ WebAcl?: WebAclCustomization | undefined;
4946
5276
  /**
4947
- * <p>The fully qualified URI of the new distribution resource just created.</p>
5277
+ * <p>The Certificate Manager (ACM) certificate.</p>
4948
5278
  * @public
4949
5279
  */
4950
- Location?: string | undefined;
5280
+ Certificate?: Certificate | undefined;
4951
5281
  /**
4952
- * <p>The current version of the distribution created.</p>
5282
+ * <p>The geographic restrictions.</p>
4953
5283
  * @public
4954
5284
  */
4955
- ETag?: string | undefined;
5285
+ GeoRestrictions?: GeoRestrictionCustomization | undefined;
5286
+ }
5287
+ /**
5288
+ * <p>The domain for the specified distribution tenant.</p>
5289
+ * @public
5290
+ */
5291
+ export interface DomainItem {
5292
+ /**
5293
+ * <p>The domain name.</p>
5294
+ * @public
5295
+ */
5296
+ Domain: string | undefined;
4956
5297
  }
4957
5298
  /**
4958
5299
  * @public
4959
5300
  * @enum
4960
5301
  */
4961
- export declare const Format: {
4962
- readonly URLEncoded: "URLEncoded";
5302
+ export declare const ValidationTokenHost: {
5303
+ readonly CloudFront: "cloudfront";
5304
+ readonly SelfHosted: "self-hosted";
4963
5305
  };
4964
5306
  /**
4965
5307
  * @public
4966
5308
  */
4967
- export type Format = (typeof Format)[keyof typeof Format];
5309
+ export type ValidationTokenHost = (typeof ValidationTokenHost)[keyof typeof ValidationTokenHost];
4968
5310
  /**
4969
- * <p>A field-level encryption content type profile.</p>
5311
+ * <p>An object that represents the request for the Amazon CloudFront managed ACM certificate.</p>
4970
5312
  * @public
4971
5313
  */
4972
- export interface ContentTypeProfile {
5314
+ export interface ManagedCertificateRequest {
4973
5315
  /**
4974
- * <p>The format for a field-level encryption content type-profile mapping.</p>
5316
+ * <p>Specify how the HTTP validation token will be served when requesting the CloudFront managed ACM certificate.</p>
5317
+ * <ul>
5318
+ * <li>
5319
+ * <p>For <code>cloudfront</code>, CloudFront will automatically serve the validation token. Choose this mode if you can point the domain's DNS to CloudFront immediately.</p>
5320
+ * </li>
5321
+ * <li>
5322
+ * <p>For <code>self-hosted</code>, you serve the validation token from your existing infrastructure. Choose this mode when you need to maintain current traffic flow while your certificate is being issued. You can place the validation token at the well-known path on your existing web server, wait for ACM to validate and issue the certificate, and then update your DNS to point to CloudFront.</p>
5323
+ * </li>
5324
+ * </ul>
4975
5325
  * @public
4976
5326
  */
4977
- Format: Format | undefined;
5327
+ ValidationTokenHost: ValidationTokenHost | undefined;
4978
5328
  /**
4979
- * <p>The profile ID for a field-level encryption content type-profile mapping.</p>
5329
+ * <p>The primary domain name associated with the CloudFront managed ACM certificate.</p>
4980
5330
  * @public
4981
5331
  */
4982
- ProfileId?: string | undefined;
5332
+ PrimaryDomainName?: string | undefined;
4983
5333
  /**
4984
- * <p>The content type for a field-level encryption content type-profile mapping.</p>
5334
+ * <p>You can opt out of certificate transparency logging by specifying the <code>disabled</code>
5335
+ * option. Opt in by specifying <code>enabled</code>. For more information, see <a href="https://docs.aws.amazon.com/acm/latest/userguide/acm-concepts.html#concept-transparency">Certificate
5336
+ * Transparency Logging </a> in the <i>Certificate Manager User
5337
+ * Guide</i>.</p>
4985
5338
  * @public
4986
5339
  */
4987
- ContentType: string | undefined;
5340
+ CertificateTransparencyLoggingPreference?: CertificateTransparencyLoggingPreference | undefined;
4988
5341
  }
4989
5342
  /**
4990
- * <p>Field-level encryption content type-profile.</p>
5343
+ * <p>A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.</p>
4991
5344
  * @public
4992
5345
  */
4993
- export interface ContentTypeProfiles {
5346
+ export interface Parameter {
4994
5347
  /**
4995
- * <p>The number of field-level encryption content type-profile mappings.</p>
5348
+ * <p>The parameter name.</p>
4996
5349
  * @public
4997
5350
  */
4998
- Quantity: number | undefined;
5351
+ Name: string | undefined;
4999
5352
  /**
5000
- * <p>Items in a field-level encryption content type-profile mapping.</p>
5353
+ * <p>The parameter value.</p>
5001
5354
  * @public
5002
5355
  */
5003
- Items?: ContentTypeProfile[] | undefined;
5356
+ Value: string | undefined;
5004
5357
  }
5005
5358
  /**
5006
- * <p>The configuration for a field-level encryption content type-profile mapping.</p>
5007
5359
  * @public
5008
5360
  */
5009
- export interface ContentTypeProfileConfig {
5361
+ export interface CreateDistributionTenantRequest {
5010
5362
  /**
5011
- * <p>The setting in a field-level encryption content type-profile mapping that specifies
5012
- * what to do when an unknown content type is provided for the profile. If true, content is
5013
- * forwarded without being encrypted when the content type is unknown. If false (the
5014
- * default), an error is returned when the content type is unknown.</p>
5363
+ * <p>The ID of the multi-tenant distribution to use for creating the distribution tenant.</p>
5015
5364
  * @public
5016
5365
  */
5017
- ForwardWhenContentTypeIsUnknown: boolean | undefined;
5366
+ DistributionId: string | undefined;
5018
5367
  /**
5019
- * <p>The configuration for a field-level encryption content type-profile.</p>
5368
+ * <p>The name of the distribution tenant. Enter a friendly identifier that is unique within your Amazon Web Services account. This name can't be updated after you create the distribution tenant.</p>
5020
5369
  * @public
5021
5370
  */
5022
- ContentTypeProfiles?: ContentTypeProfiles | undefined;
5023
- }
5024
- /**
5025
- * <p>Query argument-profile mapping for field-level encryption.</p>
5026
- * @public
5027
- */
5028
- export interface QueryArgProfile {
5371
+ Name: string | undefined;
5029
5372
  /**
5030
- * <p>Query argument for field-level encryption query argument-profile mapping.</p>
5373
+ * <p>The domains associated with the distribution tenant. You must specify at least one domain in the request.</p>
5031
5374
  * @public
5032
5375
  */
5033
- QueryArg: string | undefined;
5376
+ Domains: DomainItem[] | undefined;
5034
5377
  /**
5035
- * <p>ID of profile to use for field-level encryption query argument-profile mapping</p>
5378
+ * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
5036
5379
  * @public
5037
5380
  */
5038
- ProfileId: string | undefined;
5039
- }
5040
- /**
5041
- * <p>Query argument-profile mapping for field-level encryption.</p>
5042
- * @public
5043
- */
5044
- export interface QueryArgProfiles {
5381
+ Tags?: Tags | undefined;
5045
5382
  /**
5046
- * <p>Number of profiles for query argument-profile mapping for field-level
5047
- * encryption.</p>
5383
+ * <p>Customizations for the distribution tenant. For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.</p>
5048
5384
  * @public
5049
5385
  */
5050
- Quantity: number | undefined;
5386
+ Customizations?: Customizations | undefined;
5051
5387
  /**
5052
- * <p>Number of items for query argument-profile mapping for field-level encryption.</p>
5388
+ * <p>A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.</p>
5389
+ * @public
5390
+ */
5391
+ Parameters?: Parameter[] | undefined;
5392
+ /**
5393
+ * <p>The ID of the connection group to associate with the distribution tenant.</p>
5394
+ * @public
5395
+ */
5396
+ ConnectionGroupId?: string | undefined;
5397
+ /**
5398
+ * <p>The configuration for the CloudFront managed ACM certificate request.</p>
5399
+ * @public
5400
+ */
5401
+ ManagedCertificateRequest?: ManagedCertificateRequest | undefined;
5402
+ /**
5403
+ * <p>Indicates whether the distribution tenant should be enabled when created. If the distribution tenant is disabled, the distribution tenant won't serve traffic.</p>
5404
+ * @public
5405
+ */
5406
+ Enabled?: boolean | undefined;
5407
+ }
5408
+ /**
5409
+ * @public
5410
+ * @enum
5411
+ */
5412
+ export declare const DomainStatus: {
5413
+ readonly Active: "active";
5414
+ readonly Inactive: "inactive";
5415
+ };
5416
+ /**
5417
+ * @public
5418
+ */
5419
+ export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
5420
+ /**
5421
+ * <p>The details about the domain result.</p>
5422
+ * @public
5423
+ */
5424
+ export interface DomainResult {
5425
+ /**
5426
+ * <p>The specified domain.</p>
5427
+ * @public
5428
+ */
5429
+ Domain: string | undefined;
5430
+ /**
5431
+ * <p>Whether the domain is active or inactive.</p>
5432
+ * @public
5433
+ */
5434
+ Status?: DomainStatus | undefined;
5435
+ }
5436
+ /**
5437
+ * <p>The distribution tenant.</p>
5438
+ * @public
5439
+ */
5440
+ export interface DistributionTenant {
5441
+ /**
5442
+ * <p>The ID of the distribution tenant.</p>
5443
+ * @public
5444
+ */
5445
+ Id?: string | undefined;
5446
+ /**
5447
+ * <p>The ID of the multi-tenant distribution.</p>
5448
+ * @public
5449
+ */
5450
+ DistributionId?: string | undefined;
5451
+ /**
5452
+ * <p>The name of the distribution tenant.</p>
5453
+ * @public
5454
+ */
5455
+ Name?: string | undefined;
5456
+ /**
5457
+ * <p>The Amazon Resource Name (ARN) of the distribution tenant.</p>
5458
+ * @public
5459
+ */
5460
+ Arn?: string | undefined;
5461
+ /**
5462
+ * <p>The domains associated with the distribution tenant.</p>
5463
+ * @public
5464
+ */
5465
+ Domains?: DomainResult[] | undefined;
5466
+ /**
5467
+ * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
5468
+ * @public
5469
+ */
5470
+ Tags?: Tags | undefined;
5471
+ /**
5472
+ * <p>Customizations for the distribution tenant. For each distribution tenant, you can specify the geographic restrictions, and the Amazon Resource Names (ARNs) for the ACM certificate and WAF web ACL. These are specific values that you can override or disable from the multi-tenant distribution that was used to create the distribution tenant.</p>
5473
+ * @public
5474
+ */
5475
+ Customizations?: Customizations | undefined;
5476
+ /**
5477
+ * <p>A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.</p>
5478
+ * @public
5479
+ */
5480
+ Parameters?: Parameter[] | undefined;
5481
+ /**
5482
+ * <p>The ID of the connection group for the distribution tenant. If you don't specify a connection group, CloudFront uses the default connection group.</p>
5483
+ * @public
5484
+ */
5485
+ ConnectionGroupId?: string | undefined;
5486
+ /**
5487
+ * <p>The date and time when the distribution tenant was created.</p>
5488
+ * @public
5489
+ */
5490
+ CreatedTime?: Date | undefined;
5491
+ /**
5492
+ * <p>The date and time when the distribution tenant was updated.</p>
5493
+ * @public
5494
+ */
5495
+ LastModifiedTime?: Date | undefined;
5496
+ /**
5497
+ * <p>Indicates whether the distribution tenant is in an enabled state. If disabled, the distribution tenant won't serve traffic.</p>
5498
+ * @public
5499
+ */
5500
+ Enabled?: boolean | undefined;
5501
+ /**
5502
+ * <p>The status of the distribution tenant.</p>
5503
+ * @public
5504
+ */
5505
+ Status?: string | undefined;
5506
+ }
5507
+ /**
5508
+ * @public
5509
+ */
5510
+ export interface CreateDistributionTenantResult {
5511
+ /**
5512
+ * <p>The distribution tenant that you created.</p>
5513
+ * @public
5514
+ */
5515
+ DistributionTenant?: DistributionTenant | undefined;
5516
+ /**
5517
+ * <p>The current version of the distribution tenant.</p>
5518
+ * @public
5519
+ */
5520
+ ETag?: string | undefined;
5521
+ }
5522
+ /**
5523
+ * <p>The specified CloudFront resource can't be associated.</p>
5524
+ * @public
5525
+ */
5526
+ export declare class InvalidAssociation extends __BaseException {
5527
+ readonly name: "InvalidAssociation";
5528
+ readonly $fault: "client";
5529
+ Message?: string | undefined;
5530
+ /**
5531
+ * @internal
5532
+ */
5533
+ constructor(opts: __ExceptionOptionType<InvalidAssociation, __BaseException>);
5534
+ }
5535
+ /**
5536
+ * <p>A distribution Configuration and a list of tags to be associated with the
5537
+ * distribution.</p>
5538
+ * @public
5539
+ */
5540
+ export interface DistributionConfigWithTags {
5541
+ /**
5542
+ * <p>A distribution configuration.</p>
5543
+ * @public
5544
+ */
5545
+ DistributionConfig: DistributionConfig | undefined;
5546
+ /**
5547
+ * <p>A complex type that contains zero or more <code>Tag</code> elements.</p>
5548
+ * @public
5549
+ */
5550
+ Tags: Tags | undefined;
5551
+ }
5552
+ /**
5553
+ * <p>The request to create a new distribution with tags.</p>
5554
+ * @public
5555
+ */
5556
+ export interface CreateDistributionWithTagsRequest {
5557
+ /**
5558
+ * <p>The distribution's configuration information.</p>
5559
+ * @public
5560
+ */
5561
+ DistributionConfigWithTags: DistributionConfigWithTags | undefined;
5562
+ }
5563
+ /**
5564
+ * <p>The returned result of the corresponding request.</p>
5565
+ * @public
5566
+ */
5567
+ export interface CreateDistributionWithTagsResult {
5568
+ /**
5569
+ * <p>The distribution's information.</p>
5570
+ * @public
5571
+ */
5572
+ Distribution?: Distribution | undefined;
5573
+ /**
5574
+ * <p>The fully qualified URI of the new distribution resource just created.</p>
5575
+ * @public
5576
+ */
5577
+ Location?: string | undefined;
5578
+ /**
5579
+ * <p>The current version of the distribution created.</p>
5580
+ * @public
5581
+ */
5582
+ ETag?: string | undefined;
5583
+ }
5584
+ /**
5585
+ * @public
5586
+ * @enum
5587
+ */
5588
+ export declare const Format: {
5589
+ readonly URLEncoded: "URLEncoded";
5590
+ };
5591
+ /**
5592
+ * @public
5593
+ */
5594
+ export type Format = (typeof Format)[keyof typeof Format];
5595
+ /**
5596
+ * <p>A field-level encryption content type profile.</p>
5597
+ * @public
5598
+ */
5599
+ export interface ContentTypeProfile {
5600
+ /**
5601
+ * <p>The format for a field-level encryption content type-profile mapping.</p>
5602
+ * @public
5603
+ */
5604
+ Format: Format | undefined;
5605
+ /**
5606
+ * <p>The profile ID for a field-level encryption content type-profile mapping.</p>
5607
+ * @public
5608
+ */
5609
+ ProfileId?: string | undefined;
5610
+ /**
5611
+ * <p>The content type for a field-level encryption content type-profile mapping.</p>
5612
+ * @public
5613
+ */
5614
+ ContentType: string | undefined;
5615
+ }
5616
+ /**
5617
+ * <p>Field-level encryption content type-profile.</p>
5618
+ * @public
5619
+ */
5620
+ export interface ContentTypeProfiles {
5621
+ /**
5622
+ * <p>The number of field-level encryption content type-profile mappings.</p>
5623
+ * @public
5624
+ */
5625
+ Quantity: number | undefined;
5626
+ /**
5627
+ * <p>Items in a field-level encryption content type-profile mapping.</p>
5628
+ * @public
5629
+ */
5630
+ Items?: ContentTypeProfile[] | undefined;
5631
+ }
5632
+ /**
5633
+ * <p>The configuration for a field-level encryption content type-profile mapping.</p>
5634
+ * @public
5635
+ */
5636
+ export interface ContentTypeProfileConfig {
5637
+ /**
5638
+ * <p>The setting in a field-level encryption content type-profile mapping that specifies
5639
+ * what to do when an unknown content type is provided for the profile. If true, content is
5640
+ * forwarded without being encrypted when the content type is unknown. If false (the
5641
+ * default), an error is returned when the content type is unknown.</p>
5642
+ * @public
5643
+ */
5644
+ ForwardWhenContentTypeIsUnknown: boolean | undefined;
5645
+ /**
5646
+ * <p>The configuration for a field-level encryption content type-profile.</p>
5647
+ * @public
5648
+ */
5649
+ ContentTypeProfiles?: ContentTypeProfiles | undefined;
5650
+ }
5651
+ /**
5652
+ * <p>Query argument-profile mapping for field-level encryption.</p>
5653
+ * @public
5654
+ */
5655
+ export interface QueryArgProfile {
5656
+ /**
5657
+ * <p>Query argument for field-level encryption query argument-profile mapping.</p>
5658
+ * @public
5659
+ */
5660
+ QueryArg: string | undefined;
5661
+ /**
5662
+ * <p>ID of profile to use for field-level encryption query argument-profile mapping</p>
5663
+ * @public
5664
+ */
5665
+ ProfileId: string | undefined;
5666
+ }
5667
+ /**
5668
+ * <p>Query argument-profile mapping for field-level encryption.</p>
5669
+ * @public
5670
+ */
5671
+ export interface QueryArgProfiles {
5672
+ /**
5673
+ * <p>Number of profiles for query argument-profile mapping for field-level
5674
+ * encryption.</p>
5675
+ * @public
5676
+ */
5677
+ Quantity: number | undefined;
5678
+ /**
5679
+ * <p>Number of items for query argument-profile mapping for field-level encryption.</p>
5053
5680
  * @public
5054
5681
  */
5055
5682
  Items?: QueryArgProfile[] | undefined;
@@ -5812,25 +6439,55 @@ export declare class TooManyInvalidationsInProgress extends __BaseException {
5812
6439
  constructor(opts: __ExceptionOptionType<TooManyInvalidationsInProgress, __BaseException>);
5813
6440
  }
5814
6441
  /**
5815
- * <p>A key group configuration.</p>
5816
- * <p>A key group contains a list of public keys that you can use with <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html">CloudFront signed URLs and signed cookies</a>.</p>
5817
6442
  * @public
5818
6443
  */
5819
- export interface KeyGroupConfig {
6444
+ export interface CreateInvalidationForDistributionTenantRequest {
5820
6445
  /**
5821
- * <p>A name to identify the key group.</p>
6446
+ * <p>The ID of the distribution tenant.</p>
5822
6447
  * @public
5823
6448
  */
5824
- Name: string | undefined;
6449
+ Id: string | undefined;
5825
6450
  /**
5826
- * <p>A list of the identifiers of the public keys in the key group.</p>
6451
+ * <p>An invalidation batch.</p>
5827
6452
  * @public
5828
6453
  */
5829
- Items: string[] | undefined;
5830
- /**
5831
- * <p>A comment to describe the key group. The comment cannot be longer than 128
5832
- * characters.</p>
5833
- * @public
6454
+ InvalidationBatch: InvalidationBatch | undefined;
6455
+ }
6456
+ /**
6457
+ * @public
6458
+ */
6459
+ export interface CreateInvalidationForDistributionTenantResult {
6460
+ /**
6461
+ * <p>The location for the invalidation.</p>
6462
+ * @public
6463
+ */
6464
+ Location?: string | undefined;
6465
+ /**
6466
+ * <p>An invalidation.</p>
6467
+ * @public
6468
+ */
6469
+ Invalidation?: Invalidation | undefined;
6470
+ }
6471
+ /**
6472
+ * <p>A key group configuration.</p>
6473
+ * <p>A key group contains a list of public keys that you can use with <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html">CloudFront signed URLs and signed cookies</a>.</p>
6474
+ * @public
6475
+ */
6476
+ export interface KeyGroupConfig {
6477
+ /**
6478
+ * <p>A name to identify the key group.</p>
6479
+ * @public
6480
+ */
6481
+ Name: string | undefined;
6482
+ /**
6483
+ * <p>A list of the identifiers of the public keys in the key group.</p>
6484
+ * @public
6485
+ */
6486
+ Items: string[] | undefined;
6487
+ /**
6488
+ * <p>A comment to describe the key group. The comment cannot be longer than 128
6489
+ * characters.</p>
6490
+ * @public
5834
6491
  */
5835
6492
  Comment?: string | undefined;
5836
6493
  }
@@ -6283,702 +6940,6 @@ export declare class OriginAccessControlAlreadyExists extends __BaseException {
6283
6940
  */
6284
6941
  constructor(opts: __ExceptionOptionType<OriginAccessControlAlreadyExists, __BaseException>);
6285
6942
  }
6286
- /**
6287
- * <p>The number of origin access controls in your Amazon Web Services account exceeds the maximum
6288
- * allowed.</p>
6289
- * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
6290
- * <i>Amazon CloudFront Developer Guide</i>.</p>
6291
- * @public
6292
- */
6293
- export declare class TooManyOriginAccessControls extends __BaseException {
6294
- readonly name: "TooManyOriginAccessControls";
6295
- readonly $fault: "client";
6296
- Message?: string | undefined;
6297
- /**
6298
- * @internal
6299
- */
6300
- constructor(opts: __ExceptionOptionType<TooManyOriginAccessControls, __BaseException>);
6301
- }
6302
- /**
6303
- * @public
6304
- * @enum
6305
- */
6306
- export declare const OriginRequestPolicyCookieBehavior: {
6307
- readonly all: "all";
6308
- readonly allExcept: "allExcept";
6309
- readonly none: "none";
6310
- readonly whitelist: "whitelist";
6311
- };
6312
- /**
6313
- * @public
6314
- */
6315
- export type OriginRequestPolicyCookieBehavior = (typeof OriginRequestPolicyCookieBehavior)[keyof typeof OriginRequestPolicyCookieBehavior];
6316
- /**
6317
- * <p>An object that determines whether any cookies in viewer requests (and if so, which
6318
- * cookies) are included in requests that CloudFront sends to the origin.</p>
6319
- * @public
6320
- */
6321
- export interface OriginRequestPolicyCookiesConfig {
6322
- /**
6323
- * <p>Determines whether cookies in viewer requests are included in requests that CloudFront sends
6324
- * to the origin. Valid values are:</p>
6325
- * <ul>
6326
- * <li>
6327
- * <p>
6328
- * <code>none</code> – No cookies in viewer requests are included in requests that CloudFront sends
6329
- * to the origin. Even when this field is set to <code>none</code>, any cookies
6330
- * that are listed in a <code>CachePolicy</code>
6331
- * <i>are</i> included
6332
- * in origin requests.</p>
6333
- * </li>
6334
- * <li>
6335
- * <p>
6336
- * <code>whitelist</code> – Only the cookies in viewer requests that are listed in the
6337
- * <code>CookieNames</code> type are included in requests that CloudFront sends to the
6338
- * origin.</p>
6339
- * </li>
6340
- * <li>
6341
- * <p>
6342
- * <code>all</code> – All cookies in viewer requests are included in requests
6343
- * that CloudFront sends to the origin.</p>
6344
- * </li>
6345
- * <li>
6346
- * <p>
6347
- * <code>allExcept</code> – All cookies in viewer requests are included in
6348
- * requests that CloudFront sends to the origin, <i>
6349
- * <b>except</b>
6350
- * </i> for those listed in the <code>CookieNames</code>
6351
- * type, which are not included.</p>
6352
- * </li>
6353
- * </ul>
6354
- * @public
6355
- */
6356
- CookieBehavior: OriginRequestPolicyCookieBehavior | undefined;
6357
- /**
6358
- * <p>Contains a list of cookie names.</p>
6359
- * @public
6360
- */
6361
- Cookies?: CookieNames | undefined;
6362
- }
6363
- /**
6364
- * @public
6365
- * @enum
6366
- */
6367
- export declare const OriginRequestPolicyHeaderBehavior: {
6368
- readonly allExcept: "allExcept";
6369
- readonly allViewer: "allViewer";
6370
- readonly allViewerAndWhitelistCloudFront: "allViewerAndWhitelistCloudFront";
6371
- readonly none: "none";
6372
- readonly whitelist: "whitelist";
6373
- };
6374
- /**
6375
- * @public
6376
- */
6377
- export type OriginRequestPolicyHeaderBehavior = (typeof OriginRequestPolicyHeaderBehavior)[keyof typeof OriginRequestPolicyHeaderBehavior];
6378
- /**
6379
- * <p>An object that determines whether any HTTP headers (and if so, which headers) are
6380
- * included in requests that CloudFront sends to the origin.</p>
6381
- * @public
6382
- */
6383
- export interface OriginRequestPolicyHeadersConfig {
6384
- /**
6385
- * <p>Determines whether any HTTP headers are included in requests that CloudFront sends to the
6386
- * origin. Valid values are:</p>
6387
- * <ul>
6388
- * <li>
6389
- * <p>
6390
- * <code>none</code> – No HTTP headers in viewer requests are included in requests that CloudFront
6391
- * sends to the origin. Even when this field is set to <code>none</code>, any
6392
- * headers that are listed in a <code>CachePolicy</code>
6393
- * <i>are</i>
6394
- * included in origin requests.</p>
6395
- * </li>
6396
- * <li>
6397
- * <p>
6398
- * <code>whitelist</code> – Only the HTTP headers that are listed in the <code>Headers</code>
6399
- * type are included in requests that CloudFront sends to the origin.</p>
6400
- * </li>
6401
- * <li>
6402
- * <p>
6403
- * <code>allViewer</code> – All HTTP headers in viewer requests are included in
6404
- * requests that CloudFront sends to the origin.</p>
6405
- * </li>
6406
- * <li>
6407
- * <p>
6408
- * <code>allViewerAndWhitelistCloudFront</code> – All HTTP headers in viewer
6409
- * requests and the additional CloudFront headers that are listed in the
6410
- * <code>Headers</code> type are included in requests that CloudFront sends to the
6411
- * origin. The additional headers are added by CloudFront.</p>
6412
- * </li>
6413
- * <li>
6414
- * <p>
6415
- * <code>allExcept</code> – All HTTP headers in viewer requests are included in
6416
- * requests that CloudFront sends to the origin, <i>
6417
- * <b>except</b>
6418
- * </i> for those listed in the <code>Headers</code> type,
6419
- * which are not included.</p>
6420
- * </li>
6421
- * </ul>
6422
- * @public
6423
- */
6424
- HeaderBehavior: OriginRequestPolicyHeaderBehavior | undefined;
6425
- /**
6426
- * <p>Contains a list of HTTP header names.</p>
6427
- * @public
6428
- */
6429
- Headers?: Headers | undefined;
6430
- }
6431
- /**
6432
- * @public
6433
- * @enum
6434
- */
6435
- export declare const OriginRequestPolicyQueryStringBehavior: {
6436
- readonly all: "all";
6437
- readonly allExcept: "allExcept";
6438
- readonly none: "none";
6439
- readonly whitelist: "whitelist";
6440
- };
6441
- /**
6442
- * @public
6443
- */
6444
- export type OriginRequestPolicyQueryStringBehavior = (typeof OriginRequestPolicyQueryStringBehavior)[keyof typeof OriginRequestPolicyQueryStringBehavior];
6445
- /**
6446
- * <p>An object that determines whether any URL query strings in viewer requests (and if so,
6447
- * which query strings) are included in requests that CloudFront sends to the origin.</p>
6448
- * @public
6449
- */
6450
- export interface OriginRequestPolicyQueryStringsConfig {
6451
- /**
6452
- * <p>Determines whether any URL query strings in viewer requests are included in requests
6453
- * that CloudFront sends to the origin. Valid values are:</p>
6454
- * <ul>
6455
- * <li>
6456
- * <p>
6457
- * <code>none</code> – No query strings in viewer requests are included in requests that CloudFront
6458
- * sends to the origin. Even when this field is set to <code>none</code>, any query
6459
- * strings that are listed in a <code>CachePolicy</code>
6460
- * <i>are</i>
6461
- * included in origin requests.</p>
6462
- * </li>
6463
- * <li>
6464
- * <p>
6465
- * <code>whitelist</code> – Only the query strings in viewer requests that are listed in the
6466
- * <code>QueryStringNames</code> type are included in requests that CloudFront sends to
6467
- * the origin.</p>
6468
- * </li>
6469
- * <li>
6470
- * <p>
6471
- * <code>all</code> – All query strings in viewer requests are included in requests that CloudFront
6472
- * sends to the origin.</p>
6473
- * </li>
6474
- * <li>
6475
- * <p>
6476
- * <code>allExcept</code> – All query strings in viewer requests are included in
6477
- * requests that CloudFront sends to the origin, <i>
6478
- * <b>except</b>
6479
- * </i> for those listed in the
6480
- * <code>QueryStringNames</code> type, which are not included.</p>
6481
- * </li>
6482
- * </ul>
6483
- * @public
6484
- */
6485
- QueryStringBehavior: OriginRequestPolicyQueryStringBehavior | undefined;
6486
- /**
6487
- * <p>Contains the specific query strings in viewer requests that either <i>
6488
- * <b>are</b>
6489
- * </i> or <i>
6490
- * <b>are
6491
- * not</b>
6492
- * </i> included in requests that CloudFront sends to the origin. The
6493
- * behavior depends on whether the <code>QueryStringBehavior</code> field in the
6494
- * <code>OriginRequestPolicyQueryStringsConfig</code> type is set to <code>whitelist</code>
6495
- * (the listed query strings <i>
6496
- * <b>are</b>
6497
- * </i>
6498
- * included) or <code>allExcept</code> (the listed query strings <i>
6499
- * <b>are not</b>
6500
- * </i> included, but all other query strings
6501
- * are).</p>
6502
- * @public
6503
- */
6504
- QueryStrings?: QueryStringNames | undefined;
6505
- }
6506
- /**
6507
- * <p>An origin request policy configuration.</p>
6508
- * <p>This configuration determines the values that CloudFront includes in requests that it sends
6509
- * to the origin. Each request that CloudFront sends to the origin includes the following:</p>
6510
- * <ul>
6511
- * <li>
6512
- * <p>The request body and the URL path (without the domain name) from the viewer
6513
- * request.</p>
6514
- * </li>
6515
- * <li>
6516
- * <p>The headers that CloudFront automatically includes in every origin request,
6517
- * including <code>Host</code>, <code>User-Agent</code>, and
6518
- * <code>X-Amz-Cf-Id</code>.</p>
6519
- * </li>
6520
- * <li>
6521
- * <p>All HTTP headers, cookies, and URL query strings that are specified in the
6522
- * cache policy or the origin request policy. These can include items from the
6523
- * viewer request and, in the case of headers, additional ones that are added by
6524
- * CloudFront.</p>
6525
- * </li>
6526
- * </ul>
6527
- * <p>CloudFront sends a request when it can't find an object in its cache that matches the
6528
- * request. If you want to send values to the origin and also include them in the cache
6529
- * key, use <code>CachePolicy</code>.</p>
6530
- * @public
6531
- */
6532
- export interface OriginRequestPolicyConfig {
6533
- /**
6534
- * <p>A comment to describe the origin request policy. The comment cannot be longer than 128
6535
- * characters.</p>
6536
- * @public
6537
- */
6538
- Comment?: string | undefined;
6539
- /**
6540
- * <p>A unique name to identify the origin request policy.</p>
6541
- * @public
6542
- */
6543
- Name: string | undefined;
6544
- /**
6545
- * <p>The HTTP headers to include in origin requests. These can include headers from viewer
6546
- * requests and additional headers added by CloudFront.</p>
6547
- * @public
6548
- */
6549
- HeadersConfig: OriginRequestPolicyHeadersConfig | undefined;
6550
- /**
6551
- * <p>The cookies from viewer requests to include in origin requests.</p>
6552
- * @public
6553
- */
6554
- CookiesConfig: OriginRequestPolicyCookiesConfig | undefined;
6555
- /**
6556
- * <p>The URL query strings from viewer requests to include in origin requests.</p>
6557
- * @public
6558
- */
6559
- QueryStringsConfig: OriginRequestPolicyQueryStringsConfig | undefined;
6560
- }
6561
- /**
6562
- * @public
6563
- */
6564
- export interface CreateOriginRequestPolicyRequest {
6565
- /**
6566
- * <p>An origin request policy configuration.</p>
6567
- * @public
6568
- */
6569
- OriginRequestPolicyConfig: OriginRequestPolicyConfig | undefined;
6570
- }
6571
- /**
6572
- * <p>An origin request policy.</p>
6573
- * <p>When it's attached to a cache behavior, the origin request policy determines the
6574
- * values that CloudFront includes in requests that it sends to the origin. Each request that
6575
- * CloudFront sends to the origin includes the following:</p>
6576
- * <ul>
6577
- * <li>
6578
- * <p>The request body and the URL path (without the domain name) from the viewer
6579
- * request.</p>
6580
- * </li>
6581
- * <li>
6582
- * <p>The headers that CloudFront automatically includes in every origin request,
6583
- * including <code>Host</code>, <code>User-Agent</code>, and
6584
- * <code>X-Amz-Cf-Id</code>.</p>
6585
- * </li>
6586
- * <li>
6587
- * <p>All HTTP headers, cookies, and URL query strings that are specified in the
6588
- * cache policy or the origin request policy. These can include items from the
6589
- * viewer request and, in the case of headers, additional ones that are added by
6590
- * CloudFront.</p>
6591
- * </li>
6592
- * </ul>
6593
- * <p>CloudFront sends a request when it can't find an object in its cache that matches the
6594
- * request. If you want to send values to the origin and also include them in the cache
6595
- * key, use <code>CachePolicy</code>.</p>
6596
- * @public
6597
- */
6598
- export interface OriginRequestPolicy {
6599
- /**
6600
- * <p>The unique identifier for the origin request policy.</p>
6601
- * @public
6602
- */
6603
- Id: string | undefined;
6604
- /**
6605
- * <p>The date and time when the origin request policy was last modified.</p>
6606
- * @public
6607
- */
6608
- LastModifiedTime: Date | undefined;
6609
- /**
6610
- * <p>The origin request policy configuration.</p>
6611
- * @public
6612
- */
6613
- OriginRequestPolicyConfig: OriginRequestPolicyConfig | undefined;
6614
- }
6615
- /**
6616
- * @public
6617
- */
6618
- export interface CreateOriginRequestPolicyResult {
6619
- /**
6620
- * <p>An origin request policy.</p>
6621
- * @public
6622
- */
6623
- OriginRequestPolicy?: OriginRequestPolicy | undefined;
6624
- /**
6625
- * <p>The fully qualified URI of the origin request policy just created.</p>
6626
- * @public
6627
- */
6628
- Location?: string | undefined;
6629
- /**
6630
- * <p>The current version of the origin request policy.</p>
6631
- * @public
6632
- */
6633
- ETag?: string | undefined;
6634
- }
6635
- /**
6636
- * <p>An origin request policy with this name already exists. You must provide a unique
6637
- * name. To modify an existing origin request policy, use
6638
- * <code>UpdateOriginRequestPolicy</code>.</p>
6639
- * @public
6640
- */
6641
- export declare class OriginRequestPolicyAlreadyExists extends __BaseException {
6642
- readonly name: "OriginRequestPolicyAlreadyExists";
6643
- readonly $fault: "client";
6644
- Message?: string | undefined;
6645
- /**
6646
- * @internal
6647
- */
6648
- constructor(opts: __ExceptionOptionType<OriginRequestPolicyAlreadyExists, __BaseException>);
6649
- }
6650
- /**
6651
- * <p>The number of cookies in the origin request policy exceeds the maximum. For more
6652
- * information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
6653
- * <i>Amazon CloudFront Developer Guide</i>.</p>
6654
- * @public
6655
- */
6656
- export declare class TooManyCookiesInOriginRequestPolicy extends __BaseException {
6657
- readonly name: "TooManyCookiesInOriginRequestPolicy";
6658
- readonly $fault: "client";
6659
- Message?: string | undefined;
6660
- /**
6661
- * @internal
6662
- */
6663
- constructor(opts: __ExceptionOptionType<TooManyCookiesInOriginRequestPolicy, __BaseException>);
6664
- }
6665
- /**
6666
- * <p>The number of headers in the origin request policy exceeds the maximum. For more
6667
- * information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
6668
- * <i>Amazon CloudFront Developer Guide</i>.</p>
6669
- * @public
6670
- */
6671
- export declare class TooManyHeadersInOriginRequestPolicy extends __BaseException {
6672
- readonly name: "TooManyHeadersInOriginRequestPolicy";
6673
- readonly $fault: "client";
6674
- Message?: string | undefined;
6675
- /**
6676
- * @internal
6677
- */
6678
- constructor(opts: __ExceptionOptionType<TooManyHeadersInOriginRequestPolicy, __BaseException>);
6679
- }
6680
- /**
6681
- * <p>You have reached the maximum number of origin request policies for this Amazon Web Services account.
6682
- * For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
6683
- * <i>Amazon CloudFront Developer Guide</i>.</p>
6684
- * @public
6685
- */
6686
- export declare class TooManyOriginRequestPolicies extends __BaseException {
6687
- readonly name: "TooManyOriginRequestPolicies";
6688
- readonly $fault: "client";
6689
- Message?: string | undefined;
6690
- /**
6691
- * @internal
6692
- */
6693
- constructor(opts: __ExceptionOptionType<TooManyOriginRequestPolicies, __BaseException>);
6694
- }
6695
- /**
6696
- * <p>The number of query strings in the origin request policy exceeds the maximum. For more
6697
- * information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
6698
- * <i>Amazon CloudFront Developer Guide</i>.</p>
6699
- * @public
6700
- */
6701
- export declare class TooManyQueryStringsInOriginRequestPolicy extends __BaseException {
6702
- readonly name: "TooManyQueryStringsInOriginRequestPolicy";
6703
- readonly $fault: "client";
6704
- Message?: string | undefined;
6705
- /**
6706
- * @internal
6707
- */
6708
- constructor(opts: __ExceptionOptionType<TooManyQueryStringsInOriginRequestPolicy, __BaseException>);
6709
- }
6710
- /**
6711
- * <p>Configuration information about a public key 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>
6712
- * @public
6713
- */
6714
- export interface PublicKeyConfig {
6715
- /**
6716
- * <p>A string included in the request to help make sure that the request can't be
6717
- * replayed.</p>
6718
- * @public
6719
- */
6720
- CallerReference: string | undefined;
6721
- /**
6722
- * <p>A name to help identify the public key.</p>
6723
- * @public
6724
- */
6725
- Name: string | undefined;
6726
- /**
6727
- * <p>The public key 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>
6728
- * @public
6729
- */
6730
- EncodedKey: string | undefined;
6731
- /**
6732
- * <p>A comment to describe the public key. The comment cannot be longer than 128
6733
- * characters.</p>
6734
- * @public
6735
- */
6736
- Comment?: string | undefined;
6737
- }
6738
- /**
6739
- * @public
6740
- */
6741
- export interface CreatePublicKeyRequest {
6742
- /**
6743
- * <p>A CloudFront public key configuration.</p>
6744
- * @public
6745
- */
6746
- PublicKeyConfig: PublicKeyConfig | undefined;
6747
- }
6748
- /**
6749
- * <p>A public key 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>
6750
- * @public
6751
- */
6752
- export interface PublicKey {
6753
- /**
6754
- * <p>The identifier of the public key.</p>
6755
- * @public
6756
- */
6757
- Id: string | undefined;
6758
- /**
6759
- * <p>The date and time when the public key was uploaded.</p>
6760
- * @public
6761
- */
6762
- CreatedTime: Date | undefined;
6763
- /**
6764
- * <p>Configuration information about a public key 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>
6765
- * @public
6766
- */
6767
- PublicKeyConfig: PublicKeyConfig | undefined;
6768
- }
6769
- /**
6770
- * @public
6771
- */
6772
- export interface CreatePublicKeyResult {
6773
- /**
6774
- * <p>The public key.</p>
6775
- * @public
6776
- */
6777
- PublicKey?: PublicKey | undefined;
6778
- /**
6779
- * <p>The URL of the public key.</p>
6780
- * @public
6781
- */
6782
- Location?: string | undefined;
6783
- /**
6784
- * <p>The identifier for this version of the public key.</p>
6785
- * @public
6786
- */
6787
- ETag?: string | undefined;
6788
- }
6789
- /**
6790
- * <p>The specified public key already exists.</p>
6791
- * @public
6792
- */
6793
- export declare class PublicKeyAlreadyExists extends __BaseException {
6794
- readonly name: "PublicKeyAlreadyExists";
6795
- readonly $fault: "client";
6796
- Message?: string | undefined;
6797
- /**
6798
- * @internal
6799
- */
6800
- constructor(opts: __ExceptionOptionType<PublicKeyAlreadyExists, __BaseException>);
6801
- }
6802
- /**
6803
- * <p>The maximum number of public keys for field-level encryption have been created. To
6804
- * create a new public key, delete one of the existing keys.</p>
6805
- * @public
6806
- */
6807
- export declare class TooManyPublicKeys extends __BaseException {
6808
- readonly name: "TooManyPublicKeys";
6809
- readonly $fault: "client";
6810
- Message?: string | undefined;
6811
- /**
6812
- * @internal
6813
- */
6814
- constructor(opts: __ExceptionOptionType<TooManyPublicKeys, __BaseException>);
6815
- }
6816
- /**
6817
- * <p>Contains information about the Amazon Kinesis data stream where you are sending real-time
6818
- * log data.</p>
6819
- * @public
6820
- */
6821
- export interface KinesisStreamConfig {
6822
- /**
6823
- * <p>The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that CloudFront can use to
6824
- * send real-time log data to your Kinesis data stream.</p>
6825
- * <p>For more information the IAM role, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/real-time-logs.html#understand-real-time-log-config-iam-role">Real-time log configuration IAM role</a> in the
6826
- * <i>Amazon CloudFront Developer Guide</i>.</p>
6827
- * @public
6828
- */
6829
- RoleARN: string | undefined;
6830
- /**
6831
- * <p>The Amazon Resource Name (ARN) of the Kinesis data stream where you are sending
6832
- * real-time log data.</p>
6833
- * @public
6834
- */
6835
- StreamARN: string | undefined;
6836
- }
6837
- /**
6838
- * <p>Contains information about the Amazon Kinesis data stream where you are sending real-time
6839
- * log data in a real-time log configuration.</p>
6840
- * @public
6841
- */
6842
- export interface EndPoint {
6843
- /**
6844
- * <p>The type of data stream where you are sending real-time log data. The only valid value
6845
- * is <code>Kinesis</code>.</p>
6846
- * @public
6847
- */
6848
- StreamType: string | undefined;
6849
- /**
6850
- * <p>Contains information about the Amazon Kinesis data stream where you are sending real-time
6851
- * log data.</p>
6852
- * @public
6853
- */
6854
- KinesisStreamConfig?: KinesisStreamConfig | undefined;
6855
- }
6856
- /**
6857
- * @public
6858
- */
6859
- export interface CreateRealtimeLogConfigRequest {
6860
- /**
6861
- * <p>Contains information about the Amazon Kinesis data stream where you are sending real-time
6862
- * log data.</p>
6863
- * @public
6864
- */
6865
- EndPoints: EndPoint[] | undefined;
6866
- /**
6867
- * <p>A list of fields to include in each real-time log record.</p>
6868
- * <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
6869
- * <i>Amazon CloudFront Developer Guide</i>.</p>
6870
- * @public
6871
- */
6872
- Fields: string[] | undefined;
6873
- /**
6874
- * <p>A unique name to identify this real-time log configuration.</p>
6875
- * @public
6876
- */
6877
- Name: string | undefined;
6878
- /**
6879
- * <p>The sampling rate for this real-time log configuration. You can specify a whole number between 1 and 100 (inclusive) to determine the percentage of viewer requests that are represented in the real-time log data.</p>
6880
- * @public
6881
- */
6882
- SamplingRate: number | undefined;
6883
- }
6884
- /**
6885
- * <p>A real-time log configuration.</p>
6886
- * @public
6887
- */
6888
- export interface RealtimeLogConfig {
6889
- /**
6890
- * <p>The Amazon Resource Name (ARN) of this real-time log configuration.</p>
6891
- * @public
6892
- */
6893
- ARN: string | undefined;
6894
- /**
6895
- * <p>The unique name of this real-time log configuration.</p>
6896
- * @public
6897
- */
6898
- Name: string | undefined;
6899
- /**
6900
- * <p>The sampling rate for this real-time log configuration. The sampling rate determines
6901
- * the percentage of viewer requests that are represented in the real-time log data. The
6902
- * sampling rate is an integer between 1 and 100, inclusive.</p>
6903
- * @public
6904
- */
6905
- SamplingRate: number | undefined;
6906
- /**
6907
- * <p>Contains information about the Amazon Kinesis data stream where you are sending real-time
6908
- * log data for this real-time log configuration.</p>
6909
- * @public
6910
- */
6911
- EndPoints: EndPoint[] | undefined;
6912
- /**
6913
- * <p>A list of fields that are included in each real-time log record. In an API response,
6914
- * the fields are provided in the same order in which they are sent to the Amazon Kinesis data
6915
- * stream.</p>
6916
- * <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
6917
- * <i>Amazon CloudFront Developer Guide</i>.</p>
6918
- * @public
6919
- */
6920
- Fields: string[] | undefined;
6921
- }
6922
- /**
6923
- * @public
6924
- */
6925
- export interface CreateRealtimeLogConfigResult {
6926
- /**
6927
- * <p>A real-time log configuration.</p>
6928
- * @public
6929
- */
6930
- RealtimeLogConfig?: RealtimeLogConfig | undefined;
6931
- }
6932
- /**
6933
- * <p>A real-time log configuration with this name already exists. You must provide a unique
6934
- * name. To modify an existing real-time log configuration, use
6935
- * <code>UpdateRealtimeLogConfig</code>.</p>
6936
- * @public
6937
- */
6938
- export declare class RealtimeLogConfigAlreadyExists extends __BaseException {
6939
- readonly name: "RealtimeLogConfigAlreadyExists";
6940
- readonly $fault: "client";
6941
- Message?: string | undefined;
6942
- /**
6943
- * @internal
6944
- */
6945
- constructor(opts: __ExceptionOptionType<RealtimeLogConfigAlreadyExists, __BaseException>);
6946
- }
6947
- /**
6948
- * <p>You have reached the maximum number of real-time log configurations for this
6949
- * Amazon Web Services account. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/cloudfront-limits.html">Quotas</a> (formerly known as limits) in the
6950
- * <i>Amazon CloudFront Developer Guide</i>.</p>
6951
- * @public
6952
- */
6953
- export declare class TooManyRealtimeLogConfigs extends __BaseException {
6954
- readonly name: "TooManyRealtimeLogConfigs";
6955
- readonly $fault: "client";
6956
- Message?: string | undefined;
6957
- /**
6958
- * @internal
6959
- */
6960
- constructor(opts: __ExceptionOptionType<TooManyRealtimeLogConfigs, __BaseException>);
6961
- }
6962
- /**
6963
- * <p>A list of HTTP header names that CloudFront includes as values for the
6964
- * <code>Access-Control-Allow-Headers</code> HTTP response header.</p>
6965
- * <p>For more information about the <code>Access-Control-Allow-Headers</code> HTTP response
6966
- * header, see <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Access-Control-Allow-Headers">Access-Control-Allow-Headers</a> in the MDN Web Docs.</p>
6967
- * @public
6968
- */
6969
- export interface ResponseHeadersPolicyAccessControlAllowHeaders {
6970
- /**
6971
- * <p>The number of HTTP header names in the list.</p>
6972
- * @public
6973
- */
6974
- Quantity: number | undefined;
6975
- /**
6976
- * <p>The list of HTTP header names. You can specify <code>*</code> to allow all
6977
- * headers.</p>
6978
- * @public
6979
- */
6980
- Items: string[] | undefined;
6981
- }
6982
6943
  /**
6983
6944
  * @internal
6984
6945
  */