@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
@@ -7,6 +7,14 @@ import {
7
7
  AssociateAliasCommandInput,
8
8
  AssociateAliasCommandOutput,
9
9
  } from "../commands/AssociateAliasCommand";
10
+ import {
11
+ AssociateDistributionTenantWebACLCommandInput,
12
+ AssociateDistributionTenantWebACLCommandOutput,
13
+ } from "../commands/AssociateDistributionTenantWebACLCommand";
14
+ import {
15
+ AssociateDistributionWebACLCommandInput,
16
+ AssociateDistributionWebACLCommandOutput,
17
+ } from "../commands/AssociateDistributionWebACLCommand";
10
18
  import {
11
19
  CopyDistributionCommandInput,
12
20
  CopyDistributionCommandOutput,
@@ -23,6 +31,10 @@ import {
23
31
  CreateCloudFrontOriginAccessIdentityCommandInput,
24
32
  CreateCloudFrontOriginAccessIdentityCommandOutput,
25
33
  } from "../commands/CreateCloudFrontOriginAccessIdentityCommand";
34
+ import {
35
+ CreateConnectionGroupCommandInput,
36
+ CreateConnectionGroupCommandOutput,
37
+ } from "../commands/CreateConnectionGroupCommand";
26
38
  import {
27
39
  CreateContinuousDeploymentPolicyCommandInput,
28
40
  CreateContinuousDeploymentPolicyCommandOutput,
@@ -31,6 +43,10 @@ import {
31
43
  CreateDistributionCommandInput,
32
44
  CreateDistributionCommandOutput,
33
45
  } from "../commands/CreateDistributionCommand";
46
+ import {
47
+ CreateDistributionTenantCommandInput,
48
+ CreateDistributionTenantCommandOutput,
49
+ } from "../commands/CreateDistributionTenantCommand";
34
50
  import {
35
51
  CreateDistributionWithTagsCommandInput,
36
52
  CreateDistributionWithTagsCommandOutput,
@@ -51,6 +67,10 @@ import {
51
67
  CreateInvalidationCommandInput,
52
68
  CreateInvalidationCommandOutput,
53
69
  } from "../commands/CreateInvalidationCommand";
70
+ import {
71
+ CreateInvalidationForDistributionTenantCommandInput,
72
+ CreateInvalidationForDistributionTenantCommandOutput,
73
+ } from "../commands/CreateInvalidationForDistributionTenantCommand";
54
74
  import {
55
75
  CreateKeyGroupCommandInput,
56
76
  CreateKeyGroupCommandOutput,
@@ -107,6 +127,10 @@ import {
107
127
  DeleteCloudFrontOriginAccessIdentityCommandInput,
108
128
  DeleteCloudFrontOriginAccessIdentityCommandOutput,
109
129
  } from "../commands/DeleteCloudFrontOriginAccessIdentityCommand";
130
+ import {
131
+ DeleteConnectionGroupCommandInput,
132
+ DeleteConnectionGroupCommandOutput,
133
+ } from "../commands/DeleteConnectionGroupCommand";
110
134
  import {
111
135
  DeleteContinuousDeploymentPolicyCommandInput,
112
136
  DeleteContinuousDeploymentPolicyCommandOutput,
@@ -115,6 +139,10 @@ import {
115
139
  DeleteDistributionCommandInput,
116
140
  DeleteDistributionCommandOutput,
117
141
  } from "../commands/DeleteDistributionCommand";
142
+ import {
143
+ DeleteDistributionTenantCommandInput,
144
+ DeleteDistributionTenantCommandOutput,
145
+ } from "../commands/DeleteDistributionTenantCommand";
118
146
  import {
119
147
  DeleteFieldLevelEncryptionConfigCommandInput,
120
148
  DeleteFieldLevelEncryptionConfigCommandOutput,
@@ -175,6 +203,14 @@ import {
175
203
  DescribeKeyValueStoreCommandInput,
176
204
  DescribeKeyValueStoreCommandOutput,
177
205
  } from "../commands/DescribeKeyValueStoreCommand";
206
+ import {
207
+ DisassociateDistributionTenantWebACLCommandInput,
208
+ DisassociateDistributionTenantWebACLCommandOutput,
209
+ } from "../commands/DisassociateDistributionTenantWebACLCommand";
210
+ import {
211
+ DisassociateDistributionWebACLCommandInput,
212
+ DisassociateDistributionWebACLCommandOutput,
213
+ } from "../commands/DisassociateDistributionWebACLCommand";
178
214
  import {
179
215
  GetAnycastIpListCommandInput,
180
216
  GetAnycastIpListCommandOutput,
@@ -195,6 +231,14 @@ import {
195
231
  GetCloudFrontOriginAccessIdentityConfigCommandInput,
196
232
  GetCloudFrontOriginAccessIdentityConfigCommandOutput,
197
233
  } from "../commands/GetCloudFrontOriginAccessIdentityConfigCommand";
234
+ import {
235
+ GetConnectionGroupByRoutingEndpointCommandInput,
236
+ GetConnectionGroupByRoutingEndpointCommandOutput,
237
+ } from "../commands/GetConnectionGroupByRoutingEndpointCommand";
238
+ import {
239
+ GetConnectionGroupCommandInput,
240
+ GetConnectionGroupCommandOutput,
241
+ } from "../commands/GetConnectionGroupCommand";
198
242
  import {
199
243
  GetContinuousDeploymentPolicyCommandInput,
200
244
  GetContinuousDeploymentPolicyCommandOutput,
@@ -211,6 +255,14 @@ import {
211
255
  GetDistributionConfigCommandInput,
212
256
  GetDistributionConfigCommandOutput,
213
257
  } from "../commands/GetDistributionConfigCommand";
258
+ import {
259
+ GetDistributionTenantByDomainCommandInput,
260
+ GetDistributionTenantByDomainCommandOutput,
261
+ } from "../commands/GetDistributionTenantByDomainCommand";
262
+ import {
263
+ GetDistributionTenantCommandInput,
264
+ GetDistributionTenantCommandOutput,
265
+ } from "../commands/GetDistributionTenantCommand";
214
266
  import {
215
267
  GetFieldLevelEncryptionCommandInput,
216
268
  GetFieldLevelEncryptionCommandOutput,
@@ -235,6 +287,10 @@ import {
235
287
  GetInvalidationCommandInput,
236
288
  GetInvalidationCommandOutput,
237
289
  } from "../commands/GetInvalidationCommand";
290
+ import {
291
+ GetInvalidationForDistributionTenantCommandInput,
292
+ GetInvalidationForDistributionTenantCommandOutput,
293
+ } from "../commands/GetInvalidationForDistributionTenantCommand";
238
294
  import {
239
295
  GetKeyGroupCommandInput,
240
296
  GetKeyGroupCommandOutput,
@@ -243,6 +299,10 @@ import {
243
299
  GetKeyGroupConfigCommandInput,
244
300
  GetKeyGroupConfigCommandOutput,
245
301
  } from "../commands/GetKeyGroupConfigCommand";
302
+ import {
303
+ GetManagedCertificateDetailsCommandInput,
304
+ GetManagedCertificateDetailsCommandOutput,
305
+ } from "../commands/GetManagedCertificateDetailsCommand";
246
306
  import {
247
307
  GetMonitoringSubscriptionCommandInput,
248
308
  GetMonitoringSubscriptionCommandOutput,
@@ -311,6 +371,10 @@ import {
311
371
  ListConflictingAliasesCommandInput,
312
372
  ListConflictingAliasesCommandOutput,
313
373
  } from "../commands/ListConflictingAliasesCommand";
374
+ import {
375
+ ListConnectionGroupsCommandInput,
376
+ ListConnectionGroupsCommandOutput,
377
+ } from "../commands/ListConnectionGroupsCommand";
314
378
  import {
315
379
  ListContinuousDeploymentPoliciesCommandInput,
316
380
  ListContinuousDeploymentPoliciesCommandOutput,
@@ -323,6 +387,10 @@ import {
323
387
  ListDistributionsByCachePolicyIdCommandInput,
324
388
  ListDistributionsByCachePolicyIdCommandOutput,
325
389
  } from "../commands/ListDistributionsByCachePolicyIdCommand";
390
+ import {
391
+ ListDistributionsByConnectionModeCommandInput,
392
+ ListDistributionsByConnectionModeCommandOutput,
393
+ } from "../commands/ListDistributionsByConnectionModeCommand";
326
394
  import {
327
395
  ListDistributionsByKeyGroupCommandInput,
328
396
  ListDistributionsByKeyGroupCommandOutput,
@@ -351,6 +419,18 @@ import {
351
419
  ListDistributionsCommandInput,
352
420
  ListDistributionsCommandOutput,
353
421
  } from "../commands/ListDistributionsCommand";
422
+ import {
423
+ ListDistributionTenantsByCustomizationCommandInput,
424
+ ListDistributionTenantsByCustomizationCommandOutput,
425
+ } from "../commands/ListDistributionTenantsByCustomizationCommand";
426
+ import {
427
+ ListDistributionTenantsCommandInput,
428
+ ListDistributionTenantsCommandOutput,
429
+ } from "../commands/ListDistributionTenantsCommand";
430
+ import {
431
+ ListDomainConflictsCommandInput,
432
+ ListDomainConflictsCommandOutput,
433
+ } from "../commands/ListDomainConflictsCommand";
354
434
  import {
355
435
  ListFieldLevelEncryptionConfigsCommandInput,
356
436
  ListFieldLevelEncryptionConfigsCommandOutput,
@@ -367,6 +447,10 @@ import {
367
447
  ListInvalidationsCommandInput,
368
448
  ListInvalidationsCommandOutput,
369
449
  } from "../commands/ListInvalidationsCommand";
450
+ import {
451
+ ListInvalidationsForDistributionTenantCommandInput,
452
+ ListInvalidationsForDistributionTenantCommandOutput,
453
+ } from "../commands/ListInvalidationsForDistributionTenantCommand";
370
454
  import {
371
455
  ListKeyGroupsCommandInput,
372
456
  ListKeyGroupsCommandOutput,
@@ -431,6 +515,10 @@ import {
431
515
  UpdateCloudFrontOriginAccessIdentityCommandInput,
432
516
  UpdateCloudFrontOriginAccessIdentityCommandOutput,
433
517
  } from "../commands/UpdateCloudFrontOriginAccessIdentityCommand";
518
+ import {
519
+ UpdateConnectionGroupCommandInput,
520
+ UpdateConnectionGroupCommandOutput,
521
+ } from "../commands/UpdateConnectionGroupCommand";
434
522
  import {
435
523
  UpdateContinuousDeploymentPolicyCommandInput,
436
524
  UpdateContinuousDeploymentPolicyCommandOutput,
@@ -439,10 +527,18 @@ import {
439
527
  UpdateDistributionCommandInput,
440
528
  UpdateDistributionCommandOutput,
441
529
  } from "../commands/UpdateDistributionCommand";
530
+ import {
531
+ UpdateDistributionTenantCommandInput,
532
+ UpdateDistributionTenantCommandOutput,
533
+ } from "../commands/UpdateDistributionTenantCommand";
442
534
  import {
443
535
  UpdateDistributionWithStagingConfigCommandInput,
444
536
  UpdateDistributionWithStagingConfigCommandOutput,
445
537
  } from "../commands/UpdateDistributionWithStagingConfigCommand";
538
+ import {
539
+ UpdateDomainAssociationCommandInput,
540
+ UpdateDomainAssociationCommandOutput,
541
+ } from "../commands/UpdateDomainAssociationCommand";
446
542
  import {
447
543
  UpdateFieldLevelEncryptionConfigCommandInput,
448
544
  UpdateFieldLevelEncryptionConfigCommandOutput,
@@ -491,10 +587,22 @@ import {
491
587
  UpdateVpcOriginCommandInput,
492
588
  UpdateVpcOriginCommandOutput,
493
589
  } from "../commands/UpdateVpcOriginCommand";
590
+ import {
591
+ VerifyDnsConfigurationCommandInput,
592
+ VerifyDnsConfigurationCommandOutput,
593
+ } from "../commands/VerifyDnsConfigurationCommand";
494
594
  export declare const se_AssociateAliasCommand: (
495
595
  input: AssociateAliasCommandInput,
496
596
  context: __SerdeContext
497
597
  ) => Promise<__HttpRequest>;
598
+ export declare const se_AssociateDistributionTenantWebACLCommand: (
599
+ input: AssociateDistributionTenantWebACLCommandInput,
600
+ context: __SerdeContext
601
+ ) => Promise<__HttpRequest>;
602
+ export declare const se_AssociateDistributionWebACLCommand: (
603
+ input: AssociateDistributionWebACLCommandInput,
604
+ context: __SerdeContext
605
+ ) => Promise<__HttpRequest>;
498
606
  export declare const se_CopyDistributionCommand: (
499
607
  input: CopyDistributionCommandInput,
500
608
  context: __SerdeContext
@@ -511,6 +619,10 @@ export declare const se_CreateCloudFrontOriginAccessIdentityCommand: (
511
619
  input: CreateCloudFrontOriginAccessIdentityCommandInput,
512
620
  context: __SerdeContext
513
621
  ) => Promise<__HttpRequest>;
622
+ export declare const se_CreateConnectionGroupCommand: (
623
+ input: CreateConnectionGroupCommandInput,
624
+ context: __SerdeContext
625
+ ) => Promise<__HttpRequest>;
514
626
  export declare const se_CreateContinuousDeploymentPolicyCommand: (
515
627
  input: CreateContinuousDeploymentPolicyCommandInput,
516
628
  context: __SerdeContext
@@ -519,6 +631,10 @@ export declare const se_CreateDistributionCommand: (
519
631
  input: CreateDistributionCommandInput,
520
632
  context: __SerdeContext
521
633
  ) => Promise<__HttpRequest>;
634
+ export declare const se_CreateDistributionTenantCommand: (
635
+ input: CreateDistributionTenantCommandInput,
636
+ context: __SerdeContext
637
+ ) => Promise<__HttpRequest>;
522
638
  export declare const se_CreateDistributionWithTagsCommand: (
523
639
  input: CreateDistributionWithTagsCommandInput,
524
640
  context: __SerdeContext
@@ -539,6 +655,10 @@ export declare const se_CreateInvalidationCommand: (
539
655
  input: CreateInvalidationCommandInput,
540
656
  context: __SerdeContext
541
657
  ) => Promise<__HttpRequest>;
658
+ export declare const se_CreateInvalidationForDistributionTenantCommand: (
659
+ input: CreateInvalidationForDistributionTenantCommandInput,
660
+ context: __SerdeContext
661
+ ) => Promise<__HttpRequest>;
542
662
  export declare const se_CreateKeyGroupCommand: (
543
663
  input: CreateKeyGroupCommandInput,
544
664
  context: __SerdeContext
@@ -595,6 +715,10 @@ export declare const se_DeleteCloudFrontOriginAccessIdentityCommand: (
595
715
  input: DeleteCloudFrontOriginAccessIdentityCommandInput,
596
716
  context: __SerdeContext
597
717
  ) => Promise<__HttpRequest>;
718
+ export declare const se_DeleteConnectionGroupCommand: (
719
+ input: DeleteConnectionGroupCommandInput,
720
+ context: __SerdeContext
721
+ ) => Promise<__HttpRequest>;
598
722
  export declare const se_DeleteContinuousDeploymentPolicyCommand: (
599
723
  input: DeleteContinuousDeploymentPolicyCommandInput,
600
724
  context: __SerdeContext
@@ -603,6 +727,10 @@ export declare const se_DeleteDistributionCommand: (
603
727
  input: DeleteDistributionCommandInput,
604
728
  context: __SerdeContext
605
729
  ) => Promise<__HttpRequest>;
730
+ export declare const se_DeleteDistributionTenantCommand: (
731
+ input: DeleteDistributionTenantCommandInput,
732
+ context: __SerdeContext
733
+ ) => Promise<__HttpRequest>;
606
734
  export declare const se_DeleteFieldLevelEncryptionConfigCommand: (
607
735
  input: DeleteFieldLevelEncryptionConfigCommandInput,
608
736
  context: __SerdeContext
@@ -663,6 +791,14 @@ export declare const se_DescribeKeyValueStoreCommand: (
663
791
  input: DescribeKeyValueStoreCommandInput,
664
792
  context: __SerdeContext
665
793
  ) => Promise<__HttpRequest>;
794
+ export declare const se_DisassociateDistributionTenantWebACLCommand: (
795
+ input: DisassociateDistributionTenantWebACLCommandInput,
796
+ context: __SerdeContext
797
+ ) => Promise<__HttpRequest>;
798
+ export declare const se_DisassociateDistributionWebACLCommand: (
799
+ input: DisassociateDistributionWebACLCommandInput,
800
+ context: __SerdeContext
801
+ ) => Promise<__HttpRequest>;
666
802
  export declare const se_GetAnycastIpListCommand: (
667
803
  input: GetAnycastIpListCommandInput,
668
804
  context: __SerdeContext
@@ -683,6 +819,14 @@ export declare const se_GetCloudFrontOriginAccessIdentityConfigCommand: (
683
819
  input: GetCloudFrontOriginAccessIdentityConfigCommandInput,
684
820
  context: __SerdeContext
685
821
  ) => Promise<__HttpRequest>;
822
+ export declare const se_GetConnectionGroupCommand: (
823
+ input: GetConnectionGroupCommandInput,
824
+ context: __SerdeContext
825
+ ) => Promise<__HttpRequest>;
826
+ export declare const se_GetConnectionGroupByRoutingEndpointCommand: (
827
+ input: GetConnectionGroupByRoutingEndpointCommandInput,
828
+ context: __SerdeContext
829
+ ) => Promise<__HttpRequest>;
686
830
  export declare const se_GetContinuousDeploymentPolicyCommand: (
687
831
  input: GetContinuousDeploymentPolicyCommandInput,
688
832
  context: __SerdeContext
@@ -699,6 +843,14 @@ export declare const se_GetDistributionConfigCommand: (
699
843
  input: GetDistributionConfigCommandInput,
700
844
  context: __SerdeContext
701
845
  ) => Promise<__HttpRequest>;
846
+ export declare const se_GetDistributionTenantCommand: (
847
+ input: GetDistributionTenantCommandInput,
848
+ context: __SerdeContext
849
+ ) => Promise<__HttpRequest>;
850
+ export declare const se_GetDistributionTenantByDomainCommand: (
851
+ input: GetDistributionTenantByDomainCommandInput,
852
+ context: __SerdeContext
853
+ ) => Promise<__HttpRequest>;
702
854
  export declare const se_GetFieldLevelEncryptionCommand: (
703
855
  input: GetFieldLevelEncryptionCommandInput,
704
856
  context: __SerdeContext
@@ -723,6 +875,10 @@ export declare const se_GetInvalidationCommand: (
723
875
  input: GetInvalidationCommandInput,
724
876
  context: __SerdeContext
725
877
  ) => Promise<__HttpRequest>;
878
+ export declare const se_GetInvalidationForDistributionTenantCommand: (
879
+ input: GetInvalidationForDistributionTenantCommandInput,
880
+ context: __SerdeContext
881
+ ) => Promise<__HttpRequest>;
726
882
  export declare const se_GetKeyGroupCommand: (
727
883
  input: GetKeyGroupCommandInput,
728
884
  context: __SerdeContext
@@ -731,6 +887,10 @@ export declare const se_GetKeyGroupConfigCommand: (
731
887
  input: GetKeyGroupConfigCommandInput,
732
888
  context: __SerdeContext
733
889
  ) => Promise<__HttpRequest>;
890
+ export declare const se_GetManagedCertificateDetailsCommand: (
891
+ input: GetManagedCertificateDetailsCommandInput,
892
+ context: __SerdeContext
893
+ ) => Promise<__HttpRequest>;
734
894
  export declare const se_GetMonitoringSubscriptionCommand: (
735
895
  input: GetMonitoringSubscriptionCommandInput,
736
896
  context: __SerdeContext
@@ -799,6 +959,10 @@ export declare const se_ListConflictingAliasesCommand: (
799
959
  input: ListConflictingAliasesCommandInput,
800
960
  context: __SerdeContext
801
961
  ) => Promise<__HttpRequest>;
962
+ export declare const se_ListConnectionGroupsCommand: (
963
+ input: ListConnectionGroupsCommandInput,
964
+ context: __SerdeContext
965
+ ) => Promise<__HttpRequest>;
802
966
  export declare const se_ListContinuousDeploymentPoliciesCommand: (
803
967
  input: ListContinuousDeploymentPoliciesCommandInput,
804
968
  context: __SerdeContext
@@ -815,6 +979,10 @@ export declare const se_ListDistributionsByCachePolicyIdCommand: (
815
979
  input: ListDistributionsByCachePolicyIdCommandInput,
816
980
  context: __SerdeContext
817
981
  ) => Promise<__HttpRequest>;
982
+ export declare const se_ListDistributionsByConnectionModeCommand: (
983
+ input: ListDistributionsByConnectionModeCommandInput,
984
+ context: __SerdeContext
985
+ ) => Promise<__HttpRequest>;
818
986
  export declare const se_ListDistributionsByKeyGroupCommand: (
819
987
  input: ListDistributionsByKeyGroupCommandInput,
820
988
  context: __SerdeContext
@@ -839,6 +1007,18 @@ export declare const se_ListDistributionsByWebACLIdCommand: (
839
1007
  input: ListDistributionsByWebACLIdCommandInput,
840
1008
  context: __SerdeContext
841
1009
  ) => Promise<__HttpRequest>;
1010
+ export declare const se_ListDistributionTenantsCommand: (
1011
+ input: ListDistributionTenantsCommandInput,
1012
+ context: __SerdeContext
1013
+ ) => Promise<__HttpRequest>;
1014
+ export declare const se_ListDistributionTenantsByCustomizationCommand: (
1015
+ input: ListDistributionTenantsByCustomizationCommandInput,
1016
+ context: __SerdeContext
1017
+ ) => Promise<__HttpRequest>;
1018
+ export declare const se_ListDomainConflictsCommand: (
1019
+ input: ListDomainConflictsCommandInput,
1020
+ context: __SerdeContext
1021
+ ) => Promise<__HttpRequest>;
842
1022
  export declare const se_ListFieldLevelEncryptionConfigsCommand: (
843
1023
  input: ListFieldLevelEncryptionConfigsCommandInput,
844
1024
  context: __SerdeContext
@@ -855,6 +1035,10 @@ export declare const se_ListInvalidationsCommand: (
855
1035
  input: ListInvalidationsCommandInput,
856
1036
  context: __SerdeContext
857
1037
  ) => Promise<__HttpRequest>;
1038
+ export declare const se_ListInvalidationsForDistributionTenantCommand: (
1039
+ input: ListInvalidationsForDistributionTenantCommandInput,
1040
+ context: __SerdeContext
1041
+ ) => Promise<__HttpRequest>;
858
1042
  export declare const se_ListKeyGroupsCommand: (
859
1043
  input: ListKeyGroupsCommandInput,
860
1044
  context: __SerdeContext
@@ -919,6 +1103,10 @@ export declare const se_UpdateCloudFrontOriginAccessIdentityCommand: (
919
1103
  input: UpdateCloudFrontOriginAccessIdentityCommandInput,
920
1104
  context: __SerdeContext
921
1105
  ) => Promise<__HttpRequest>;
1106
+ export declare const se_UpdateConnectionGroupCommand: (
1107
+ input: UpdateConnectionGroupCommandInput,
1108
+ context: __SerdeContext
1109
+ ) => Promise<__HttpRequest>;
922
1110
  export declare const se_UpdateContinuousDeploymentPolicyCommand: (
923
1111
  input: UpdateContinuousDeploymentPolicyCommandInput,
924
1112
  context: __SerdeContext
@@ -927,10 +1115,18 @@ export declare const se_UpdateDistributionCommand: (
927
1115
  input: UpdateDistributionCommandInput,
928
1116
  context: __SerdeContext
929
1117
  ) => Promise<__HttpRequest>;
1118
+ export declare const se_UpdateDistributionTenantCommand: (
1119
+ input: UpdateDistributionTenantCommandInput,
1120
+ context: __SerdeContext
1121
+ ) => Promise<__HttpRequest>;
930
1122
  export declare const se_UpdateDistributionWithStagingConfigCommand: (
931
1123
  input: UpdateDistributionWithStagingConfigCommandInput,
932
1124
  context: __SerdeContext
933
1125
  ) => Promise<__HttpRequest>;
1126
+ export declare const se_UpdateDomainAssociationCommand: (
1127
+ input: UpdateDomainAssociationCommandInput,
1128
+ context: __SerdeContext
1129
+ ) => Promise<__HttpRequest>;
934
1130
  export declare const se_UpdateFieldLevelEncryptionConfigCommand: (
935
1131
  input: UpdateFieldLevelEncryptionConfigCommandInput,
936
1132
  context: __SerdeContext
@@ -979,10 +1175,22 @@ export declare const se_UpdateVpcOriginCommand: (
979
1175
  input: UpdateVpcOriginCommandInput,
980
1176
  context: __SerdeContext
981
1177
  ) => Promise<__HttpRequest>;
1178
+ export declare const se_VerifyDnsConfigurationCommand: (
1179
+ input: VerifyDnsConfigurationCommandInput,
1180
+ context: __SerdeContext
1181
+ ) => Promise<__HttpRequest>;
982
1182
  export declare const de_AssociateAliasCommand: (
983
1183
  output: __HttpResponse,
984
1184
  context: __SerdeContext
985
1185
  ) => Promise<AssociateAliasCommandOutput>;
1186
+ export declare const de_AssociateDistributionTenantWebACLCommand: (
1187
+ output: __HttpResponse,
1188
+ context: __SerdeContext
1189
+ ) => Promise<AssociateDistributionTenantWebACLCommandOutput>;
1190
+ export declare const de_AssociateDistributionWebACLCommand: (
1191
+ output: __HttpResponse,
1192
+ context: __SerdeContext
1193
+ ) => Promise<AssociateDistributionWebACLCommandOutput>;
986
1194
  export declare const de_CopyDistributionCommand: (
987
1195
  output: __HttpResponse,
988
1196
  context: __SerdeContext
@@ -999,6 +1207,10 @@ export declare const de_CreateCloudFrontOriginAccessIdentityCommand: (
999
1207
  output: __HttpResponse,
1000
1208
  context: __SerdeContext
1001
1209
  ) => Promise<CreateCloudFrontOriginAccessIdentityCommandOutput>;
1210
+ export declare const de_CreateConnectionGroupCommand: (
1211
+ output: __HttpResponse,
1212
+ context: __SerdeContext
1213
+ ) => Promise<CreateConnectionGroupCommandOutput>;
1002
1214
  export declare const de_CreateContinuousDeploymentPolicyCommand: (
1003
1215
  output: __HttpResponse,
1004
1216
  context: __SerdeContext
@@ -1007,6 +1219,10 @@ export declare const de_CreateDistributionCommand: (
1007
1219
  output: __HttpResponse,
1008
1220
  context: __SerdeContext
1009
1221
  ) => Promise<CreateDistributionCommandOutput>;
1222
+ export declare const de_CreateDistributionTenantCommand: (
1223
+ output: __HttpResponse,
1224
+ context: __SerdeContext
1225
+ ) => Promise<CreateDistributionTenantCommandOutput>;
1010
1226
  export declare const de_CreateDistributionWithTagsCommand: (
1011
1227
  output: __HttpResponse,
1012
1228
  context: __SerdeContext
@@ -1027,6 +1243,10 @@ export declare const de_CreateInvalidationCommand: (
1027
1243
  output: __HttpResponse,
1028
1244
  context: __SerdeContext
1029
1245
  ) => Promise<CreateInvalidationCommandOutput>;
1246
+ export declare const de_CreateInvalidationForDistributionTenantCommand: (
1247
+ output: __HttpResponse,
1248
+ context: __SerdeContext
1249
+ ) => Promise<CreateInvalidationForDistributionTenantCommandOutput>;
1030
1250
  export declare const de_CreateKeyGroupCommand: (
1031
1251
  output: __HttpResponse,
1032
1252
  context: __SerdeContext
@@ -1083,6 +1303,10 @@ export declare const de_DeleteCloudFrontOriginAccessIdentityCommand: (
1083
1303
  output: __HttpResponse,
1084
1304
  context: __SerdeContext
1085
1305
  ) => Promise<DeleteCloudFrontOriginAccessIdentityCommandOutput>;
1306
+ export declare const de_DeleteConnectionGroupCommand: (
1307
+ output: __HttpResponse,
1308
+ context: __SerdeContext
1309
+ ) => Promise<DeleteConnectionGroupCommandOutput>;
1086
1310
  export declare const de_DeleteContinuousDeploymentPolicyCommand: (
1087
1311
  output: __HttpResponse,
1088
1312
  context: __SerdeContext
@@ -1091,6 +1315,10 @@ export declare const de_DeleteDistributionCommand: (
1091
1315
  output: __HttpResponse,
1092
1316
  context: __SerdeContext
1093
1317
  ) => Promise<DeleteDistributionCommandOutput>;
1318
+ export declare const de_DeleteDistributionTenantCommand: (
1319
+ output: __HttpResponse,
1320
+ context: __SerdeContext
1321
+ ) => Promise<DeleteDistributionTenantCommandOutput>;
1094
1322
  export declare const de_DeleteFieldLevelEncryptionConfigCommand: (
1095
1323
  output: __HttpResponse,
1096
1324
  context: __SerdeContext
@@ -1151,6 +1379,14 @@ export declare const de_DescribeKeyValueStoreCommand: (
1151
1379
  output: __HttpResponse,
1152
1380
  context: __SerdeContext
1153
1381
  ) => Promise<DescribeKeyValueStoreCommandOutput>;
1382
+ export declare const de_DisassociateDistributionTenantWebACLCommand: (
1383
+ output: __HttpResponse,
1384
+ context: __SerdeContext
1385
+ ) => Promise<DisassociateDistributionTenantWebACLCommandOutput>;
1386
+ export declare const de_DisassociateDistributionWebACLCommand: (
1387
+ output: __HttpResponse,
1388
+ context: __SerdeContext
1389
+ ) => Promise<DisassociateDistributionWebACLCommandOutput>;
1154
1390
  export declare const de_GetAnycastIpListCommand: (
1155
1391
  output: __HttpResponse,
1156
1392
  context: __SerdeContext
@@ -1171,6 +1407,14 @@ export declare const de_GetCloudFrontOriginAccessIdentityConfigCommand: (
1171
1407
  output: __HttpResponse,
1172
1408
  context: __SerdeContext
1173
1409
  ) => Promise<GetCloudFrontOriginAccessIdentityConfigCommandOutput>;
1410
+ export declare const de_GetConnectionGroupCommand: (
1411
+ output: __HttpResponse,
1412
+ context: __SerdeContext
1413
+ ) => Promise<GetConnectionGroupCommandOutput>;
1414
+ export declare const de_GetConnectionGroupByRoutingEndpointCommand: (
1415
+ output: __HttpResponse,
1416
+ context: __SerdeContext
1417
+ ) => Promise<GetConnectionGroupByRoutingEndpointCommandOutput>;
1174
1418
  export declare const de_GetContinuousDeploymentPolicyCommand: (
1175
1419
  output: __HttpResponse,
1176
1420
  context: __SerdeContext
@@ -1187,6 +1431,14 @@ export declare const de_GetDistributionConfigCommand: (
1187
1431
  output: __HttpResponse,
1188
1432
  context: __SerdeContext
1189
1433
  ) => Promise<GetDistributionConfigCommandOutput>;
1434
+ export declare const de_GetDistributionTenantCommand: (
1435
+ output: __HttpResponse,
1436
+ context: __SerdeContext
1437
+ ) => Promise<GetDistributionTenantCommandOutput>;
1438
+ export declare const de_GetDistributionTenantByDomainCommand: (
1439
+ output: __HttpResponse,
1440
+ context: __SerdeContext
1441
+ ) => Promise<GetDistributionTenantByDomainCommandOutput>;
1190
1442
  export declare const de_GetFieldLevelEncryptionCommand: (
1191
1443
  output: __HttpResponse,
1192
1444
  context: __SerdeContext
@@ -1211,6 +1463,10 @@ export declare const de_GetInvalidationCommand: (
1211
1463
  output: __HttpResponse,
1212
1464
  context: __SerdeContext
1213
1465
  ) => Promise<GetInvalidationCommandOutput>;
1466
+ export declare const de_GetInvalidationForDistributionTenantCommand: (
1467
+ output: __HttpResponse,
1468
+ context: __SerdeContext
1469
+ ) => Promise<GetInvalidationForDistributionTenantCommandOutput>;
1214
1470
  export declare const de_GetKeyGroupCommand: (
1215
1471
  output: __HttpResponse,
1216
1472
  context: __SerdeContext
@@ -1219,6 +1475,10 @@ export declare const de_GetKeyGroupConfigCommand: (
1219
1475
  output: __HttpResponse,
1220
1476
  context: __SerdeContext
1221
1477
  ) => Promise<GetKeyGroupConfigCommandOutput>;
1478
+ export declare const de_GetManagedCertificateDetailsCommand: (
1479
+ output: __HttpResponse,
1480
+ context: __SerdeContext
1481
+ ) => Promise<GetManagedCertificateDetailsCommandOutput>;
1222
1482
  export declare const de_GetMonitoringSubscriptionCommand: (
1223
1483
  output: __HttpResponse,
1224
1484
  context: __SerdeContext
@@ -1287,6 +1547,10 @@ export declare const de_ListConflictingAliasesCommand: (
1287
1547
  output: __HttpResponse,
1288
1548
  context: __SerdeContext
1289
1549
  ) => Promise<ListConflictingAliasesCommandOutput>;
1550
+ export declare const de_ListConnectionGroupsCommand: (
1551
+ output: __HttpResponse,
1552
+ context: __SerdeContext
1553
+ ) => Promise<ListConnectionGroupsCommandOutput>;
1290
1554
  export declare const de_ListContinuousDeploymentPoliciesCommand: (
1291
1555
  output: __HttpResponse,
1292
1556
  context: __SerdeContext
@@ -1303,6 +1567,10 @@ export declare const de_ListDistributionsByCachePolicyIdCommand: (
1303
1567
  output: __HttpResponse,
1304
1568
  context: __SerdeContext
1305
1569
  ) => Promise<ListDistributionsByCachePolicyIdCommandOutput>;
1570
+ export declare const de_ListDistributionsByConnectionModeCommand: (
1571
+ output: __HttpResponse,
1572
+ context: __SerdeContext
1573
+ ) => Promise<ListDistributionsByConnectionModeCommandOutput>;
1306
1574
  export declare const de_ListDistributionsByKeyGroupCommand: (
1307
1575
  output: __HttpResponse,
1308
1576
  context: __SerdeContext
@@ -1327,6 +1595,18 @@ export declare const de_ListDistributionsByWebACLIdCommand: (
1327
1595
  output: __HttpResponse,
1328
1596
  context: __SerdeContext
1329
1597
  ) => Promise<ListDistributionsByWebACLIdCommandOutput>;
1598
+ export declare const de_ListDistributionTenantsCommand: (
1599
+ output: __HttpResponse,
1600
+ context: __SerdeContext
1601
+ ) => Promise<ListDistributionTenantsCommandOutput>;
1602
+ export declare const de_ListDistributionTenantsByCustomizationCommand: (
1603
+ output: __HttpResponse,
1604
+ context: __SerdeContext
1605
+ ) => Promise<ListDistributionTenantsByCustomizationCommandOutput>;
1606
+ export declare const de_ListDomainConflictsCommand: (
1607
+ output: __HttpResponse,
1608
+ context: __SerdeContext
1609
+ ) => Promise<ListDomainConflictsCommandOutput>;
1330
1610
  export declare const de_ListFieldLevelEncryptionConfigsCommand: (
1331
1611
  output: __HttpResponse,
1332
1612
  context: __SerdeContext
@@ -1343,6 +1623,10 @@ export declare const de_ListInvalidationsCommand: (
1343
1623
  output: __HttpResponse,
1344
1624
  context: __SerdeContext
1345
1625
  ) => Promise<ListInvalidationsCommandOutput>;
1626
+ export declare const de_ListInvalidationsForDistributionTenantCommand: (
1627
+ output: __HttpResponse,
1628
+ context: __SerdeContext
1629
+ ) => Promise<ListInvalidationsForDistributionTenantCommandOutput>;
1346
1630
  export declare const de_ListKeyGroupsCommand: (
1347
1631
  output: __HttpResponse,
1348
1632
  context: __SerdeContext
@@ -1407,6 +1691,10 @@ export declare const de_UpdateCloudFrontOriginAccessIdentityCommand: (
1407
1691
  output: __HttpResponse,
1408
1692
  context: __SerdeContext
1409
1693
  ) => Promise<UpdateCloudFrontOriginAccessIdentityCommandOutput>;
1694
+ export declare const de_UpdateConnectionGroupCommand: (
1695
+ output: __HttpResponse,
1696
+ context: __SerdeContext
1697
+ ) => Promise<UpdateConnectionGroupCommandOutput>;
1410
1698
  export declare const de_UpdateContinuousDeploymentPolicyCommand: (
1411
1699
  output: __HttpResponse,
1412
1700
  context: __SerdeContext
@@ -1415,10 +1703,18 @@ export declare const de_UpdateDistributionCommand: (
1415
1703
  output: __HttpResponse,
1416
1704
  context: __SerdeContext
1417
1705
  ) => Promise<UpdateDistributionCommandOutput>;
1706
+ export declare const de_UpdateDistributionTenantCommand: (
1707
+ output: __HttpResponse,
1708
+ context: __SerdeContext
1709
+ ) => Promise<UpdateDistributionTenantCommandOutput>;
1418
1710
  export declare const de_UpdateDistributionWithStagingConfigCommand: (
1419
1711
  output: __HttpResponse,
1420
1712
  context: __SerdeContext
1421
1713
  ) => Promise<UpdateDistributionWithStagingConfigCommandOutput>;
1714
+ export declare const de_UpdateDomainAssociationCommand: (
1715
+ output: __HttpResponse,
1716
+ context: __SerdeContext
1717
+ ) => Promise<UpdateDomainAssociationCommandOutput>;
1422
1718
  export declare const de_UpdateFieldLevelEncryptionConfigCommand: (
1423
1719
  output: __HttpResponse,
1424
1720
  context: __SerdeContext
@@ -1467,3 +1763,7 @@ export declare const de_UpdateVpcOriginCommand: (
1467
1763
  output: __HttpResponse,
1468
1764
  context: __SerdeContext
1469
1765
  ) => Promise<UpdateVpcOriginCommandOutput>;
1766
+ export declare const de_VerifyDnsConfigurationCommand: (
1767
+ output: __HttpResponse,
1768
+ context: __SerdeContext
1769
+ ) => Promise<VerifyDnsConfigurationCommandOutput>;
@@ -5,6 +5,7 @@ export declare const getRuntimeConfig: (config: CloudFrontClientConfig) => {
5
5
  defaultsMode: import("@smithy/types").Provider<
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
8
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
10
  credentialDefaultProvider:
10
11
  | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
@@ -73,10 +74,6 @@ export declare const getRuntimeConfig: (config: CloudFrontClientConfig) => {
73
74
  ) => import("@smithy/types").EndpointV2;
74
75
  tls?: boolean | undefined;
75
76
  serviceConfiguredEndpoint?: undefined;
76
- authSchemePreference?:
77
- | string[]
78
- | import("@smithy/types").Provider<string[]>
79
- | undefined;
80
77
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
81
78
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CloudFrontHttpAuthSchemeProvider;
82
79
  credentials?:
@@ -1,3 +1,4 @@
1
1
  export * from "./waitForDistributionDeployed";
2
2
  export * from "./waitForInvalidationCompleted";
3
+ export * from "./waitForInvalidationForDistributionTenantCompleted";
3
4
  export * from "./waitForStreamingDistributionDeployed";