@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,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListConnectionGroupsCommandInput, ListConnectionGroupsCommandOutput } from "../commands/ListConnectionGroupsCommand";
3
+ import { CloudFrontPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListConnectionGroups: (config: CloudFrontPaginationConfiguration, input: ListConnectionGroupsCommandInput, ...rest: any[]) => Paginator<ListConnectionGroupsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDistributionTenantsByCustomizationCommandInput, ListDistributionTenantsByCustomizationCommandOutput } from "../commands/ListDistributionTenantsByCustomizationCommand";
3
+ import { CloudFrontPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDistributionTenantsByCustomization: (config: CloudFrontPaginationConfiguration, input: ListDistributionTenantsByCustomizationCommandInput, ...rest: any[]) => Paginator<ListDistributionTenantsByCustomizationCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDistributionTenantsCommandInput, ListDistributionTenantsCommandOutput } from "../commands/ListDistributionTenantsCommand";
3
+ import { CloudFrontPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDistributionTenants: (config: CloudFrontPaginationConfiguration, input: ListDistributionTenantsCommandInput, ...rest: any[]) => Paginator<ListDistributionTenantsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDistributionsByConnectionModeCommandInput, ListDistributionsByConnectionModeCommandOutput } from "../commands/ListDistributionsByConnectionModeCommand";
3
+ import { CloudFrontPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDistributionsByConnectionMode: (config: CloudFrontPaginationConfiguration, input: ListDistributionsByConnectionModeCommandInput, ...rest: any[]) => Paginator<ListDistributionsByConnectionModeCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDomainConflictsCommandInput, ListDomainConflictsCommandOutput } from "../commands/ListDomainConflictsCommand";
3
+ import { CloudFrontPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDomainConflicts: (config: CloudFrontPaginationConfiguration, input: ListDomainConflictsCommandInput, ...rest: any[]) => Paginator<ListDomainConflictsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListInvalidationsForDistributionTenantCommandInput, ListInvalidationsForDistributionTenantCommandOutput } from "../commands/ListInvalidationsForDistributionTenantCommand";
3
+ import { CloudFrontPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListInvalidationsForDistributionTenant: (config: CloudFrontPaginationConfiguration, input: ListInvalidationsForDistributionTenantCommandInput, ...rest: any[]) => Paginator<ListInvalidationsForDistributionTenantCommandOutput>;
@@ -1,6 +1,12 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListCloudFrontOriginAccessIdentitiesPaginator";
3
+ export * from "./ListConnectionGroupsPaginator";
4
+ export * from "./ListDistributionTenantsByCustomizationPaginator";
5
+ export * from "./ListDistributionTenantsPaginator";
6
+ export * from "./ListDistributionsByConnectionModePaginator";
3
7
  export * from "./ListDistributionsPaginator";
8
+ export * from "./ListDomainConflictsPaginator";
9
+ export * from "./ListInvalidationsForDistributionTenantPaginator";
4
10
  export * from "./ListInvalidationsPaginator";
5
11
  export * from "./ListKeyValueStoresPaginator";
6
12
  export * from "./ListPublicKeysPaginator";
@@ -1,17 +1,22 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
3
  import { AssociateAliasCommandInput, AssociateAliasCommandOutput } from "../commands/AssociateAliasCommand";
4
+ import { AssociateDistributionTenantWebACLCommandInput, AssociateDistributionTenantWebACLCommandOutput } from "../commands/AssociateDistributionTenantWebACLCommand";
5
+ import { AssociateDistributionWebACLCommandInput, AssociateDistributionWebACLCommandOutput } from "../commands/AssociateDistributionWebACLCommand";
4
6
  import { CopyDistributionCommandInput, CopyDistributionCommandOutput } from "../commands/CopyDistributionCommand";
5
7
  import { CreateAnycastIpListCommandInput, CreateAnycastIpListCommandOutput } from "../commands/CreateAnycastIpListCommand";
6
8
  import { CreateCachePolicyCommandInput, CreateCachePolicyCommandOutput } from "../commands/CreateCachePolicyCommand";
7
9
  import { CreateCloudFrontOriginAccessIdentityCommandInput, CreateCloudFrontOriginAccessIdentityCommandOutput } from "../commands/CreateCloudFrontOriginAccessIdentityCommand";
10
+ import { CreateConnectionGroupCommandInput, CreateConnectionGroupCommandOutput } from "../commands/CreateConnectionGroupCommand";
8
11
  import { CreateContinuousDeploymentPolicyCommandInput, CreateContinuousDeploymentPolicyCommandOutput } from "../commands/CreateContinuousDeploymentPolicyCommand";
9
12
  import { CreateDistributionCommandInput, CreateDistributionCommandOutput } from "../commands/CreateDistributionCommand";
13
+ import { CreateDistributionTenantCommandInput, CreateDistributionTenantCommandOutput } from "../commands/CreateDistributionTenantCommand";
10
14
  import { CreateDistributionWithTagsCommandInput, CreateDistributionWithTagsCommandOutput } from "../commands/CreateDistributionWithTagsCommand";
11
15
  import { CreateFieldLevelEncryptionConfigCommandInput, CreateFieldLevelEncryptionConfigCommandOutput } from "../commands/CreateFieldLevelEncryptionConfigCommand";
12
16
  import { CreateFieldLevelEncryptionProfileCommandInput, CreateFieldLevelEncryptionProfileCommandOutput } from "../commands/CreateFieldLevelEncryptionProfileCommand";
13
17
  import { CreateFunctionCommandInput, CreateFunctionCommandOutput } from "../commands/CreateFunctionCommand";
14
18
  import { CreateInvalidationCommandInput, CreateInvalidationCommandOutput } from "../commands/CreateInvalidationCommand";
19
+ import { CreateInvalidationForDistributionTenantCommandInput, CreateInvalidationForDistributionTenantCommandOutput } from "../commands/CreateInvalidationForDistributionTenantCommand";
15
20
  import { CreateKeyGroupCommandInput, CreateKeyGroupCommandOutput } from "../commands/CreateKeyGroupCommand";
16
21
  import { CreateKeyValueStoreCommandInput, CreateKeyValueStoreCommandOutput } from "../commands/CreateKeyValueStoreCommand";
17
22
  import { CreateMonitoringSubscriptionCommandInput, CreateMonitoringSubscriptionCommandOutput } from "../commands/CreateMonitoringSubscriptionCommand";
@@ -26,8 +31,10 @@ import { CreateVpcOriginCommandInput, CreateVpcOriginCommandOutput } from "../co
26
31
  import { DeleteAnycastIpListCommandInput, DeleteAnycastIpListCommandOutput } from "../commands/DeleteAnycastIpListCommand";
27
32
  import { DeleteCachePolicyCommandInput, DeleteCachePolicyCommandOutput } from "../commands/DeleteCachePolicyCommand";
28
33
  import { DeleteCloudFrontOriginAccessIdentityCommandInput, DeleteCloudFrontOriginAccessIdentityCommandOutput } from "../commands/DeleteCloudFrontOriginAccessIdentityCommand";
34
+ import { DeleteConnectionGroupCommandInput, DeleteConnectionGroupCommandOutput } from "../commands/DeleteConnectionGroupCommand";
29
35
  import { DeleteContinuousDeploymentPolicyCommandInput, DeleteContinuousDeploymentPolicyCommandOutput } from "../commands/DeleteContinuousDeploymentPolicyCommand";
30
36
  import { DeleteDistributionCommandInput, DeleteDistributionCommandOutput } from "../commands/DeleteDistributionCommand";
37
+ import { DeleteDistributionTenantCommandInput, DeleteDistributionTenantCommandOutput } from "../commands/DeleteDistributionTenantCommand";
31
38
  import { DeleteFieldLevelEncryptionConfigCommandInput, DeleteFieldLevelEncryptionConfigCommandOutput } from "../commands/DeleteFieldLevelEncryptionConfigCommand";
32
39
  import { DeleteFieldLevelEncryptionProfileCommandInput, DeleteFieldLevelEncryptionProfileCommandOutput } from "../commands/DeleteFieldLevelEncryptionProfileCommand";
33
40
  import { DeleteFunctionCommandInput, DeleteFunctionCommandOutput } from "../commands/DeleteFunctionCommand";
@@ -43,23 +50,31 @@ import { DeleteStreamingDistributionCommandInput, DeleteStreamingDistributionCom
43
50
  import { DeleteVpcOriginCommandInput, DeleteVpcOriginCommandOutput } from "../commands/DeleteVpcOriginCommand";
44
51
  import { DescribeFunctionCommandInput, DescribeFunctionCommandOutput } from "../commands/DescribeFunctionCommand";
45
52
  import { DescribeKeyValueStoreCommandInput, DescribeKeyValueStoreCommandOutput } from "../commands/DescribeKeyValueStoreCommand";
53
+ import { DisassociateDistributionTenantWebACLCommandInput, DisassociateDistributionTenantWebACLCommandOutput } from "../commands/DisassociateDistributionTenantWebACLCommand";
54
+ import { DisassociateDistributionWebACLCommandInput, DisassociateDistributionWebACLCommandOutput } from "../commands/DisassociateDistributionWebACLCommand";
46
55
  import { GetAnycastIpListCommandInput, GetAnycastIpListCommandOutput } from "../commands/GetAnycastIpListCommand";
47
56
  import { GetCachePolicyCommandInput, GetCachePolicyCommandOutput } from "../commands/GetCachePolicyCommand";
48
57
  import { GetCachePolicyConfigCommandInput, GetCachePolicyConfigCommandOutput } from "../commands/GetCachePolicyConfigCommand";
49
58
  import { GetCloudFrontOriginAccessIdentityCommandInput, GetCloudFrontOriginAccessIdentityCommandOutput } from "../commands/GetCloudFrontOriginAccessIdentityCommand";
50
59
  import { GetCloudFrontOriginAccessIdentityConfigCommandInput, GetCloudFrontOriginAccessIdentityConfigCommandOutput } from "../commands/GetCloudFrontOriginAccessIdentityConfigCommand";
60
+ import { GetConnectionGroupByRoutingEndpointCommandInput, GetConnectionGroupByRoutingEndpointCommandOutput } from "../commands/GetConnectionGroupByRoutingEndpointCommand";
61
+ import { GetConnectionGroupCommandInput, GetConnectionGroupCommandOutput } from "../commands/GetConnectionGroupCommand";
51
62
  import { GetContinuousDeploymentPolicyCommandInput, GetContinuousDeploymentPolicyCommandOutput } from "../commands/GetContinuousDeploymentPolicyCommand";
52
63
  import { GetContinuousDeploymentPolicyConfigCommandInput, GetContinuousDeploymentPolicyConfigCommandOutput } from "../commands/GetContinuousDeploymentPolicyConfigCommand";
53
64
  import { GetDistributionCommandInput, GetDistributionCommandOutput } from "../commands/GetDistributionCommand";
54
65
  import { GetDistributionConfigCommandInput, GetDistributionConfigCommandOutput } from "../commands/GetDistributionConfigCommand";
66
+ import { GetDistributionTenantByDomainCommandInput, GetDistributionTenantByDomainCommandOutput } from "../commands/GetDistributionTenantByDomainCommand";
67
+ import { GetDistributionTenantCommandInput, GetDistributionTenantCommandOutput } from "../commands/GetDistributionTenantCommand";
55
68
  import { GetFieldLevelEncryptionCommandInput, GetFieldLevelEncryptionCommandOutput } from "../commands/GetFieldLevelEncryptionCommand";
56
69
  import { GetFieldLevelEncryptionConfigCommandInput, GetFieldLevelEncryptionConfigCommandOutput } from "../commands/GetFieldLevelEncryptionConfigCommand";
57
70
  import { GetFieldLevelEncryptionProfileCommandInput, GetFieldLevelEncryptionProfileCommandOutput } from "../commands/GetFieldLevelEncryptionProfileCommand";
58
71
  import { GetFieldLevelEncryptionProfileConfigCommandInput, GetFieldLevelEncryptionProfileConfigCommandOutput } from "../commands/GetFieldLevelEncryptionProfileConfigCommand";
59
72
  import { GetFunctionCommandInput, GetFunctionCommandOutput } from "../commands/GetFunctionCommand";
60
73
  import { GetInvalidationCommandInput, GetInvalidationCommandOutput } from "../commands/GetInvalidationCommand";
74
+ import { GetInvalidationForDistributionTenantCommandInput, GetInvalidationForDistributionTenantCommandOutput } from "../commands/GetInvalidationForDistributionTenantCommand";
61
75
  import { GetKeyGroupCommandInput, GetKeyGroupCommandOutput } from "../commands/GetKeyGroupCommand";
62
76
  import { GetKeyGroupConfigCommandInput, GetKeyGroupConfigCommandOutput } from "../commands/GetKeyGroupConfigCommand";
77
+ import { GetManagedCertificateDetailsCommandInput, GetManagedCertificateDetailsCommandOutput } from "../commands/GetManagedCertificateDetailsCommand";
63
78
  import { GetMonitoringSubscriptionCommandInput, GetMonitoringSubscriptionCommandOutput } from "../commands/GetMonitoringSubscriptionCommand";
64
79
  import { GetOriginAccessControlCommandInput, GetOriginAccessControlCommandOutput } from "../commands/GetOriginAccessControlCommand";
65
80
  import { GetOriginAccessControlConfigCommandInput, GetOriginAccessControlConfigCommandOutput } from "../commands/GetOriginAccessControlConfigCommand";
@@ -77,9 +92,11 @@ import { ListAnycastIpListsCommandInput, ListAnycastIpListsCommandOutput } from
77
92
  import { ListCachePoliciesCommandInput, ListCachePoliciesCommandOutput } from "../commands/ListCachePoliciesCommand";
78
93
  import { ListCloudFrontOriginAccessIdentitiesCommandInput, ListCloudFrontOriginAccessIdentitiesCommandOutput } from "../commands/ListCloudFrontOriginAccessIdentitiesCommand";
79
94
  import { ListConflictingAliasesCommandInput, ListConflictingAliasesCommandOutput } from "../commands/ListConflictingAliasesCommand";
95
+ import { ListConnectionGroupsCommandInput, ListConnectionGroupsCommandOutput } from "../commands/ListConnectionGroupsCommand";
80
96
  import { ListContinuousDeploymentPoliciesCommandInput, ListContinuousDeploymentPoliciesCommandOutput } from "../commands/ListContinuousDeploymentPoliciesCommand";
81
97
  import { ListDistributionsByAnycastIpListIdCommandInput, ListDistributionsByAnycastIpListIdCommandOutput } from "../commands/ListDistributionsByAnycastIpListIdCommand";
82
98
  import { ListDistributionsByCachePolicyIdCommandInput, ListDistributionsByCachePolicyIdCommandOutput } from "../commands/ListDistributionsByCachePolicyIdCommand";
99
+ import { ListDistributionsByConnectionModeCommandInput, ListDistributionsByConnectionModeCommandOutput } from "../commands/ListDistributionsByConnectionModeCommand";
83
100
  import { ListDistributionsByKeyGroupCommandInput, ListDistributionsByKeyGroupCommandOutput } from "../commands/ListDistributionsByKeyGroupCommand";
84
101
  import { ListDistributionsByOriginRequestPolicyIdCommandInput, ListDistributionsByOriginRequestPolicyIdCommandOutput } from "../commands/ListDistributionsByOriginRequestPolicyIdCommand";
85
102
  import { ListDistributionsByRealtimeLogConfigCommandInput, ListDistributionsByRealtimeLogConfigCommandOutput } from "../commands/ListDistributionsByRealtimeLogConfigCommand";
@@ -87,10 +104,14 @@ import { ListDistributionsByResponseHeadersPolicyIdCommandInput, ListDistributio
87
104
  import { ListDistributionsByVpcOriginIdCommandInput, ListDistributionsByVpcOriginIdCommandOutput } from "../commands/ListDistributionsByVpcOriginIdCommand";
88
105
  import { ListDistributionsByWebACLIdCommandInput, ListDistributionsByWebACLIdCommandOutput } from "../commands/ListDistributionsByWebACLIdCommand";
89
106
  import { ListDistributionsCommandInput, ListDistributionsCommandOutput } from "../commands/ListDistributionsCommand";
107
+ import { ListDistributionTenantsByCustomizationCommandInput, ListDistributionTenantsByCustomizationCommandOutput } from "../commands/ListDistributionTenantsByCustomizationCommand";
108
+ import { ListDistributionTenantsCommandInput, ListDistributionTenantsCommandOutput } from "../commands/ListDistributionTenantsCommand";
109
+ import { ListDomainConflictsCommandInput, ListDomainConflictsCommandOutput } from "../commands/ListDomainConflictsCommand";
90
110
  import { ListFieldLevelEncryptionConfigsCommandInput, ListFieldLevelEncryptionConfigsCommandOutput } from "../commands/ListFieldLevelEncryptionConfigsCommand";
91
111
  import { ListFieldLevelEncryptionProfilesCommandInput, ListFieldLevelEncryptionProfilesCommandOutput } from "../commands/ListFieldLevelEncryptionProfilesCommand";
92
112
  import { ListFunctionsCommandInput, ListFunctionsCommandOutput } from "../commands/ListFunctionsCommand";
93
113
  import { ListInvalidationsCommandInput, ListInvalidationsCommandOutput } from "../commands/ListInvalidationsCommand";
114
+ import { ListInvalidationsForDistributionTenantCommandInput, ListInvalidationsForDistributionTenantCommandOutput } from "../commands/ListInvalidationsForDistributionTenantCommand";
94
115
  import { ListKeyGroupsCommandInput, ListKeyGroupsCommandOutput } from "../commands/ListKeyGroupsCommand";
95
116
  import { ListKeyValueStoresCommandInput, ListKeyValueStoresCommandOutput } from "../commands/ListKeyValueStoresCommand";
96
117
  import { ListOriginAccessControlsCommandInput, ListOriginAccessControlsCommandOutput } from "../commands/ListOriginAccessControlsCommand";
@@ -107,9 +128,12 @@ import { TestFunctionCommandInput, TestFunctionCommandOutput } from "../commands
107
128
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
108
129
  import { UpdateCachePolicyCommandInput, UpdateCachePolicyCommandOutput } from "../commands/UpdateCachePolicyCommand";
109
130
  import { UpdateCloudFrontOriginAccessIdentityCommandInput, UpdateCloudFrontOriginAccessIdentityCommandOutput } from "../commands/UpdateCloudFrontOriginAccessIdentityCommand";
131
+ import { UpdateConnectionGroupCommandInput, UpdateConnectionGroupCommandOutput } from "../commands/UpdateConnectionGroupCommand";
110
132
  import { UpdateContinuousDeploymentPolicyCommandInput, UpdateContinuousDeploymentPolicyCommandOutput } from "../commands/UpdateContinuousDeploymentPolicyCommand";
111
133
  import { UpdateDistributionCommandInput, UpdateDistributionCommandOutput } from "../commands/UpdateDistributionCommand";
134
+ import { UpdateDistributionTenantCommandInput, UpdateDistributionTenantCommandOutput } from "../commands/UpdateDistributionTenantCommand";
112
135
  import { UpdateDistributionWithStagingConfigCommandInput, UpdateDistributionWithStagingConfigCommandOutput } from "../commands/UpdateDistributionWithStagingConfigCommand";
136
+ import { UpdateDomainAssociationCommandInput, UpdateDomainAssociationCommandOutput } from "../commands/UpdateDomainAssociationCommand";
113
137
  import { UpdateFieldLevelEncryptionConfigCommandInput, UpdateFieldLevelEncryptionConfigCommandOutput } from "../commands/UpdateFieldLevelEncryptionConfigCommand";
114
138
  import { UpdateFieldLevelEncryptionProfileCommandInput, UpdateFieldLevelEncryptionProfileCommandOutput } from "../commands/UpdateFieldLevelEncryptionProfileCommand";
115
139
  import { UpdateFunctionCommandInput, UpdateFunctionCommandOutput } from "../commands/UpdateFunctionCommand";
@@ -122,10 +146,19 @@ import { UpdateRealtimeLogConfigCommandInput, UpdateRealtimeLogConfigCommandOutp
122
146
  import { UpdateResponseHeadersPolicyCommandInput, UpdateResponseHeadersPolicyCommandOutput } from "../commands/UpdateResponseHeadersPolicyCommand";
123
147
  import { UpdateStreamingDistributionCommandInput, UpdateStreamingDistributionCommandOutput } from "../commands/UpdateStreamingDistributionCommand";
124
148
  import { UpdateVpcOriginCommandInput, UpdateVpcOriginCommandOutput } from "../commands/UpdateVpcOriginCommand";
149
+ import { VerifyDnsConfigurationCommandInput, VerifyDnsConfigurationCommandOutput } from "../commands/VerifyDnsConfigurationCommand";
125
150
  /**
126
151
  * serializeAws_restXmlAssociateAliasCommand
127
152
  */
128
153
  export declare const se_AssociateAliasCommand: (input: AssociateAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
154
+ /**
155
+ * serializeAws_restXmlAssociateDistributionTenantWebACLCommand
156
+ */
157
+ export declare const se_AssociateDistributionTenantWebACLCommand: (input: AssociateDistributionTenantWebACLCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
158
+ /**
159
+ * serializeAws_restXmlAssociateDistributionWebACLCommand
160
+ */
161
+ export declare const se_AssociateDistributionWebACLCommand: (input: AssociateDistributionWebACLCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
129
162
  /**
130
163
  * serializeAws_restXmlCopyDistributionCommand
131
164
  */
@@ -142,6 +175,10 @@ export declare const se_CreateCachePolicyCommand: (input: CreateCachePolicyComma
142
175
  * serializeAws_restXmlCreateCloudFrontOriginAccessIdentityCommand
143
176
  */
144
177
  export declare const se_CreateCloudFrontOriginAccessIdentityCommand: (input: CreateCloudFrontOriginAccessIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
178
+ /**
179
+ * serializeAws_restXmlCreateConnectionGroupCommand
180
+ */
181
+ export declare const se_CreateConnectionGroupCommand: (input: CreateConnectionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
145
182
  /**
146
183
  * serializeAws_restXmlCreateContinuousDeploymentPolicyCommand
147
184
  */
@@ -150,6 +187,10 @@ export declare const se_CreateContinuousDeploymentPolicyCommand: (input: CreateC
150
187
  * serializeAws_restXmlCreateDistributionCommand
151
188
  */
152
189
  export declare const se_CreateDistributionCommand: (input: CreateDistributionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
190
+ /**
191
+ * serializeAws_restXmlCreateDistributionTenantCommand
192
+ */
193
+ export declare const se_CreateDistributionTenantCommand: (input: CreateDistributionTenantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
153
194
  /**
154
195
  * serializeAws_restXmlCreateDistributionWithTagsCommand
155
196
  */
@@ -170,6 +211,10 @@ export declare const se_CreateFunctionCommand: (input: CreateFunctionCommandInpu
170
211
  * serializeAws_restXmlCreateInvalidationCommand
171
212
  */
172
213
  export declare const se_CreateInvalidationCommand: (input: CreateInvalidationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
214
+ /**
215
+ * serializeAws_restXmlCreateInvalidationForDistributionTenantCommand
216
+ */
217
+ export declare const se_CreateInvalidationForDistributionTenantCommand: (input: CreateInvalidationForDistributionTenantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
173
218
  /**
174
219
  * serializeAws_restXmlCreateKeyGroupCommand
175
220
  */
@@ -226,6 +271,10 @@ export declare const se_DeleteCachePolicyCommand: (input: DeleteCachePolicyComma
226
271
  * serializeAws_restXmlDeleteCloudFrontOriginAccessIdentityCommand
227
272
  */
228
273
  export declare const se_DeleteCloudFrontOriginAccessIdentityCommand: (input: DeleteCloudFrontOriginAccessIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
274
+ /**
275
+ * serializeAws_restXmlDeleteConnectionGroupCommand
276
+ */
277
+ export declare const se_DeleteConnectionGroupCommand: (input: DeleteConnectionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
229
278
  /**
230
279
  * serializeAws_restXmlDeleteContinuousDeploymentPolicyCommand
231
280
  */
@@ -234,6 +283,10 @@ export declare const se_DeleteContinuousDeploymentPolicyCommand: (input: DeleteC
234
283
  * serializeAws_restXmlDeleteDistributionCommand
235
284
  */
236
285
  export declare const se_DeleteDistributionCommand: (input: DeleteDistributionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
286
+ /**
287
+ * serializeAws_restXmlDeleteDistributionTenantCommand
288
+ */
289
+ export declare const se_DeleteDistributionTenantCommand: (input: DeleteDistributionTenantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
237
290
  /**
238
291
  * serializeAws_restXmlDeleteFieldLevelEncryptionConfigCommand
239
292
  */
@@ -294,6 +347,14 @@ export declare const se_DescribeFunctionCommand: (input: DescribeFunctionCommand
294
347
  * serializeAws_restXmlDescribeKeyValueStoreCommand
295
348
  */
296
349
  export declare const se_DescribeKeyValueStoreCommand: (input: DescribeKeyValueStoreCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
350
+ /**
351
+ * serializeAws_restXmlDisassociateDistributionTenantWebACLCommand
352
+ */
353
+ export declare const se_DisassociateDistributionTenantWebACLCommand: (input: DisassociateDistributionTenantWebACLCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
354
+ /**
355
+ * serializeAws_restXmlDisassociateDistributionWebACLCommand
356
+ */
357
+ export declare const se_DisassociateDistributionWebACLCommand: (input: DisassociateDistributionWebACLCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
297
358
  /**
298
359
  * serializeAws_restXmlGetAnycastIpListCommand
299
360
  */
@@ -314,6 +375,14 @@ export declare const se_GetCloudFrontOriginAccessIdentityCommand: (input: GetClo
314
375
  * serializeAws_restXmlGetCloudFrontOriginAccessIdentityConfigCommand
315
376
  */
316
377
  export declare const se_GetCloudFrontOriginAccessIdentityConfigCommand: (input: GetCloudFrontOriginAccessIdentityConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
378
+ /**
379
+ * serializeAws_restXmlGetConnectionGroupCommand
380
+ */
381
+ export declare const se_GetConnectionGroupCommand: (input: GetConnectionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
382
+ /**
383
+ * serializeAws_restXmlGetConnectionGroupByRoutingEndpointCommand
384
+ */
385
+ export declare const se_GetConnectionGroupByRoutingEndpointCommand: (input: GetConnectionGroupByRoutingEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
317
386
  /**
318
387
  * serializeAws_restXmlGetContinuousDeploymentPolicyCommand
319
388
  */
@@ -330,6 +399,14 @@ export declare const se_GetDistributionCommand: (input: GetDistributionCommandIn
330
399
  * serializeAws_restXmlGetDistributionConfigCommand
331
400
  */
332
401
  export declare const se_GetDistributionConfigCommand: (input: GetDistributionConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
402
+ /**
403
+ * serializeAws_restXmlGetDistributionTenantCommand
404
+ */
405
+ export declare const se_GetDistributionTenantCommand: (input: GetDistributionTenantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
406
+ /**
407
+ * serializeAws_restXmlGetDistributionTenantByDomainCommand
408
+ */
409
+ export declare const se_GetDistributionTenantByDomainCommand: (input: GetDistributionTenantByDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
333
410
  /**
334
411
  * serializeAws_restXmlGetFieldLevelEncryptionCommand
335
412
  */
@@ -354,6 +431,10 @@ export declare const se_GetFunctionCommand: (input: GetFunctionCommandInput, con
354
431
  * serializeAws_restXmlGetInvalidationCommand
355
432
  */
356
433
  export declare const se_GetInvalidationCommand: (input: GetInvalidationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
434
+ /**
435
+ * serializeAws_restXmlGetInvalidationForDistributionTenantCommand
436
+ */
437
+ export declare const se_GetInvalidationForDistributionTenantCommand: (input: GetInvalidationForDistributionTenantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
357
438
  /**
358
439
  * serializeAws_restXmlGetKeyGroupCommand
359
440
  */
@@ -362,6 +443,10 @@ export declare const se_GetKeyGroupCommand: (input: GetKeyGroupCommandInput, con
362
443
  * serializeAws_restXmlGetKeyGroupConfigCommand
363
444
  */
364
445
  export declare const se_GetKeyGroupConfigCommand: (input: GetKeyGroupConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
446
+ /**
447
+ * serializeAws_restXmlGetManagedCertificateDetailsCommand
448
+ */
449
+ export declare const se_GetManagedCertificateDetailsCommand: (input: GetManagedCertificateDetailsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
365
450
  /**
366
451
  * serializeAws_restXmlGetMonitoringSubscriptionCommand
367
452
  */
@@ -430,6 +515,10 @@ export declare const se_ListCloudFrontOriginAccessIdentitiesCommand: (input: Lis
430
515
  * serializeAws_restXmlListConflictingAliasesCommand
431
516
  */
432
517
  export declare const se_ListConflictingAliasesCommand: (input: ListConflictingAliasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
518
+ /**
519
+ * serializeAws_restXmlListConnectionGroupsCommand
520
+ */
521
+ export declare const se_ListConnectionGroupsCommand: (input: ListConnectionGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
433
522
  /**
434
523
  * serializeAws_restXmlListContinuousDeploymentPoliciesCommand
435
524
  */
@@ -446,6 +535,10 @@ export declare const se_ListDistributionsByAnycastIpListIdCommand: (input: ListD
446
535
  * serializeAws_restXmlListDistributionsByCachePolicyIdCommand
447
536
  */
448
537
  export declare const se_ListDistributionsByCachePolicyIdCommand: (input: ListDistributionsByCachePolicyIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
538
+ /**
539
+ * serializeAws_restXmlListDistributionsByConnectionModeCommand
540
+ */
541
+ export declare const se_ListDistributionsByConnectionModeCommand: (input: ListDistributionsByConnectionModeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
449
542
  /**
450
543
  * serializeAws_restXmlListDistributionsByKeyGroupCommand
451
544
  */
@@ -470,6 +563,18 @@ export declare const se_ListDistributionsByVpcOriginIdCommand: (input: ListDistr
470
563
  * serializeAws_restXmlListDistributionsByWebACLIdCommand
471
564
  */
472
565
  export declare const se_ListDistributionsByWebACLIdCommand: (input: ListDistributionsByWebACLIdCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
566
+ /**
567
+ * serializeAws_restXmlListDistributionTenantsCommand
568
+ */
569
+ export declare const se_ListDistributionTenantsCommand: (input: ListDistributionTenantsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
570
+ /**
571
+ * serializeAws_restXmlListDistributionTenantsByCustomizationCommand
572
+ */
573
+ export declare const se_ListDistributionTenantsByCustomizationCommand: (input: ListDistributionTenantsByCustomizationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
574
+ /**
575
+ * serializeAws_restXmlListDomainConflictsCommand
576
+ */
577
+ export declare const se_ListDomainConflictsCommand: (input: ListDomainConflictsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
473
578
  /**
474
579
  * serializeAws_restXmlListFieldLevelEncryptionConfigsCommand
475
580
  */
@@ -486,6 +591,10 @@ export declare const se_ListFunctionsCommand: (input: ListFunctionsCommandInput,
486
591
  * serializeAws_restXmlListInvalidationsCommand
487
592
  */
488
593
  export declare const se_ListInvalidationsCommand: (input: ListInvalidationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
594
+ /**
595
+ * serializeAws_restXmlListInvalidationsForDistributionTenantCommand
596
+ */
597
+ export declare const se_ListInvalidationsForDistributionTenantCommand: (input: ListInvalidationsForDistributionTenantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
489
598
  /**
490
599
  * serializeAws_restXmlListKeyGroupsCommand
491
600
  */
@@ -550,6 +659,10 @@ export declare const se_UpdateCachePolicyCommand: (input: UpdateCachePolicyComma
550
659
  * serializeAws_restXmlUpdateCloudFrontOriginAccessIdentityCommand
551
660
  */
552
661
  export declare const se_UpdateCloudFrontOriginAccessIdentityCommand: (input: UpdateCloudFrontOriginAccessIdentityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
662
+ /**
663
+ * serializeAws_restXmlUpdateConnectionGroupCommand
664
+ */
665
+ export declare const se_UpdateConnectionGroupCommand: (input: UpdateConnectionGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
553
666
  /**
554
667
  * serializeAws_restXmlUpdateContinuousDeploymentPolicyCommand
555
668
  */
@@ -558,10 +671,18 @@ export declare const se_UpdateContinuousDeploymentPolicyCommand: (input: UpdateC
558
671
  * serializeAws_restXmlUpdateDistributionCommand
559
672
  */
560
673
  export declare const se_UpdateDistributionCommand: (input: UpdateDistributionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
674
+ /**
675
+ * serializeAws_restXmlUpdateDistributionTenantCommand
676
+ */
677
+ export declare const se_UpdateDistributionTenantCommand: (input: UpdateDistributionTenantCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
561
678
  /**
562
679
  * serializeAws_restXmlUpdateDistributionWithStagingConfigCommand
563
680
  */
564
681
  export declare const se_UpdateDistributionWithStagingConfigCommand: (input: UpdateDistributionWithStagingConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
682
+ /**
683
+ * serializeAws_restXmlUpdateDomainAssociationCommand
684
+ */
685
+ export declare const se_UpdateDomainAssociationCommand: (input: UpdateDomainAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
565
686
  /**
566
687
  * serializeAws_restXmlUpdateFieldLevelEncryptionConfigCommand
567
688
  */
@@ -610,10 +731,22 @@ export declare const se_UpdateStreamingDistributionCommand: (input: UpdateStream
610
731
  * serializeAws_restXmlUpdateVpcOriginCommand
611
732
  */
612
733
  export declare const se_UpdateVpcOriginCommand: (input: UpdateVpcOriginCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
734
+ /**
735
+ * serializeAws_restXmlVerifyDnsConfigurationCommand
736
+ */
737
+ export declare const se_VerifyDnsConfigurationCommand: (input: VerifyDnsConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
613
738
  /**
614
739
  * deserializeAws_restXmlAssociateAliasCommand
615
740
  */
616
741
  export declare const de_AssociateAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateAliasCommandOutput>;
742
+ /**
743
+ * deserializeAws_restXmlAssociateDistributionTenantWebACLCommand
744
+ */
745
+ export declare const de_AssociateDistributionTenantWebACLCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateDistributionTenantWebACLCommandOutput>;
746
+ /**
747
+ * deserializeAws_restXmlAssociateDistributionWebACLCommand
748
+ */
749
+ export declare const de_AssociateDistributionWebACLCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateDistributionWebACLCommandOutput>;
617
750
  /**
618
751
  * deserializeAws_restXmlCopyDistributionCommand
619
752
  */
@@ -630,6 +763,10 @@ export declare const de_CreateCachePolicyCommand: (output: __HttpResponse, conte
630
763
  * deserializeAws_restXmlCreateCloudFrontOriginAccessIdentityCommand
631
764
  */
632
765
  export declare const de_CreateCloudFrontOriginAccessIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateCloudFrontOriginAccessIdentityCommandOutput>;
766
+ /**
767
+ * deserializeAws_restXmlCreateConnectionGroupCommand
768
+ */
769
+ export declare const de_CreateConnectionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConnectionGroupCommandOutput>;
633
770
  /**
634
771
  * deserializeAws_restXmlCreateContinuousDeploymentPolicyCommand
635
772
  */
@@ -638,6 +775,10 @@ export declare const de_CreateContinuousDeploymentPolicyCommand: (output: __Http
638
775
  * deserializeAws_restXmlCreateDistributionCommand
639
776
  */
640
777
  export declare const de_CreateDistributionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDistributionCommandOutput>;
778
+ /**
779
+ * deserializeAws_restXmlCreateDistributionTenantCommand
780
+ */
781
+ export declare const de_CreateDistributionTenantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDistributionTenantCommandOutput>;
641
782
  /**
642
783
  * deserializeAws_restXmlCreateDistributionWithTagsCommand
643
784
  */
@@ -658,6 +799,10 @@ export declare const de_CreateFunctionCommand: (output: __HttpResponse, context:
658
799
  * deserializeAws_restXmlCreateInvalidationCommand
659
800
  */
660
801
  export declare const de_CreateInvalidationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateInvalidationCommandOutput>;
802
+ /**
803
+ * deserializeAws_restXmlCreateInvalidationForDistributionTenantCommand
804
+ */
805
+ export declare const de_CreateInvalidationForDistributionTenantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateInvalidationForDistributionTenantCommandOutput>;
661
806
  /**
662
807
  * deserializeAws_restXmlCreateKeyGroupCommand
663
808
  */
@@ -714,6 +859,10 @@ export declare const de_DeleteCachePolicyCommand: (output: __HttpResponse, conte
714
859
  * deserializeAws_restXmlDeleteCloudFrontOriginAccessIdentityCommand
715
860
  */
716
861
  export declare const de_DeleteCloudFrontOriginAccessIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteCloudFrontOriginAccessIdentityCommandOutput>;
862
+ /**
863
+ * deserializeAws_restXmlDeleteConnectionGroupCommand
864
+ */
865
+ export declare const de_DeleteConnectionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectionGroupCommandOutput>;
717
866
  /**
718
867
  * deserializeAws_restXmlDeleteContinuousDeploymentPolicyCommand
719
868
  */
@@ -722,6 +871,10 @@ export declare const de_DeleteContinuousDeploymentPolicyCommand: (output: __Http
722
871
  * deserializeAws_restXmlDeleteDistributionCommand
723
872
  */
724
873
  export declare const de_DeleteDistributionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDistributionCommandOutput>;
874
+ /**
875
+ * deserializeAws_restXmlDeleteDistributionTenantCommand
876
+ */
877
+ export declare const de_DeleteDistributionTenantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDistributionTenantCommandOutput>;
725
878
  /**
726
879
  * deserializeAws_restXmlDeleteFieldLevelEncryptionConfigCommand
727
880
  */
@@ -782,6 +935,14 @@ export declare const de_DescribeFunctionCommand: (output: __HttpResponse, contex
782
935
  * deserializeAws_restXmlDescribeKeyValueStoreCommand
783
936
  */
784
937
  export declare const de_DescribeKeyValueStoreCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeKeyValueStoreCommandOutput>;
938
+ /**
939
+ * deserializeAws_restXmlDisassociateDistributionTenantWebACLCommand
940
+ */
941
+ export declare const de_DisassociateDistributionTenantWebACLCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateDistributionTenantWebACLCommandOutput>;
942
+ /**
943
+ * deserializeAws_restXmlDisassociateDistributionWebACLCommand
944
+ */
945
+ export declare const de_DisassociateDistributionWebACLCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateDistributionWebACLCommandOutput>;
785
946
  /**
786
947
  * deserializeAws_restXmlGetAnycastIpListCommand
787
948
  */
@@ -802,6 +963,14 @@ export declare const de_GetCloudFrontOriginAccessIdentityCommand: (output: __Htt
802
963
  * deserializeAws_restXmlGetCloudFrontOriginAccessIdentityConfigCommand
803
964
  */
804
965
  export declare const de_GetCloudFrontOriginAccessIdentityConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetCloudFrontOriginAccessIdentityConfigCommandOutput>;
966
+ /**
967
+ * deserializeAws_restXmlGetConnectionGroupCommand
968
+ */
969
+ export declare const de_GetConnectionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConnectionGroupCommandOutput>;
970
+ /**
971
+ * deserializeAws_restXmlGetConnectionGroupByRoutingEndpointCommand
972
+ */
973
+ export declare const de_GetConnectionGroupByRoutingEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConnectionGroupByRoutingEndpointCommandOutput>;
805
974
  /**
806
975
  * deserializeAws_restXmlGetContinuousDeploymentPolicyCommand
807
976
  */
@@ -818,6 +987,14 @@ export declare const de_GetDistributionCommand: (output: __HttpResponse, context
818
987
  * deserializeAws_restXmlGetDistributionConfigCommand
819
988
  */
820
989
  export declare const de_GetDistributionConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDistributionConfigCommandOutput>;
990
+ /**
991
+ * deserializeAws_restXmlGetDistributionTenantCommand
992
+ */
993
+ export declare const de_GetDistributionTenantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDistributionTenantCommandOutput>;
994
+ /**
995
+ * deserializeAws_restXmlGetDistributionTenantByDomainCommand
996
+ */
997
+ export declare const de_GetDistributionTenantByDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDistributionTenantByDomainCommandOutput>;
821
998
  /**
822
999
  * deserializeAws_restXmlGetFieldLevelEncryptionCommand
823
1000
  */
@@ -842,6 +1019,10 @@ export declare const de_GetFunctionCommand: (output: __HttpResponse, context: __
842
1019
  * deserializeAws_restXmlGetInvalidationCommand
843
1020
  */
844
1021
  export declare const de_GetInvalidationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInvalidationCommandOutput>;
1022
+ /**
1023
+ * deserializeAws_restXmlGetInvalidationForDistributionTenantCommand
1024
+ */
1025
+ export declare const de_GetInvalidationForDistributionTenantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetInvalidationForDistributionTenantCommandOutput>;
845
1026
  /**
846
1027
  * deserializeAws_restXmlGetKeyGroupCommand
847
1028
  */
@@ -850,6 +1031,10 @@ export declare const de_GetKeyGroupCommand: (output: __HttpResponse, context: __
850
1031
  * deserializeAws_restXmlGetKeyGroupConfigCommand
851
1032
  */
852
1033
  export declare const de_GetKeyGroupConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetKeyGroupConfigCommandOutput>;
1034
+ /**
1035
+ * deserializeAws_restXmlGetManagedCertificateDetailsCommand
1036
+ */
1037
+ export declare const de_GetManagedCertificateDetailsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetManagedCertificateDetailsCommandOutput>;
853
1038
  /**
854
1039
  * deserializeAws_restXmlGetMonitoringSubscriptionCommand
855
1040
  */
@@ -918,6 +1103,10 @@ export declare const de_ListCloudFrontOriginAccessIdentitiesCommand: (output: __
918
1103
  * deserializeAws_restXmlListConflictingAliasesCommand
919
1104
  */
920
1105
  export declare const de_ListConflictingAliasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConflictingAliasesCommandOutput>;
1106
+ /**
1107
+ * deserializeAws_restXmlListConnectionGroupsCommand
1108
+ */
1109
+ export declare const de_ListConnectionGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectionGroupsCommandOutput>;
921
1110
  /**
922
1111
  * deserializeAws_restXmlListContinuousDeploymentPoliciesCommand
923
1112
  */
@@ -934,6 +1123,10 @@ export declare const de_ListDistributionsByAnycastIpListIdCommand: (output: __Ht
934
1123
  * deserializeAws_restXmlListDistributionsByCachePolicyIdCommand
935
1124
  */
936
1125
  export declare const de_ListDistributionsByCachePolicyIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDistributionsByCachePolicyIdCommandOutput>;
1126
+ /**
1127
+ * deserializeAws_restXmlListDistributionsByConnectionModeCommand
1128
+ */
1129
+ export declare const de_ListDistributionsByConnectionModeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDistributionsByConnectionModeCommandOutput>;
937
1130
  /**
938
1131
  * deserializeAws_restXmlListDistributionsByKeyGroupCommand
939
1132
  */
@@ -958,6 +1151,18 @@ export declare const de_ListDistributionsByVpcOriginIdCommand: (output: __HttpRe
958
1151
  * deserializeAws_restXmlListDistributionsByWebACLIdCommand
959
1152
  */
960
1153
  export declare const de_ListDistributionsByWebACLIdCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDistributionsByWebACLIdCommandOutput>;
1154
+ /**
1155
+ * deserializeAws_restXmlListDistributionTenantsCommand
1156
+ */
1157
+ export declare const de_ListDistributionTenantsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDistributionTenantsCommandOutput>;
1158
+ /**
1159
+ * deserializeAws_restXmlListDistributionTenantsByCustomizationCommand
1160
+ */
1161
+ export declare const de_ListDistributionTenantsByCustomizationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDistributionTenantsByCustomizationCommandOutput>;
1162
+ /**
1163
+ * deserializeAws_restXmlListDomainConflictsCommand
1164
+ */
1165
+ export declare const de_ListDomainConflictsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDomainConflictsCommandOutput>;
961
1166
  /**
962
1167
  * deserializeAws_restXmlListFieldLevelEncryptionConfigsCommand
963
1168
  */
@@ -974,6 +1179,10 @@ export declare const de_ListFunctionsCommand: (output: __HttpResponse, context:
974
1179
  * deserializeAws_restXmlListInvalidationsCommand
975
1180
  */
976
1181
  export declare const de_ListInvalidationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInvalidationsCommandOutput>;
1182
+ /**
1183
+ * deserializeAws_restXmlListInvalidationsForDistributionTenantCommand
1184
+ */
1185
+ export declare const de_ListInvalidationsForDistributionTenantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInvalidationsForDistributionTenantCommandOutput>;
977
1186
  /**
978
1187
  * deserializeAws_restXmlListKeyGroupsCommand
979
1188
  */
@@ -1038,6 +1247,10 @@ export declare const de_UpdateCachePolicyCommand: (output: __HttpResponse, conte
1038
1247
  * deserializeAws_restXmlUpdateCloudFrontOriginAccessIdentityCommand
1039
1248
  */
1040
1249
  export declare const de_UpdateCloudFrontOriginAccessIdentityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateCloudFrontOriginAccessIdentityCommandOutput>;
1250
+ /**
1251
+ * deserializeAws_restXmlUpdateConnectionGroupCommand
1252
+ */
1253
+ export declare const de_UpdateConnectionGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateConnectionGroupCommandOutput>;
1041
1254
  /**
1042
1255
  * deserializeAws_restXmlUpdateContinuousDeploymentPolicyCommand
1043
1256
  */
@@ -1046,10 +1259,18 @@ export declare const de_UpdateContinuousDeploymentPolicyCommand: (output: __Http
1046
1259
  * deserializeAws_restXmlUpdateDistributionCommand
1047
1260
  */
1048
1261
  export declare const de_UpdateDistributionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDistributionCommandOutput>;
1262
+ /**
1263
+ * deserializeAws_restXmlUpdateDistributionTenantCommand
1264
+ */
1265
+ export declare const de_UpdateDistributionTenantCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDistributionTenantCommandOutput>;
1049
1266
  /**
1050
1267
  * deserializeAws_restXmlUpdateDistributionWithStagingConfigCommand
1051
1268
  */
1052
1269
  export declare const de_UpdateDistributionWithStagingConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDistributionWithStagingConfigCommandOutput>;
1270
+ /**
1271
+ * deserializeAws_restXmlUpdateDomainAssociationCommand
1272
+ */
1273
+ export declare const de_UpdateDomainAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDomainAssociationCommandOutput>;
1053
1274
  /**
1054
1275
  * deserializeAws_restXmlUpdateFieldLevelEncryptionConfigCommand
1055
1276
  */
@@ -1098,3 +1319,7 @@ export declare const de_UpdateStreamingDistributionCommand: (output: __HttpRespo
1098
1319
  * deserializeAws_restXmlUpdateVpcOriginCommand
1099
1320
  */
1100
1321
  export declare const de_UpdateVpcOriginCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateVpcOriginCommandOutput>;
1322
+ /**
1323
+ * deserializeAws_restXmlVerifyDnsConfigurationCommand
1324
+ */
1325
+ export declare const de_VerifyDnsConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<VerifyDnsConfigurationCommandOutput>;