@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
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CloudFrontClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CloudFrontClient";
8
+ import {
9
+ VerifyDnsConfigurationRequest,
10
+ VerifyDnsConfigurationResult,
11
+ } from "../models/models_2";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface VerifyDnsConfigurationCommandInput
15
+ extends VerifyDnsConfigurationRequest {}
16
+ export interface VerifyDnsConfigurationCommandOutput
17
+ extends VerifyDnsConfigurationResult,
18
+ __MetadataBearer {}
19
+ declare const VerifyDnsConfigurationCommand_base: {
20
+ new (
21
+ input: VerifyDnsConfigurationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ VerifyDnsConfigurationCommandInput,
24
+ VerifyDnsConfigurationCommandOutput,
25
+ CloudFrontClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: VerifyDnsConfigurationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ VerifyDnsConfigurationCommandInput,
33
+ VerifyDnsConfigurationCommandOutput,
34
+ CloudFrontClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class VerifyDnsConfigurationCommand extends VerifyDnsConfigurationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: VerifyDnsConfigurationRequest;
44
+ output: VerifyDnsConfigurationResult;
45
+ };
46
+ sdk: {
47
+ input: VerifyDnsConfigurationCommandInput;
48
+ output: VerifyDnsConfigurationCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -1,15 +1,20 @@
1
1
  export * from "./AssociateAliasCommand";
2
+ export * from "./AssociateDistributionTenantWebACLCommand";
3
+ export * from "./AssociateDistributionWebACLCommand";
2
4
  export * from "./CopyDistributionCommand";
3
5
  export * from "./CreateAnycastIpListCommand";
4
6
  export * from "./CreateCachePolicyCommand";
5
7
  export * from "./CreateCloudFrontOriginAccessIdentityCommand";
8
+ export * from "./CreateConnectionGroupCommand";
6
9
  export * from "./CreateContinuousDeploymentPolicyCommand";
7
10
  export * from "./CreateDistributionCommand";
11
+ export * from "./CreateDistributionTenantCommand";
8
12
  export * from "./CreateDistributionWithTagsCommand";
9
13
  export * from "./CreateFieldLevelEncryptionConfigCommand";
10
14
  export * from "./CreateFieldLevelEncryptionProfileCommand";
11
15
  export * from "./CreateFunctionCommand";
12
16
  export * from "./CreateInvalidationCommand";
17
+ export * from "./CreateInvalidationForDistributionTenantCommand";
13
18
  export * from "./CreateKeyGroupCommand";
14
19
  export * from "./CreateKeyValueStoreCommand";
15
20
  export * from "./CreateMonitoringSubscriptionCommand";
@@ -24,8 +29,10 @@ export * from "./CreateVpcOriginCommand";
24
29
  export * from "./DeleteAnycastIpListCommand";
25
30
  export * from "./DeleteCachePolicyCommand";
26
31
  export * from "./DeleteCloudFrontOriginAccessIdentityCommand";
32
+ export * from "./DeleteConnectionGroupCommand";
27
33
  export * from "./DeleteContinuousDeploymentPolicyCommand";
28
34
  export * from "./DeleteDistributionCommand";
35
+ export * from "./DeleteDistributionTenantCommand";
29
36
  export * from "./DeleteFieldLevelEncryptionConfigCommand";
30
37
  export * from "./DeleteFieldLevelEncryptionProfileCommand";
31
38
  export * from "./DeleteFunctionCommand";
@@ -41,23 +48,31 @@ export * from "./DeleteStreamingDistributionCommand";
41
48
  export * from "./DeleteVpcOriginCommand";
42
49
  export * from "./DescribeFunctionCommand";
43
50
  export * from "./DescribeKeyValueStoreCommand";
51
+ export * from "./DisassociateDistributionTenantWebACLCommand";
52
+ export * from "./DisassociateDistributionWebACLCommand";
44
53
  export * from "./GetAnycastIpListCommand";
45
54
  export * from "./GetCachePolicyCommand";
46
55
  export * from "./GetCachePolicyConfigCommand";
47
56
  export * from "./GetCloudFrontOriginAccessIdentityCommand";
48
57
  export * from "./GetCloudFrontOriginAccessIdentityConfigCommand";
58
+ export * from "./GetConnectionGroupByRoutingEndpointCommand";
59
+ export * from "./GetConnectionGroupCommand";
49
60
  export * from "./GetContinuousDeploymentPolicyCommand";
50
61
  export * from "./GetContinuousDeploymentPolicyConfigCommand";
51
62
  export * from "./GetDistributionCommand";
52
63
  export * from "./GetDistributionConfigCommand";
64
+ export * from "./GetDistributionTenantByDomainCommand";
65
+ export * from "./GetDistributionTenantCommand";
53
66
  export * from "./GetFieldLevelEncryptionCommand";
54
67
  export * from "./GetFieldLevelEncryptionConfigCommand";
55
68
  export * from "./GetFieldLevelEncryptionProfileCommand";
56
69
  export * from "./GetFieldLevelEncryptionProfileConfigCommand";
57
70
  export * from "./GetFunctionCommand";
58
71
  export * from "./GetInvalidationCommand";
72
+ export * from "./GetInvalidationForDistributionTenantCommand";
59
73
  export * from "./GetKeyGroupCommand";
60
74
  export * from "./GetKeyGroupConfigCommand";
75
+ export * from "./GetManagedCertificateDetailsCommand";
61
76
  export * from "./GetMonitoringSubscriptionCommand";
62
77
  export * from "./GetOriginAccessControlCommand";
63
78
  export * from "./GetOriginAccessControlConfigCommand";
@@ -75,20 +90,26 @@ export * from "./ListAnycastIpListsCommand";
75
90
  export * from "./ListCachePoliciesCommand";
76
91
  export * from "./ListCloudFrontOriginAccessIdentitiesCommand";
77
92
  export * from "./ListConflictingAliasesCommand";
93
+ export * from "./ListConnectionGroupsCommand";
78
94
  export * from "./ListContinuousDeploymentPoliciesCommand";
79
95
  export * from "./ListDistributionsByAnycastIpListIdCommand";
96
+ export * from "./ListDistributionTenantsCommand";
80
97
  export * from "./ListDistributionsByCachePolicyIdCommand";
98
+ export * from "./ListDistributionTenantsByCustomizationCommand";
99
+ export * from "./ListDistributionsByConnectionModeCommand";
81
100
  export * from "./ListDistributionsByKeyGroupCommand";
82
101
  export * from "./ListDistributionsByOriginRequestPolicyIdCommand";
83
102
  export * from "./ListDistributionsByRealtimeLogConfigCommand";
84
103
  export * from "./ListDistributionsByResponseHeadersPolicyIdCommand";
85
104
  export * from "./ListDistributionsByVpcOriginIdCommand";
86
- export * from "./ListDistributionsByWebACLIdCommand";
87
105
  export * from "./ListDistributionsCommand";
106
+ export * from "./ListDistributionsByWebACLIdCommand";
107
+ export * from "./ListDomainConflictsCommand";
88
108
  export * from "./ListFieldLevelEncryptionConfigsCommand";
89
109
  export * from "./ListFieldLevelEncryptionProfilesCommand";
90
110
  export * from "./ListFunctionsCommand";
91
111
  export * from "./ListInvalidationsCommand";
112
+ export * from "./ListInvalidationsForDistributionTenantCommand";
92
113
  export * from "./ListKeyGroupsCommand";
93
114
  export * from "./ListKeyValueStoresCommand";
94
115
  export * from "./ListOriginAccessControlsCommand";
@@ -105,9 +126,12 @@ export * from "./TestFunctionCommand";
105
126
  export * from "./UntagResourceCommand";
106
127
  export * from "./UpdateCachePolicyCommand";
107
128
  export * from "./UpdateCloudFrontOriginAccessIdentityCommand";
129
+ export * from "./UpdateConnectionGroupCommand";
108
130
  export * from "./UpdateContinuousDeploymentPolicyCommand";
109
131
  export * from "./UpdateDistributionCommand";
132
+ export * from "./UpdateDistributionTenantCommand";
110
133
  export * from "./UpdateDistributionWithStagingConfigCommand";
134
+ export * from "./UpdateDomainAssociationCommand";
111
135
  export * from "./UpdateFieldLevelEncryptionConfigCommand";
112
136
  export * from "./UpdateFieldLevelEncryptionProfileCommand";
113
137
  export * from "./UpdateFunctionCommand";
@@ -120,3 +144,4 @@ export * from "./UpdateRealtimeLogConfigCommand";
120
144
  export * from "./UpdateResponseHeadersPolicyCommand";
121
145
  export * from "./UpdateStreamingDistributionCommand";
122
146
  export * from "./UpdateVpcOriginCommand";
147
+ export * from "./VerifyDnsConfigurationCommand";
@@ -1,2 +1,3 @@
1
1
  export * from "./models_0";
2
2
  export * from "./models_1";
3
+ export * from "./models_2";
@@ -129,6 +129,46 @@ export declare class TooManyDistributionCNAMEs extends __BaseException {
129
129
  opts: __ExceptionOptionType<TooManyDistributionCNAMEs, __BaseException>
130
130
  );
131
131
  }
132
+ export interface AssociateDistributionTenantWebACLRequest {
133
+ Id: string | undefined;
134
+ WebACLArn: string | undefined;
135
+ IfMatch?: string | undefined;
136
+ }
137
+ export interface AssociateDistributionTenantWebACLResult {
138
+ Id?: string | undefined;
139
+ WebACLArn?: string | undefined;
140
+ ETag?: string | undefined;
141
+ }
142
+ export declare class EntityNotFound extends __BaseException {
143
+ readonly name: "EntityNotFound";
144
+ readonly $fault: "client";
145
+ Message?: string | undefined;
146
+ constructor(opts: __ExceptionOptionType<EntityNotFound, __BaseException>);
147
+ }
148
+ export declare class InvalidIfMatchVersion extends __BaseException {
149
+ readonly name: "InvalidIfMatchVersion";
150
+ readonly $fault: "client";
151
+ Message?: string | undefined;
152
+ constructor(
153
+ opts: __ExceptionOptionType<InvalidIfMatchVersion, __BaseException>
154
+ );
155
+ }
156
+ export declare class PreconditionFailed extends __BaseException {
157
+ readonly name: "PreconditionFailed";
158
+ readonly $fault: "client";
159
+ Message?: string | undefined;
160
+ constructor(opts: __ExceptionOptionType<PreconditionFailed, __BaseException>);
161
+ }
162
+ export interface AssociateDistributionWebACLRequest {
163
+ Id: string | undefined;
164
+ WebACLArn: string | undefined;
165
+ IfMatch?: string | undefined;
166
+ }
167
+ export interface AssociateDistributionWebACLResult {
168
+ Id?: string | undefined;
169
+ WebACLArn?: string | undefined;
170
+ ETag?: string | undefined;
171
+ }
132
172
  export declare class BatchTooLarge extends __BaseException {
133
173
  readonly name: "BatchTooLarge";
134
174
  readonly $fault: "client";
@@ -350,6 +390,9 @@ export declare class CannotUpdateEntityWhileInUse extends __BaseException {
350
390
  opts: __ExceptionOptionType<CannotUpdateEntityWhileInUse, __BaseException>
351
391
  );
352
392
  }
393
+ export interface Certificate {
394
+ Arn: string | undefined;
395
+ }
353
396
  export declare const CertificateSource: {
354
397
  readonly acm: "acm";
355
398
  readonly cloudfront: "cloudfront";
@@ -357,6 +400,12 @@ export declare const CertificateSource: {
357
400
  };
358
401
  export type CertificateSource =
359
402
  (typeof CertificateSource)[keyof typeof CertificateSource];
403
+ export declare const CertificateTransparencyLoggingPreference: {
404
+ readonly Disabled: "disabled";
405
+ readonly Enabled: "enabled";
406
+ };
407
+ export type CertificateTransparencyLoggingPreference =
408
+ (typeof CertificateTransparencyLoggingPreference)[keyof typeof CertificateTransparencyLoggingPreference];
360
409
  export declare class CNAMEAlreadyExists extends __BaseException {
361
410
  readonly name: "CNAMEAlreadyExists";
362
411
  readonly $fault: "client";
@@ -370,6 +419,12 @@ export interface CopyDistributionRequest {
370
419
  CallerReference: string | undefined;
371
420
  Enabled?: boolean | undefined;
372
421
  }
422
+ export declare const ConnectionMode: {
423
+ readonly Direct: "direct";
424
+ readonly TenantOnly: "tenant-only";
425
+ };
426
+ export type ConnectionMode =
427
+ (typeof ConnectionMode)[keyof typeof ConnectionMode];
373
428
  export interface CustomErrorResponse {
374
429
  ErrorCode: number | undefined;
375
430
  ResponsePagePath?: string | undefined;
@@ -508,6 +563,7 @@ export interface Origins {
508
563
  Items: Origin[] | undefined;
509
564
  }
510
565
  export declare const PriceClass: {
566
+ readonly None: "None";
511
567
  readonly PriceClass_100: "PriceClass_100";
512
568
  readonly PriceClass_200: "PriceClass_200";
513
569
  readonly PriceClass_All: "PriceClass_All";
@@ -528,6 +584,21 @@ export interface GeoRestriction {
528
584
  export interface Restrictions {
529
585
  GeoRestriction: GeoRestriction | undefined;
530
586
  }
587
+ export interface StringSchemaConfig {
588
+ Comment?: string | undefined;
589
+ DefaultValue?: string | undefined;
590
+ Required: boolean | undefined;
591
+ }
592
+ export interface ParameterDefinitionSchema {
593
+ StringSchema?: StringSchemaConfig | undefined;
594
+ }
595
+ export interface ParameterDefinition {
596
+ Name: string | undefined;
597
+ Definition: ParameterDefinitionSchema | undefined;
598
+ }
599
+ export interface TenantConfig {
600
+ ParameterDefinitions?: ParameterDefinition[] | undefined;
601
+ }
531
602
  export declare const MinimumProtocolVersion: {
532
603
  readonly SSLv3: "SSLv3";
533
604
  readonly TLSv1: "TLSv1";
@@ -576,6 +647,8 @@ export interface DistributionConfig {
576
647
  ContinuousDeploymentPolicyId?: string | undefined;
577
648
  Staging?: boolean | undefined;
578
649
  AnycastIpListId?: string | undefined;
650
+ TenantConfig?: TenantConfig | undefined;
651
+ ConnectionMode?: ConnectionMode | undefined;
579
652
  }
580
653
  export interface Distribution {
581
654
  Id: string | undefined;
@@ -667,14 +740,6 @@ export declare class InvalidHeadersForS3Origin extends __BaseException {
667
740
  opts: __ExceptionOptionType<InvalidHeadersForS3Origin, __BaseException>
668
741
  );
669
742
  }
670
- export declare class InvalidIfMatchVersion extends __BaseException {
671
- readonly name: "InvalidIfMatchVersion";
672
- readonly $fault: "client";
673
- Message?: string | undefined;
674
- constructor(
675
- opts: __ExceptionOptionType<InvalidIfMatchVersion, __BaseException>
676
- );
677
- }
678
743
  export declare class InvalidLambdaFunctionAssociation extends __BaseException {
679
744
  readonly name: "InvalidLambdaFunctionAssociation";
680
745
  readonly $fault: "client";
@@ -853,12 +918,6 @@ export declare class NoSuchResponseHeadersPolicy extends __BaseException {
853
918
  opts: __ExceptionOptionType<NoSuchResponseHeadersPolicy, __BaseException>
854
919
  );
855
920
  }
856
- export declare class PreconditionFailed extends __BaseException {
857
- readonly name: "PreconditionFailed";
858
- readonly $fault: "client";
859
- Message?: string | undefined;
860
- constructor(opts: __ExceptionOptionType<PreconditionFailed, __BaseException>);
861
- }
862
921
  export declare class RealtimeLogConfigOwnerMismatch extends __BaseException {
863
922
  readonly name: "RealtimeLogConfigOwnerMismatch";
864
923
  readonly $fault: "client";
@@ -1228,6 +1287,31 @@ export declare class TooManyCloudFrontOriginAccessIdentities extends __BaseExcep
1228
1287
  >
1229
1288
  );
1230
1289
  }
1290
+ export interface CreateConnectionGroupRequest {
1291
+ Name: string | undefined;
1292
+ Ipv6Enabled?: boolean | undefined;
1293
+ Tags?: Tags | undefined;
1294
+ AnycastIpListId?: string | undefined;
1295
+ Enabled?: boolean | undefined;
1296
+ }
1297
+ export interface ConnectionGroup {
1298
+ Id?: string | undefined;
1299
+ Name?: string | undefined;
1300
+ Arn?: string | undefined;
1301
+ CreatedTime?: Date | undefined;
1302
+ LastModifiedTime?: Date | undefined;
1303
+ Tags?: Tags | undefined;
1304
+ Ipv6Enabled?: boolean | undefined;
1305
+ RoutingEndpoint?: string | undefined;
1306
+ AnycastIpListId?: string | undefined;
1307
+ Status?: string | undefined;
1308
+ Enabled?: boolean | undefined;
1309
+ IsDefault?: boolean | undefined;
1310
+ }
1311
+ export interface CreateConnectionGroupResult {
1312
+ ConnectionGroup?: ConnectionGroup | undefined;
1313
+ ETag?: string | undefined;
1314
+ }
1231
1315
  export declare class ContinuousDeploymentPolicyAlreadyExists extends __BaseException {
1232
1316
  readonly name: "ContinuousDeploymentPolicyAlreadyExists";
1233
1317
  readonly $fault: "client";
@@ -1326,12 +1410,6 @@ export interface CreateDistributionResult {
1326
1410
  Location?: string | undefined;
1327
1411
  ETag?: string | undefined;
1328
1412
  }
1329
- export declare class EntityNotFound extends __BaseException {
1330
- readonly name: "EntityNotFound";
1331
- readonly $fault: "client";
1332
- Message?: string | undefined;
1333
- constructor(opts: __ExceptionOptionType<EntityNotFound, __BaseException>);
1334
- }
1335
1413
  export declare class IllegalOriginAccessConfiguration extends __BaseException {
1336
1414
  readonly name: "IllegalOriginAccessConfiguration";
1337
1415
  readonly $fault: "client";
@@ -1365,6 +1443,90 @@ export declare class NoSuchContinuousDeploymentPolicy extends __BaseException {
1365
1443
  >
1366
1444
  );
1367
1445
  }
1446
+ export interface GeoRestrictionCustomization {
1447
+ RestrictionType: GeoRestrictionType | undefined;
1448
+ Locations?: string[] | undefined;
1449
+ }
1450
+ export declare const CustomizationActionType: {
1451
+ readonly disable: "disable";
1452
+ readonly override: "override";
1453
+ };
1454
+ export type CustomizationActionType =
1455
+ (typeof CustomizationActionType)[keyof typeof CustomizationActionType];
1456
+ export interface WebAclCustomization {
1457
+ Action: CustomizationActionType | undefined;
1458
+ Arn?: string | undefined;
1459
+ }
1460
+ export interface Customizations {
1461
+ WebAcl?: WebAclCustomization | undefined;
1462
+ Certificate?: Certificate | undefined;
1463
+ GeoRestrictions?: GeoRestrictionCustomization | undefined;
1464
+ }
1465
+ export interface DomainItem {
1466
+ Domain: string | undefined;
1467
+ }
1468
+ export declare const ValidationTokenHost: {
1469
+ readonly CloudFront: "cloudfront";
1470
+ readonly SelfHosted: "self-hosted";
1471
+ };
1472
+ export type ValidationTokenHost =
1473
+ (typeof ValidationTokenHost)[keyof typeof ValidationTokenHost];
1474
+ export interface ManagedCertificateRequest {
1475
+ ValidationTokenHost: ValidationTokenHost | undefined;
1476
+ PrimaryDomainName?: string | undefined;
1477
+ CertificateTransparencyLoggingPreference?:
1478
+ | CertificateTransparencyLoggingPreference
1479
+ | undefined;
1480
+ }
1481
+ export interface Parameter {
1482
+ Name: string | undefined;
1483
+ Value: string | undefined;
1484
+ }
1485
+ export interface CreateDistributionTenantRequest {
1486
+ DistributionId: string | undefined;
1487
+ Name: string | undefined;
1488
+ Domains: DomainItem[] | undefined;
1489
+ Tags?: Tags | undefined;
1490
+ Customizations?: Customizations | undefined;
1491
+ Parameters?: Parameter[] | undefined;
1492
+ ConnectionGroupId?: string | undefined;
1493
+ ManagedCertificateRequest?: ManagedCertificateRequest | undefined;
1494
+ Enabled?: boolean | undefined;
1495
+ }
1496
+ export declare const DomainStatus: {
1497
+ readonly Active: "active";
1498
+ readonly Inactive: "inactive";
1499
+ };
1500
+ export type DomainStatus = (typeof DomainStatus)[keyof typeof DomainStatus];
1501
+ export interface DomainResult {
1502
+ Domain: string | undefined;
1503
+ Status?: DomainStatus | undefined;
1504
+ }
1505
+ export interface DistributionTenant {
1506
+ Id?: string | undefined;
1507
+ DistributionId?: string | undefined;
1508
+ Name?: string | undefined;
1509
+ Arn?: string | undefined;
1510
+ Domains?: DomainResult[] | undefined;
1511
+ Tags?: Tags | undefined;
1512
+ Customizations?: Customizations | undefined;
1513
+ Parameters?: Parameter[] | undefined;
1514
+ ConnectionGroupId?: string | undefined;
1515
+ CreatedTime?: Date | undefined;
1516
+ LastModifiedTime?: Date | undefined;
1517
+ Enabled?: boolean | undefined;
1518
+ Status?: string | undefined;
1519
+ }
1520
+ export interface CreateDistributionTenantResult {
1521
+ DistributionTenant?: DistributionTenant | undefined;
1522
+ ETag?: string | undefined;
1523
+ }
1524
+ export declare class InvalidAssociation extends __BaseException {
1525
+ readonly name: "InvalidAssociation";
1526
+ readonly $fault: "client";
1527
+ Message?: string | undefined;
1528
+ constructor(opts: __ExceptionOptionType<InvalidAssociation, __BaseException>);
1529
+ }
1368
1530
  export interface DistributionConfigWithTags {
1369
1531
  DistributionConfig: DistributionConfig | undefined;
1370
1532
  Tags: Tags | undefined;
@@ -1682,6 +1844,14 @@ export declare class TooManyInvalidationsInProgress extends __BaseException {
1682
1844
  opts: __ExceptionOptionType<TooManyInvalidationsInProgress, __BaseException>
1683
1845
  );
1684
1846
  }
1847
+ export interface CreateInvalidationForDistributionTenantRequest {
1848
+ Id: string | undefined;
1849
+ InvalidationBatch: InvalidationBatch | undefined;
1850
+ }
1851
+ export interface CreateInvalidationForDistributionTenantResult {
1852
+ Location?: string | undefined;
1853
+ Invalidation?: Invalidation | undefined;
1854
+ }
1685
1855
  export interface KeyGroupConfig {
1686
1856
  Name: string | undefined;
1687
1857
  Items: string[] | undefined;
@@ -1841,200 +2011,6 @@ export declare class OriginAccessControlAlreadyExists extends __BaseException {
1841
2011
  >
1842
2012
  );
1843
2013
  }
1844
- export declare class TooManyOriginAccessControls extends __BaseException {
1845
- readonly name: "TooManyOriginAccessControls";
1846
- readonly $fault: "client";
1847
- Message?: string | undefined;
1848
- constructor(
1849
- opts: __ExceptionOptionType<TooManyOriginAccessControls, __BaseException>
1850
- );
1851
- }
1852
- export declare const OriginRequestPolicyCookieBehavior: {
1853
- readonly all: "all";
1854
- readonly allExcept: "allExcept";
1855
- readonly none: "none";
1856
- readonly whitelist: "whitelist";
1857
- };
1858
- export type OriginRequestPolicyCookieBehavior =
1859
- (typeof OriginRequestPolicyCookieBehavior)[keyof typeof OriginRequestPolicyCookieBehavior];
1860
- export interface OriginRequestPolicyCookiesConfig {
1861
- CookieBehavior: OriginRequestPolicyCookieBehavior | undefined;
1862
- Cookies?: CookieNames | undefined;
1863
- }
1864
- export declare const OriginRequestPolicyHeaderBehavior: {
1865
- readonly allExcept: "allExcept";
1866
- readonly allViewer: "allViewer";
1867
- readonly allViewerAndWhitelistCloudFront: "allViewerAndWhitelistCloudFront";
1868
- readonly none: "none";
1869
- readonly whitelist: "whitelist";
1870
- };
1871
- export type OriginRequestPolicyHeaderBehavior =
1872
- (typeof OriginRequestPolicyHeaderBehavior)[keyof typeof OriginRequestPolicyHeaderBehavior];
1873
- export interface OriginRequestPolicyHeadersConfig {
1874
- HeaderBehavior: OriginRequestPolicyHeaderBehavior | undefined;
1875
- Headers?: Headers | undefined;
1876
- }
1877
- export declare const OriginRequestPolicyQueryStringBehavior: {
1878
- readonly all: "all";
1879
- readonly allExcept: "allExcept";
1880
- readonly none: "none";
1881
- readonly whitelist: "whitelist";
1882
- };
1883
- export type OriginRequestPolicyQueryStringBehavior =
1884
- (typeof OriginRequestPolicyQueryStringBehavior)[keyof typeof OriginRequestPolicyQueryStringBehavior];
1885
- export interface OriginRequestPolicyQueryStringsConfig {
1886
- QueryStringBehavior: OriginRequestPolicyQueryStringBehavior | undefined;
1887
- QueryStrings?: QueryStringNames | undefined;
1888
- }
1889
- export interface OriginRequestPolicyConfig {
1890
- Comment?: string | undefined;
1891
- Name: string | undefined;
1892
- HeadersConfig: OriginRequestPolicyHeadersConfig | undefined;
1893
- CookiesConfig: OriginRequestPolicyCookiesConfig | undefined;
1894
- QueryStringsConfig: OriginRequestPolicyQueryStringsConfig | undefined;
1895
- }
1896
- export interface CreateOriginRequestPolicyRequest {
1897
- OriginRequestPolicyConfig: OriginRequestPolicyConfig | undefined;
1898
- }
1899
- export interface OriginRequestPolicy {
1900
- Id: string | undefined;
1901
- LastModifiedTime: Date | undefined;
1902
- OriginRequestPolicyConfig: OriginRequestPolicyConfig | undefined;
1903
- }
1904
- export interface CreateOriginRequestPolicyResult {
1905
- OriginRequestPolicy?: OriginRequestPolicy | undefined;
1906
- Location?: string | undefined;
1907
- ETag?: string | undefined;
1908
- }
1909
- export declare class OriginRequestPolicyAlreadyExists extends __BaseException {
1910
- readonly name: "OriginRequestPolicyAlreadyExists";
1911
- readonly $fault: "client";
1912
- Message?: string | undefined;
1913
- constructor(
1914
- opts: __ExceptionOptionType<
1915
- OriginRequestPolicyAlreadyExists,
1916
- __BaseException
1917
- >
1918
- );
1919
- }
1920
- export declare class TooManyCookiesInOriginRequestPolicy extends __BaseException {
1921
- readonly name: "TooManyCookiesInOriginRequestPolicy";
1922
- readonly $fault: "client";
1923
- Message?: string | undefined;
1924
- constructor(
1925
- opts: __ExceptionOptionType<
1926
- TooManyCookiesInOriginRequestPolicy,
1927
- __BaseException
1928
- >
1929
- );
1930
- }
1931
- export declare class TooManyHeadersInOriginRequestPolicy extends __BaseException {
1932
- readonly name: "TooManyHeadersInOriginRequestPolicy";
1933
- readonly $fault: "client";
1934
- Message?: string | undefined;
1935
- constructor(
1936
- opts: __ExceptionOptionType<
1937
- TooManyHeadersInOriginRequestPolicy,
1938
- __BaseException
1939
- >
1940
- );
1941
- }
1942
- export declare class TooManyOriginRequestPolicies extends __BaseException {
1943
- readonly name: "TooManyOriginRequestPolicies";
1944
- readonly $fault: "client";
1945
- Message?: string | undefined;
1946
- constructor(
1947
- opts: __ExceptionOptionType<TooManyOriginRequestPolicies, __BaseException>
1948
- );
1949
- }
1950
- export declare class TooManyQueryStringsInOriginRequestPolicy extends __BaseException {
1951
- readonly name: "TooManyQueryStringsInOriginRequestPolicy";
1952
- readonly $fault: "client";
1953
- Message?: string | undefined;
1954
- constructor(
1955
- opts: __ExceptionOptionType<
1956
- TooManyQueryStringsInOriginRequestPolicy,
1957
- __BaseException
1958
- >
1959
- );
1960
- }
1961
- export interface PublicKeyConfig {
1962
- CallerReference: string | undefined;
1963
- Name: string | undefined;
1964
- EncodedKey: string | undefined;
1965
- Comment?: string | undefined;
1966
- }
1967
- export interface CreatePublicKeyRequest {
1968
- PublicKeyConfig: PublicKeyConfig | undefined;
1969
- }
1970
- export interface PublicKey {
1971
- Id: string | undefined;
1972
- CreatedTime: Date | undefined;
1973
- PublicKeyConfig: PublicKeyConfig | undefined;
1974
- }
1975
- export interface CreatePublicKeyResult {
1976
- PublicKey?: PublicKey | undefined;
1977
- Location?: string | undefined;
1978
- ETag?: string | undefined;
1979
- }
1980
- export declare class PublicKeyAlreadyExists extends __BaseException {
1981
- readonly name: "PublicKeyAlreadyExists";
1982
- readonly $fault: "client";
1983
- Message?: string | undefined;
1984
- constructor(
1985
- opts: __ExceptionOptionType<PublicKeyAlreadyExists, __BaseException>
1986
- );
1987
- }
1988
- export declare class TooManyPublicKeys extends __BaseException {
1989
- readonly name: "TooManyPublicKeys";
1990
- readonly $fault: "client";
1991
- Message?: string | undefined;
1992
- constructor(opts: __ExceptionOptionType<TooManyPublicKeys, __BaseException>);
1993
- }
1994
- export interface KinesisStreamConfig {
1995
- RoleARN: string | undefined;
1996
- StreamARN: string | undefined;
1997
- }
1998
- export interface EndPoint {
1999
- StreamType: string | undefined;
2000
- KinesisStreamConfig?: KinesisStreamConfig | undefined;
2001
- }
2002
- export interface CreateRealtimeLogConfigRequest {
2003
- EndPoints: EndPoint[] | undefined;
2004
- Fields: string[] | undefined;
2005
- Name: string | undefined;
2006
- SamplingRate: number | undefined;
2007
- }
2008
- export interface RealtimeLogConfig {
2009
- ARN: string | undefined;
2010
- Name: string | undefined;
2011
- SamplingRate: number | undefined;
2012
- EndPoints: EndPoint[] | undefined;
2013
- Fields: string[] | undefined;
2014
- }
2015
- export interface CreateRealtimeLogConfigResult {
2016
- RealtimeLogConfig?: RealtimeLogConfig | undefined;
2017
- }
2018
- export declare class RealtimeLogConfigAlreadyExists extends __BaseException {
2019
- readonly name: "RealtimeLogConfigAlreadyExists";
2020
- readonly $fault: "client";
2021
- Message?: string | undefined;
2022
- constructor(
2023
- opts: __ExceptionOptionType<RealtimeLogConfigAlreadyExists, __BaseException>
2024
- );
2025
- }
2026
- export declare class TooManyRealtimeLogConfigs extends __BaseException {
2027
- readonly name: "TooManyRealtimeLogConfigs";
2028
- readonly $fault: "client";
2029
- Message?: string | undefined;
2030
- constructor(
2031
- opts: __ExceptionOptionType<TooManyRealtimeLogConfigs, __BaseException>
2032
- );
2033
- }
2034
- export interface ResponseHeadersPolicyAccessControlAllowHeaders {
2035
- Quantity: number | undefined;
2036
- Items: string[] | undefined;
2037
- }
2038
2014
  export declare const OriginCustomHeaderFilterSensitiveLog: (
2039
2015
  obj: OriginCustomHeader
2040
2016
  ) => any;