@aws-sdk/client-route53globalresolver 3.942.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 (245) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +581 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +2674 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +36 -0
  11. package/dist-es/Route53GlobalResolver.js +101 -0
  12. package/dist-es/Route53GlobalResolverClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/AssociateHostedZoneCommand.js +16 -0
  16. package/dist-es/commands/BatchCreateFirewallRuleCommand.js +16 -0
  17. package/dist-es/commands/BatchDeleteFirewallRuleCommand.js +16 -0
  18. package/dist-es/commands/BatchUpdateFirewallRuleCommand.js +16 -0
  19. package/dist-es/commands/CreateAccessSourceCommand.js +16 -0
  20. package/dist-es/commands/CreateAccessTokenCommand.js +16 -0
  21. package/dist-es/commands/CreateDNSViewCommand.js +16 -0
  22. package/dist-es/commands/CreateFirewallDomainListCommand.js +16 -0
  23. package/dist-es/commands/CreateFirewallRuleCommand.js +16 -0
  24. package/dist-es/commands/CreateGlobalResolverCommand.js +16 -0
  25. package/dist-es/commands/DeleteAccessSourceCommand.js +16 -0
  26. package/dist-es/commands/DeleteAccessTokenCommand.js +16 -0
  27. package/dist-es/commands/DeleteDNSViewCommand.js +16 -0
  28. package/dist-es/commands/DeleteFirewallDomainListCommand.js +16 -0
  29. package/dist-es/commands/DeleteFirewallRuleCommand.js +16 -0
  30. package/dist-es/commands/DeleteGlobalResolverCommand.js +16 -0
  31. package/dist-es/commands/DisableDNSViewCommand.js +16 -0
  32. package/dist-es/commands/DisassociateHostedZoneCommand.js +16 -0
  33. package/dist-es/commands/EnableDNSViewCommand.js +16 -0
  34. package/dist-es/commands/GetAccessSourceCommand.js +16 -0
  35. package/dist-es/commands/GetAccessTokenCommand.js +16 -0
  36. package/dist-es/commands/GetDNSViewCommand.js +16 -0
  37. package/dist-es/commands/GetFirewallDomainListCommand.js +16 -0
  38. package/dist-es/commands/GetFirewallRuleCommand.js +16 -0
  39. package/dist-es/commands/GetGlobalResolverCommand.js +16 -0
  40. package/dist-es/commands/GetHostedZoneAssociationCommand.js +16 -0
  41. package/dist-es/commands/GetManagedFirewallDomainListCommand.js +16 -0
  42. package/dist-es/commands/ImportFirewallDomainsCommand.js +16 -0
  43. package/dist-es/commands/ListAccessSourcesCommand.js +16 -0
  44. package/dist-es/commands/ListAccessTokensCommand.js +16 -0
  45. package/dist-es/commands/ListDNSViewsCommand.js +16 -0
  46. package/dist-es/commands/ListFirewallDomainListsCommand.js +16 -0
  47. package/dist-es/commands/ListFirewallDomainsCommand.js +16 -0
  48. package/dist-es/commands/ListFirewallRulesCommand.js +16 -0
  49. package/dist-es/commands/ListGlobalResolversCommand.js +16 -0
  50. package/dist-es/commands/ListHostedZoneAssociationsCommand.js +16 -0
  51. package/dist-es/commands/ListManagedFirewallDomainListsCommand.js +16 -0
  52. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  53. package/dist-es/commands/TagResourceCommand.js +16 -0
  54. package/dist-es/commands/UntagResourceCommand.js +16 -0
  55. package/dist-es/commands/UpdateAccessSourceCommand.js +16 -0
  56. package/dist-es/commands/UpdateAccessTokenCommand.js +16 -0
  57. package/dist-es/commands/UpdateDNSViewCommand.js +16 -0
  58. package/dist-es/commands/UpdateFirewallDomainsCommand.js +16 -0
  59. package/dist-es/commands/UpdateFirewallRuleCommand.js +16 -0
  60. package/dist-es/commands/UpdateGlobalResolverCommand.js +16 -0
  61. package/dist-es/commands/UpdateHostedZoneAssociationCommand.js +16 -0
  62. package/dist-es/commands/index.js +47 -0
  63. package/dist-es/endpoint/EndpointParameters.js +11 -0
  64. package/dist-es/endpoint/endpointResolver.js +14 -0
  65. package/dist-es/endpoint/ruleset.js +4 -0
  66. package/dist-es/extensionConfiguration.js +1 -0
  67. package/dist-es/index.js +7 -0
  68. package/dist-es/models/Route53GlobalResolverServiceException.js +8 -0
  69. package/dist-es/models/enums.js +74 -0
  70. package/dist-es/models/errors.js +117 -0
  71. package/dist-es/models/models_0.js +1 -0
  72. package/dist-es/pagination/Interfaces.js +1 -0
  73. package/dist-es/pagination/ListAccessSourcesPaginator.js +4 -0
  74. package/dist-es/pagination/ListAccessTokensPaginator.js +4 -0
  75. package/dist-es/pagination/ListDNSViewsPaginator.js +4 -0
  76. package/dist-es/pagination/ListFirewallDomainListsPaginator.js +4 -0
  77. package/dist-es/pagination/ListFirewallDomainsPaginator.js +4 -0
  78. package/dist-es/pagination/ListFirewallRulesPaginator.js +4 -0
  79. package/dist-es/pagination/ListGlobalResolversPaginator.js +4 -0
  80. package/dist-es/pagination/ListHostedZoneAssociationsPaginator.js +4 -0
  81. package/dist-es/pagination/ListManagedFirewallDomainListsPaginator.js +4 -0
  82. package/dist-es/pagination/index.js +10 -0
  83. package/dist-es/runtimeConfig.browser.js +34 -0
  84. package/dist-es/runtimeConfig.js +51 -0
  85. package/dist-es/runtimeConfig.native.js +11 -0
  86. package/dist-es/runtimeConfig.shared.js +32 -0
  87. package/dist-es/runtimeExtensions.js +9 -0
  88. package/dist-es/schemas/schemas_0.js +1651 -0
  89. package/dist-types/Route53GlobalResolver.d.ts +342 -0
  90. package/dist-types/Route53GlobalResolverClient.d.ts +243 -0
  91. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  92. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  93. package/dist-types/commands/AssociateHostedZoneCommand.d.ts +104 -0
  94. package/dist-types/commands/BatchCreateFirewallRuleCommand.d.ts +156 -0
  95. package/dist-types/commands/BatchDeleteFirewallRuleCommand.d.ts +113 -0
  96. package/dist-types/commands/BatchUpdateFirewallRuleCommand.d.ts +151 -0
  97. package/dist-types/commands/CreateAccessSourceCommand.d.ts +144 -0
  98. package/dist-types/commands/CreateAccessTokenCommand.d.ts +109 -0
  99. package/dist-types/commands/CreateDNSViewCommand.d.ts +115 -0
  100. package/dist-types/commands/CreateFirewallDomainListCommand.d.ts +109 -0
  101. package/dist-types/commands/CreateFirewallRuleCommand.d.ts +124 -0
  102. package/dist-types/commands/CreateGlobalResolverCommand.d.ts +116 -0
  103. package/dist-types/commands/DeleteAccessSourceCommand.d.ts +101 -0
  104. package/dist-types/commands/DeleteAccessTokenCommand.d.ts +91 -0
  105. package/dist-types/commands/DeleteDNSViewCommand.d.ts +103 -0
  106. package/dist-types/commands/DeleteFirewallDomainListCommand.d.ts +95 -0
  107. package/dist-types/commands/DeleteFirewallRuleCommand.d.ts +108 -0
  108. package/dist-types/commands/DeleteGlobalResolverCommand.d.ts +107 -0
  109. package/dist-types/commands/DisableDNSViewCommand.d.ts +103 -0
  110. package/dist-types/commands/DisassociateHostedZoneCommand.d.ts +100 -0
  111. package/dist-types/commands/EnableDNSViewCommand.d.ts +103 -0
  112. package/dist-types/commands/GetAccessSourceCommand.d.ts +98 -0
  113. package/dist-types/commands/GetAccessTokenCommand.d.ts +99 -0
  114. package/dist-types/commands/GetDNSViewCommand.d.ts +100 -0
  115. package/dist-types/commands/GetFirewallDomainListCommand.d.ts +99 -0
  116. package/dist-types/commands/GetFirewallRuleCommand.d.ts +105 -0
  117. package/dist-types/commands/GetGlobalResolverCommand.d.ts +104 -0
  118. package/dist-types/commands/GetHostedZoneAssociationCommand.d.ts +96 -0
  119. package/dist-types/commands/GetManagedFirewallDomainListCommand.d.ts +92 -0
  120. package/dist-types/commands/ImportFirewallDomainsCommand.d.ts +96 -0
  121. package/dist-types/commands/ListAccessSourcesCommand.d.ts +106 -0
  122. package/dist-types/commands/ListAccessTokensCommand.d.ts +109 -0
  123. package/dist-types/commands/ListDNSViewsCommand.d.ts +107 -0
  124. package/dist-types/commands/ListFirewallDomainListsCommand.d.ts +103 -0
  125. package/dist-types/commands/ListFirewallDomainsCommand.d.ts +94 -0
  126. package/dist-types/commands/ListFirewallRulesCommand.d.ts +117 -0
  127. package/dist-types/commands/ListGlobalResolversCommand.d.ts +107 -0
  128. package/dist-types/commands/ListHostedZoneAssociationsCommand.d.ts +103 -0
  129. package/dist-types/commands/ListManagedFirewallDomainListsCommand.d.ts +96 -0
  130. package/dist-types/commands/ListTagsForResourceCommand.d.ts +79 -0
  131. package/dist-types/commands/TagResourceCommand.d.ts +84 -0
  132. package/dist-types/commands/UntagResourceCommand.d.ts +81 -0
  133. package/dist-types/commands/UpdateAccessSourceCommand.d.ts +108 -0
  134. package/dist-types/commands/UpdateAccessTokenCommand.d.ts +94 -0
  135. package/dist-types/commands/UpdateDNSViewCommand.d.ts +108 -0
  136. package/dist-types/commands/UpdateFirewallDomainsCommand.d.ts +98 -0
  137. package/dist-types/commands/UpdateFirewallRuleCommand.d.ts +119 -0
  138. package/dist-types/commands/UpdateGlobalResolverCommand.d.ts +110 -0
  139. package/dist-types/commands/UpdateHostedZoneAssociationCommand.d.ts +100 -0
  140. package/dist-types/commands/index.d.ts +47 -0
  141. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  142. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  143. package/dist-types/endpoint/ruleset.d.ts +2 -0
  144. package/dist-types/extensionConfiguration.d.ts +9 -0
  145. package/dist-types/index.d.ts +16 -0
  146. package/dist-types/models/Route53GlobalResolverServiceException.d.ts +14 -0
  147. package/dist-types/models/enums.d.ts +194 -0
  148. package/dist-types/models/errors.d.ts +162 -0
  149. package/dist-types/models/models_0.d.ts +3784 -0
  150. package/dist-types/pagination/Interfaces.d.ts +8 -0
  151. package/dist-types/pagination/ListAccessSourcesPaginator.d.ts +7 -0
  152. package/dist-types/pagination/ListAccessTokensPaginator.d.ts +7 -0
  153. package/dist-types/pagination/ListDNSViewsPaginator.d.ts +7 -0
  154. package/dist-types/pagination/ListFirewallDomainListsPaginator.d.ts +7 -0
  155. package/dist-types/pagination/ListFirewallDomainsPaginator.d.ts +7 -0
  156. package/dist-types/pagination/ListFirewallRulesPaginator.d.ts +7 -0
  157. package/dist-types/pagination/ListGlobalResolversPaginator.d.ts +7 -0
  158. package/dist-types/pagination/ListHostedZoneAssociationsPaginator.d.ts +7 -0
  159. package/dist-types/pagination/ListManagedFirewallDomainListsPaginator.d.ts +7 -0
  160. package/dist-types/pagination/index.d.ts +10 -0
  161. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  162. package/dist-types/runtimeConfig.d.ts +51 -0
  163. package/dist-types/runtimeConfig.native.d.ts +50 -0
  164. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  165. package/dist-types/runtimeExtensions.d.ts +17 -0
  166. package/dist-types/schemas/schemas_0.d.ts +192 -0
  167. package/dist-types/ts3.4/Route53GlobalResolver.d.ts +809 -0
  168. package/dist-types/ts3.4/Route53GlobalResolverClient.d.ts +408 -0
  169. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  170. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  171. package/dist-types/ts3.4/commands/AssociateHostedZoneCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/BatchCreateFirewallRuleCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/BatchDeleteFirewallRuleCommand.d.ts +51 -0
  174. package/dist-types/ts3.4/commands/BatchUpdateFirewallRuleCommand.d.ts +51 -0
  175. package/dist-types/ts3.4/commands/CreateAccessSourceCommand.d.ts +51 -0
  176. package/dist-types/ts3.4/commands/CreateAccessTokenCommand.d.ts +50 -0
  177. package/dist-types/ts3.4/commands/CreateDNSViewCommand.d.ts +47 -0
  178. package/dist-types/ts3.4/commands/CreateFirewallDomainListCommand.d.ts +51 -0
  179. package/dist-types/ts3.4/commands/CreateFirewallRuleCommand.d.ts +51 -0
  180. package/dist-types/ts3.4/commands/CreateGlobalResolverCommand.d.ts +51 -0
  181. package/dist-types/ts3.4/commands/DeleteAccessSourceCommand.d.ts +51 -0
  182. package/dist-types/ts3.4/commands/DeleteAccessTokenCommand.d.ts +50 -0
  183. package/dist-types/ts3.4/commands/DeleteDNSViewCommand.d.ts +47 -0
  184. package/dist-types/ts3.4/commands/DeleteFirewallDomainListCommand.d.ts +51 -0
  185. package/dist-types/ts3.4/commands/DeleteFirewallRuleCommand.d.ts +51 -0
  186. package/dist-types/ts3.4/commands/DeleteGlobalResolverCommand.d.ts +51 -0
  187. package/dist-types/ts3.4/commands/DisableDNSViewCommand.d.ts +47 -0
  188. package/dist-types/ts3.4/commands/DisassociateHostedZoneCommand.d.ts +51 -0
  189. package/dist-types/ts3.4/commands/EnableDNSViewCommand.d.ts +47 -0
  190. package/dist-types/ts3.4/commands/GetAccessSourceCommand.d.ts +50 -0
  191. package/dist-types/ts3.4/commands/GetAccessTokenCommand.d.ts +47 -0
  192. package/dist-types/ts3.4/commands/GetDNSViewCommand.d.ts +47 -0
  193. package/dist-types/ts3.4/commands/GetFirewallDomainListCommand.d.ts +51 -0
  194. package/dist-types/ts3.4/commands/GetFirewallRuleCommand.d.ts +50 -0
  195. package/dist-types/ts3.4/commands/GetGlobalResolverCommand.d.ts +50 -0
  196. package/dist-types/ts3.4/commands/GetHostedZoneAssociationCommand.d.ts +51 -0
  197. package/dist-types/ts3.4/commands/GetManagedFirewallDomainListCommand.d.ts +51 -0
  198. package/dist-types/ts3.4/commands/ImportFirewallDomainsCommand.d.ts +51 -0
  199. package/dist-types/ts3.4/commands/ListAccessSourcesCommand.d.ts +50 -0
  200. package/dist-types/ts3.4/commands/ListAccessTokensCommand.d.ts +50 -0
  201. package/dist-types/ts3.4/commands/ListDNSViewsCommand.d.ts +47 -0
  202. package/dist-types/ts3.4/commands/ListFirewallDomainListsCommand.d.ts +51 -0
  203. package/dist-types/ts3.4/commands/ListFirewallDomainsCommand.d.ts +51 -0
  204. package/dist-types/ts3.4/commands/ListFirewallRulesCommand.d.ts +50 -0
  205. package/dist-types/ts3.4/commands/ListGlobalResolversCommand.d.ts +51 -0
  206. package/dist-types/ts3.4/commands/ListHostedZoneAssociationsCommand.d.ts +51 -0
  207. package/dist-types/ts3.4/commands/ListManagedFirewallDomainListsCommand.d.ts +51 -0
  208. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  209. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  210. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  211. package/dist-types/ts3.4/commands/UpdateAccessSourceCommand.d.ts +51 -0
  212. package/dist-types/ts3.4/commands/UpdateAccessTokenCommand.d.ts +50 -0
  213. package/dist-types/ts3.4/commands/UpdateDNSViewCommand.d.ts +47 -0
  214. package/dist-types/ts3.4/commands/UpdateFirewallDomainsCommand.d.ts +51 -0
  215. package/dist-types/ts3.4/commands/UpdateFirewallRuleCommand.d.ts +51 -0
  216. package/dist-types/ts3.4/commands/UpdateGlobalResolverCommand.d.ts +51 -0
  217. package/dist-types/ts3.4/commands/UpdateHostedZoneAssociationCommand.d.ts +51 -0
  218. package/dist-types/ts3.4/commands/index.d.ts +47 -0
  219. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  220. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  221. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  222. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  223. package/dist-types/ts3.4/index.d.ts +11 -0
  224. package/dist-types/ts3.4/models/Route53GlobalResolverServiceException.d.ts +9 -0
  225. package/dist-types/ts3.4/models/enums.d.ts +101 -0
  226. package/dist-types/ts3.4/models/errors.d.ts +69 -0
  227. package/dist-types/ts3.4/models/models_0.d.ts +879 -0
  228. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  229. package/dist-types/ts3.4/pagination/ListAccessSourcesPaginator.d.ts +11 -0
  230. package/dist-types/ts3.4/pagination/ListAccessTokensPaginator.d.ts +11 -0
  231. package/dist-types/ts3.4/pagination/ListDNSViewsPaginator.d.ts +11 -0
  232. package/dist-types/ts3.4/pagination/ListFirewallDomainListsPaginator.d.ts +11 -0
  233. package/dist-types/ts3.4/pagination/ListFirewallDomainsPaginator.d.ts +11 -0
  234. package/dist-types/ts3.4/pagination/ListFirewallRulesPaginator.d.ts +11 -0
  235. package/dist-types/ts3.4/pagination/ListGlobalResolversPaginator.d.ts +11 -0
  236. package/dist-types/ts3.4/pagination/ListHostedZoneAssociationsPaginator.d.ts +11 -0
  237. package/dist-types/ts3.4/pagination/ListManagedFirewallDomainListsPaginator.d.ts +11 -0
  238. package/dist-types/ts3.4/pagination/index.d.ts +10 -0
  239. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  240. package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
  241. package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
  242. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
  243. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  244. package/dist-types/ts3.4/schemas/schemas_0.d.ts +199 -0
  245. package/package.json +99 -0
@@ -0,0 +1,100 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetDNSViewInput, GetDNSViewOutput } from "../models/models_0";
4
+ import { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53GlobalResolverClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetDNSViewCommand}.
14
+ */
15
+ export interface GetDNSViewCommandInput extends GetDNSViewInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetDNSViewCommand}.
21
+ */
22
+ export interface GetDNSViewCommandOutput extends GetDNSViewOutput, __MetadataBearer {
23
+ }
24
+ declare const GetDNSViewCommand_base: {
25
+ new (input: GetDNSViewCommandInput): import("@smithy/smithy-client").CommandImpl<GetDNSViewCommandInput, GetDNSViewCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetDNSViewCommandInput): import("@smithy/smithy-client").CommandImpl<GetDNSViewCommandInput, GetDNSViewCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves information about a DNS view.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { Route53GlobalResolverClient, GetDNSViewCommand } from "@aws-sdk/client-route53globalresolver"; // ES Modules import
35
+ * // const { Route53GlobalResolverClient, GetDNSViewCommand } = require("@aws-sdk/client-route53globalresolver"); // CommonJS import
36
+ * // import type { Route53GlobalResolverClientConfig } from "@aws-sdk/client-route53globalresolver";
37
+ * const config = {}; // type is Route53GlobalResolverClientConfig
38
+ * const client = new Route53GlobalResolverClient(config);
39
+ * const input = { // GetDNSViewInput
40
+ * dnsViewId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new GetDNSViewCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // GetDNSViewOutput
45
+ * // id: "STRING_VALUE", // required
46
+ * // arn: "STRING_VALUE", // required
47
+ * // clientToken: "STRING_VALUE",
48
+ * // dnssecValidation: "ENABLED" || "DISABLED", // required
49
+ * // ednsClientSubnet: "ENABLED" || "DISABLED", // required
50
+ * // firewallRulesFailOpen: "ENABLED" || "DISABLED", // required
51
+ * // name: "STRING_VALUE", // required
52
+ * // description: "STRING_VALUE",
53
+ * // globalResolverId: "STRING_VALUE", // required
54
+ * // createdAt: new Date("TIMESTAMP"), // required
55
+ * // updatedAt: new Date("TIMESTAMP"), // required
56
+ * // status: "CREATING" || "OPERATIONAL" || "UPDATING" || "ENABLING" || "DISABLING" || "DISABLED" || "DELETING", // required
57
+ * // };
58
+ *
59
+ * ```
60
+ *
61
+ * @param GetDNSViewCommandInput - {@link GetDNSViewCommandInput}
62
+ * @returns {@link GetDNSViewCommandOutput}
63
+ * @see {@link GetDNSViewCommandInput} for command's `input` shape.
64
+ * @see {@link GetDNSViewCommandOutput} for command's `response` shape.
65
+ * @see {@link Route53GlobalResolverClientResolvedConfig | config} for Route53GlobalResolverClient's `config` shape.
66
+ *
67
+ * @throws {@link AccessDeniedException} (client fault)
68
+ * <p>You don't have permission to perform this operation. Check your IAM permissions and try again.</p>
69
+ *
70
+ * @throws {@link InternalServerException} (server fault)
71
+ * <p>An internal server error occurred. Try again later.</p>
72
+ *
73
+ * @throws {@link ResourceNotFoundException} (client fault)
74
+ * <p>The specified resource was not found. Verify the resource ID and try again.</p>
75
+ *
76
+ * @throws {@link ThrottlingException} (client fault)
77
+ * <p>The request was throttled due to too many requests. Wait a moment and try again.</p>
78
+ *
79
+ * @throws {@link ValidationException} (client fault)
80
+ * <p>The input parameters are invalid. Check the parameter values and try again.</p>
81
+ *
82
+ * @throws {@link Route53GlobalResolverServiceException}
83
+ * <p>Base exception class for all service exceptions from Route53GlobalResolver service.</p>
84
+ *
85
+ *
86
+ * @public
87
+ */
88
+ export declare class GetDNSViewCommand extends GetDNSViewCommand_base {
89
+ /** @internal type navigation helper, not in runtime. */
90
+ protected static __types: {
91
+ api: {
92
+ input: GetDNSViewInput;
93
+ output: GetDNSViewOutput;
94
+ };
95
+ sdk: {
96
+ input: GetDNSViewCommandInput;
97
+ output: GetDNSViewCommandOutput;
98
+ };
99
+ };
100
+ }
@@ -0,0 +1,99 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetFirewallDomainListInput, GetFirewallDomainListOutput } from "../models/models_0";
4
+ import { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53GlobalResolverClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetFirewallDomainListCommand}.
14
+ */
15
+ export interface GetFirewallDomainListCommandInput extends GetFirewallDomainListInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetFirewallDomainListCommand}.
21
+ */
22
+ export interface GetFirewallDomainListCommandOutput extends GetFirewallDomainListOutput, __MetadataBearer {
23
+ }
24
+ declare const GetFirewallDomainListCommand_base: {
25
+ new (input: GetFirewallDomainListCommandInput): import("@smithy/smithy-client").CommandImpl<GetFirewallDomainListCommandInput, GetFirewallDomainListCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetFirewallDomainListCommandInput): import("@smithy/smithy-client").CommandImpl<GetFirewallDomainListCommandInput, GetFirewallDomainListCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves information about a firewall domain list.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { Route53GlobalResolverClient, GetFirewallDomainListCommand } from "@aws-sdk/client-route53globalresolver"; // ES Modules import
35
+ * // const { Route53GlobalResolverClient, GetFirewallDomainListCommand } = require("@aws-sdk/client-route53globalresolver"); // CommonJS import
36
+ * // import type { Route53GlobalResolverClientConfig } from "@aws-sdk/client-route53globalresolver";
37
+ * const config = {}; // type is Route53GlobalResolverClientConfig
38
+ * const client = new Route53GlobalResolverClient(config);
39
+ * const input = { // GetFirewallDomainListInput
40
+ * firewallDomainListId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new GetFirewallDomainListCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // GetFirewallDomainListOutput
45
+ * // arn: "STRING_VALUE", // required
46
+ * // globalResolverId: "STRING_VALUE", // required
47
+ * // clientToken: "STRING_VALUE",
48
+ * // createdAt: new Date("TIMESTAMP"), // required
49
+ * // description: "STRING_VALUE",
50
+ * // domainCount: Number("int"), // required
51
+ * // id: "STRING_VALUE", // required
52
+ * // name: "STRING_VALUE", // required
53
+ * // status: "CREATING" || "OPERATIONAL" || "UPDATING" || "DELETING", // required
54
+ * // statusMessage: "STRING_VALUE",
55
+ * // updatedAt: new Date("TIMESTAMP"), // required
56
+ * // };
57
+ *
58
+ * ```
59
+ *
60
+ * @param GetFirewallDomainListCommandInput - {@link GetFirewallDomainListCommandInput}
61
+ * @returns {@link GetFirewallDomainListCommandOutput}
62
+ * @see {@link GetFirewallDomainListCommandInput} for command's `input` shape.
63
+ * @see {@link GetFirewallDomainListCommandOutput} for command's `response` shape.
64
+ * @see {@link Route53GlobalResolverClientResolvedConfig | config} for Route53GlobalResolverClient's `config` shape.
65
+ *
66
+ * @throws {@link AccessDeniedException} (client fault)
67
+ * <p>You don't have permission to perform this operation. Check your IAM permissions and try again.</p>
68
+ *
69
+ * @throws {@link InternalServerException} (server fault)
70
+ * <p>An internal server error occurred. Try again later.</p>
71
+ *
72
+ * @throws {@link ResourceNotFoundException} (client fault)
73
+ * <p>The specified resource was not found. Verify the resource ID and try again.</p>
74
+ *
75
+ * @throws {@link ThrottlingException} (client fault)
76
+ * <p>The request was throttled due to too many requests. Wait a moment and try again.</p>
77
+ *
78
+ * @throws {@link ValidationException} (client fault)
79
+ * <p>The input parameters are invalid. Check the parameter values and try again.</p>
80
+ *
81
+ * @throws {@link Route53GlobalResolverServiceException}
82
+ * <p>Base exception class for all service exceptions from Route53GlobalResolver service.</p>
83
+ *
84
+ *
85
+ * @public
86
+ */
87
+ export declare class GetFirewallDomainListCommand extends GetFirewallDomainListCommand_base {
88
+ /** @internal type navigation helper, not in runtime. */
89
+ protected static __types: {
90
+ api: {
91
+ input: GetFirewallDomainListInput;
92
+ output: GetFirewallDomainListOutput;
93
+ };
94
+ sdk: {
95
+ input: GetFirewallDomainListCommandInput;
96
+ output: GetFirewallDomainListCommandOutput;
97
+ };
98
+ };
99
+ }
@@ -0,0 +1,105 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetFirewallRuleInput, GetFirewallRuleOutput } from "../models/models_0";
4
+ import { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53GlobalResolverClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetFirewallRuleCommand}.
14
+ */
15
+ export interface GetFirewallRuleCommandInput extends GetFirewallRuleInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetFirewallRuleCommand}.
21
+ */
22
+ export interface GetFirewallRuleCommandOutput extends GetFirewallRuleOutput, __MetadataBearer {
23
+ }
24
+ declare const GetFirewallRuleCommand_base: {
25
+ new (input: GetFirewallRuleCommandInput): import("@smithy/smithy-client").CommandImpl<GetFirewallRuleCommandInput, GetFirewallRuleCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetFirewallRuleCommandInput): import("@smithy/smithy-client").CommandImpl<GetFirewallRuleCommandInput, GetFirewallRuleCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves information about a DNS firewall rule.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { Route53GlobalResolverClient, GetFirewallRuleCommand } from "@aws-sdk/client-route53globalresolver"; // ES Modules import
35
+ * // const { Route53GlobalResolverClient, GetFirewallRuleCommand } = require("@aws-sdk/client-route53globalresolver"); // CommonJS import
36
+ * // import type { Route53GlobalResolverClientConfig } from "@aws-sdk/client-route53globalresolver";
37
+ * const config = {}; // type is Route53GlobalResolverClientConfig
38
+ * const client = new Route53GlobalResolverClient(config);
39
+ * const input = { // GetFirewallRuleInput
40
+ * firewallRuleId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new GetFirewallRuleCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // GetFirewallRuleOutput
45
+ * // action: "ALLOW" || "ALERT" || "BLOCK", // required
46
+ * // blockOverrideDnsType: "CNAME",
47
+ * // blockOverrideDomain: "STRING_VALUE",
48
+ * // blockOverrideTtl: Number("int"),
49
+ * // blockResponse: "NODATA" || "NXDOMAIN" || "OVERRIDE",
50
+ * // confidenceThreshold: "LOW" || "MEDIUM" || "HIGH",
51
+ * // createdAt: new Date("TIMESTAMP"), // required
52
+ * // description: "STRING_VALUE",
53
+ * // dnsAdvancedProtection: "DGA" || "DNS_TUNNELING",
54
+ * // firewallDomainListId: "STRING_VALUE",
55
+ * // id: "STRING_VALUE", // required
56
+ * // name: "STRING_VALUE", // required
57
+ * // priority: Number("long"), // required
58
+ * // dnsViewId: "STRING_VALUE", // required
59
+ * // queryType: "STRING_VALUE",
60
+ * // status: "CREATING" || "OPERATIONAL" || "UPDATING" || "DELETING", // required
61
+ * // updatedAt: new Date("TIMESTAMP"), // required
62
+ * // };
63
+ *
64
+ * ```
65
+ *
66
+ * @param GetFirewallRuleCommandInput - {@link GetFirewallRuleCommandInput}
67
+ * @returns {@link GetFirewallRuleCommandOutput}
68
+ * @see {@link GetFirewallRuleCommandInput} for command's `input` shape.
69
+ * @see {@link GetFirewallRuleCommandOutput} for command's `response` shape.
70
+ * @see {@link Route53GlobalResolverClientResolvedConfig | config} for Route53GlobalResolverClient's `config` shape.
71
+ *
72
+ * @throws {@link AccessDeniedException} (client fault)
73
+ * <p>You don't have permission to perform this operation. Check your IAM permissions and try again.</p>
74
+ *
75
+ * @throws {@link InternalServerException} (server fault)
76
+ * <p>An internal server error occurred. Try again later.</p>
77
+ *
78
+ * @throws {@link ResourceNotFoundException} (client fault)
79
+ * <p>The specified resource was not found. Verify the resource ID and try again.</p>
80
+ *
81
+ * @throws {@link ThrottlingException} (client fault)
82
+ * <p>The request was throttled due to too many requests. Wait a moment and try again.</p>
83
+ *
84
+ * @throws {@link ValidationException} (client fault)
85
+ * <p>The input parameters are invalid. Check the parameter values and try again.</p>
86
+ *
87
+ * @throws {@link Route53GlobalResolverServiceException}
88
+ * <p>Base exception class for all service exceptions from Route53GlobalResolver service.</p>
89
+ *
90
+ *
91
+ * @public
92
+ */
93
+ export declare class GetFirewallRuleCommand extends GetFirewallRuleCommand_base {
94
+ /** @internal type navigation helper, not in runtime. */
95
+ protected static __types: {
96
+ api: {
97
+ input: GetFirewallRuleInput;
98
+ output: GetFirewallRuleOutput;
99
+ };
100
+ sdk: {
101
+ input: GetFirewallRuleCommandInput;
102
+ output: GetFirewallRuleCommandOutput;
103
+ };
104
+ };
105
+ }
@@ -0,0 +1,104 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetGlobalResolverInput, GetGlobalResolverOutput } from "../models/models_0";
4
+ import { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53GlobalResolverClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetGlobalResolverCommand}.
14
+ */
15
+ export interface GetGlobalResolverCommandInput extends GetGlobalResolverInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetGlobalResolverCommand}.
21
+ */
22
+ export interface GetGlobalResolverCommandOutput extends GetGlobalResolverOutput, __MetadataBearer {
23
+ }
24
+ declare const GetGlobalResolverCommand_base: {
25
+ new (input: GetGlobalResolverCommandInput): import("@smithy/smithy-client").CommandImpl<GetGlobalResolverCommandInput, GetGlobalResolverCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetGlobalResolverCommandInput): import("@smithy/smithy-client").CommandImpl<GetGlobalResolverCommandInput, GetGlobalResolverCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves information about a Route 53 Global Resolver instance.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { Route53GlobalResolverClient, GetGlobalResolverCommand } from "@aws-sdk/client-route53globalresolver"; // ES Modules import
35
+ * // const { Route53GlobalResolverClient, GetGlobalResolverCommand } = require("@aws-sdk/client-route53globalresolver"); // CommonJS import
36
+ * // import type { Route53GlobalResolverClientConfig } from "@aws-sdk/client-route53globalresolver";
37
+ * const config = {}; // type is Route53GlobalResolverClientConfig
38
+ * const client = new Route53GlobalResolverClient(config);
39
+ * const input = { // GetGlobalResolverInput
40
+ * globalResolverId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new GetGlobalResolverCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // GetGlobalResolverOutput
45
+ * // id: "STRING_VALUE", // required
46
+ * // arn: "STRING_VALUE", // required
47
+ * // clientToken: "STRING_VALUE", // required
48
+ * // dnsName: "STRING_VALUE", // required
49
+ * // observabilityRegion: "STRING_VALUE",
50
+ * // name: "STRING_VALUE", // required
51
+ * // description: "STRING_VALUE",
52
+ * // regions: [ // Regions // required
53
+ * // "STRING_VALUE",
54
+ * // ],
55
+ * // createdAt: new Date("TIMESTAMP"), // required
56
+ * // updatedAt: new Date("TIMESTAMP"), // required
57
+ * // status: "CREATING" || "OPERATIONAL" || "UPDATING" || "DELETING", // required
58
+ * // ipv4Addresses: [ // IPv4Addresses // required
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // };
62
+ *
63
+ * ```
64
+ *
65
+ * @param GetGlobalResolverCommandInput - {@link GetGlobalResolverCommandInput}
66
+ * @returns {@link GetGlobalResolverCommandOutput}
67
+ * @see {@link GetGlobalResolverCommandInput} for command's `input` shape.
68
+ * @see {@link GetGlobalResolverCommandOutput} for command's `response` shape.
69
+ * @see {@link Route53GlobalResolverClientResolvedConfig | config} for Route53GlobalResolverClient's `config` shape.
70
+ *
71
+ * @throws {@link AccessDeniedException} (client fault)
72
+ * <p>You don't have permission to perform this operation. Check your IAM permissions and try again.</p>
73
+ *
74
+ * @throws {@link InternalServerException} (server fault)
75
+ * <p>An internal server error occurred. Try again later.</p>
76
+ *
77
+ * @throws {@link ResourceNotFoundException} (client fault)
78
+ * <p>The specified resource was not found. Verify the resource ID and try again.</p>
79
+ *
80
+ * @throws {@link ThrottlingException} (client fault)
81
+ * <p>The request was throttled due to too many requests. Wait a moment and try again.</p>
82
+ *
83
+ * @throws {@link ValidationException} (client fault)
84
+ * <p>The input parameters are invalid. Check the parameter values and try again.</p>
85
+ *
86
+ * @throws {@link Route53GlobalResolverServiceException}
87
+ * <p>Base exception class for all service exceptions from Route53GlobalResolver service.</p>
88
+ *
89
+ *
90
+ * @public
91
+ */
92
+ export declare class GetGlobalResolverCommand extends GetGlobalResolverCommand_base {
93
+ /** @internal type navigation helper, not in runtime. */
94
+ protected static __types: {
95
+ api: {
96
+ input: GetGlobalResolverInput;
97
+ output: GetGlobalResolverOutput;
98
+ };
99
+ sdk: {
100
+ input: GetGlobalResolverCommandInput;
101
+ output: GetGlobalResolverCommandOutput;
102
+ };
103
+ };
104
+ }
@@ -0,0 +1,96 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetHostedZoneAssociationInput, GetHostedZoneAssociationOutput } from "../models/models_0";
4
+ import { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53GlobalResolverClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetHostedZoneAssociationCommand}.
14
+ */
15
+ export interface GetHostedZoneAssociationCommandInput extends GetHostedZoneAssociationInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetHostedZoneAssociationCommand}.
21
+ */
22
+ export interface GetHostedZoneAssociationCommandOutput extends GetHostedZoneAssociationOutput, __MetadataBearer {
23
+ }
24
+ declare const GetHostedZoneAssociationCommand_base: {
25
+ new (input: GetHostedZoneAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<GetHostedZoneAssociationCommandInput, GetHostedZoneAssociationCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetHostedZoneAssociationCommandInput): import("@smithy/smithy-client").CommandImpl<GetHostedZoneAssociationCommandInput, GetHostedZoneAssociationCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves information about a hosted zone association.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { Route53GlobalResolverClient, GetHostedZoneAssociationCommand } from "@aws-sdk/client-route53globalresolver"; // ES Modules import
35
+ * // const { Route53GlobalResolverClient, GetHostedZoneAssociationCommand } = require("@aws-sdk/client-route53globalresolver"); // CommonJS import
36
+ * // import type { Route53GlobalResolverClientConfig } from "@aws-sdk/client-route53globalresolver";
37
+ * const config = {}; // type is Route53GlobalResolverClientConfig
38
+ * const client = new Route53GlobalResolverClient(config);
39
+ * const input = { // GetHostedZoneAssociationInput
40
+ * hostedZoneAssociationId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new GetHostedZoneAssociationCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // GetHostedZoneAssociationOutput
45
+ * // id: "STRING_VALUE", // required
46
+ * // resourceArn: "STRING_VALUE", // required
47
+ * // hostedZoneId: "STRING_VALUE", // required
48
+ * // hostedZoneName: "STRING_VALUE", // required
49
+ * // name: "STRING_VALUE", // required
50
+ * // createdAt: new Date("TIMESTAMP"), // required
51
+ * // updatedAt: new Date("TIMESTAMP"), // required
52
+ * // status: "CREATING" || "OPERATIONAL" || "DELETING", // required
53
+ * // };
54
+ *
55
+ * ```
56
+ *
57
+ * @param GetHostedZoneAssociationCommandInput - {@link GetHostedZoneAssociationCommandInput}
58
+ * @returns {@link GetHostedZoneAssociationCommandOutput}
59
+ * @see {@link GetHostedZoneAssociationCommandInput} for command's `input` shape.
60
+ * @see {@link GetHostedZoneAssociationCommandOutput} for command's `response` shape.
61
+ * @see {@link Route53GlobalResolverClientResolvedConfig | config} for Route53GlobalResolverClient's `config` shape.
62
+ *
63
+ * @throws {@link AccessDeniedException} (client fault)
64
+ * <p>You don't have permission to perform this operation. Check your IAM permissions and try again.</p>
65
+ *
66
+ * @throws {@link InternalServerException} (server fault)
67
+ * <p>An internal server error occurred. Try again later.</p>
68
+ *
69
+ * @throws {@link ResourceNotFoundException} (client fault)
70
+ * <p>The specified resource was not found. Verify the resource ID and try again.</p>
71
+ *
72
+ * @throws {@link ThrottlingException} (client fault)
73
+ * <p>The request was throttled due to too many requests. Wait a moment and try again.</p>
74
+ *
75
+ * @throws {@link ValidationException} (client fault)
76
+ * <p>The input parameters are invalid. Check the parameter values and try again.</p>
77
+ *
78
+ * @throws {@link Route53GlobalResolverServiceException}
79
+ * <p>Base exception class for all service exceptions from Route53GlobalResolver service.</p>
80
+ *
81
+ *
82
+ * @public
83
+ */
84
+ export declare class GetHostedZoneAssociationCommand extends GetHostedZoneAssociationCommand_base {
85
+ /** @internal type navigation helper, not in runtime. */
86
+ protected static __types: {
87
+ api: {
88
+ input: GetHostedZoneAssociationInput;
89
+ output: GetHostedZoneAssociationOutput;
90
+ };
91
+ sdk: {
92
+ input: GetHostedZoneAssociationCommandInput;
93
+ output: GetHostedZoneAssociationCommandOutput;
94
+ };
95
+ };
96
+ }
@@ -0,0 +1,92 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetManagedFirewallDomainListInput, GetManagedFirewallDomainListOutput } from "../models/models_0";
4
+ import { Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../Route53GlobalResolverClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link GetManagedFirewallDomainListCommand}.
14
+ */
15
+ export interface GetManagedFirewallDomainListCommandInput extends GetManagedFirewallDomainListInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetManagedFirewallDomainListCommand}.
21
+ */
22
+ export interface GetManagedFirewallDomainListCommandOutput extends GetManagedFirewallDomainListOutput, __MetadataBearer {
23
+ }
24
+ declare const GetManagedFirewallDomainListCommand_base: {
25
+ new (input: GetManagedFirewallDomainListCommandInput): import("@smithy/smithy-client").CommandImpl<GetManagedFirewallDomainListCommandInput, GetManagedFirewallDomainListCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetManagedFirewallDomainListCommandInput): import("@smithy/smithy-client").CommandImpl<GetManagedFirewallDomainListCommandInput, GetManagedFirewallDomainListCommandOutput, Route53GlobalResolverClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves information about an AWS-managed firewall domain list. Managed domain lists contain domains associated with malicious activity, content categories, or specific threats.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { Route53GlobalResolverClient, GetManagedFirewallDomainListCommand } from "@aws-sdk/client-route53globalresolver"; // ES Modules import
35
+ * // const { Route53GlobalResolverClient, GetManagedFirewallDomainListCommand } = require("@aws-sdk/client-route53globalresolver"); // CommonJS import
36
+ * // import type { Route53GlobalResolverClientConfig } from "@aws-sdk/client-route53globalresolver";
37
+ * const config = {}; // type is Route53GlobalResolverClientConfig
38
+ * const client = new Route53GlobalResolverClient(config);
39
+ * const input = { // GetManagedFirewallDomainListInput
40
+ * managedFirewallDomainListId: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new GetManagedFirewallDomainListCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // GetManagedFirewallDomainListOutput
45
+ * // description: "STRING_VALUE",
46
+ * // id: "STRING_VALUE", // required
47
+ * // name: "STRING_VALUE", // required
48
+ * // managedListType: "STRING_VALUE", // required
49
+ * // };
50
+ *
51
+ * ```
52
+ *
53
+ * @param GetManagedFirewallDomainListCommandInput - {@link GetManagedFirewallDomainListCommandInput}
54
+ * @returns {@link GetManagedFirewallDomainListCommandOutput}
55
+ * @see {@link GetManagedFirewallDomainListCommandInput} for command's `input` shape.
56
+ * @see {@link GetManagedFirewallDomainListCommandOutput} for command's `response` shape.
57
+ * @see {@link Route53GlobalResolverClientResolvedConfig | config} for Route53GlobalResolverClient's `config` shape.
58
+ *
59
+ * @throws {@link AccessDeniedException} (client fault)
60
+ * <p>You don't have permission to perform this operation. Check your IAM permissions and try again.</p>
61
+ *
62
+ * @throws {@link InternalServerException} (server fault)
63
+ * <p>An internal server error occurred. Try again later.</p>
64
+ *
65
+ * @throws {@link ResourceNotFoundException} (client fault)
66
+ * <p>The specified resource was not found. Verify the resource ID and try again.</p>
67
+ *
68
+ * @throws {@link ThrottlingException} (client fault)
69
+ * <p>The request was throttled due to too many requests. Wait a moment and try again.</p>
70
+ *
71
+ * @throws {@link ValidationException} (client fault)
72
+ * <p>The input parameters are invalid. Check the parameter values and try again.</p>
73
+ *
74
+ * @throws {@link Route53GlobalResolverServiceException}
75
+ * <p>Base exception class for all service exceptions from Route53GlobalResolver service.</p>
76
+ *
77
+ *
78
+ * @public
79
+ */
80
+ export declare class GetManagedFirewallDomainListCommand extends GetManagedFirewallDomainListCommand_base {
81
+ /** @internal type navigation helper, not in runtime. */
82
+ protected static __types: {
83
+ api: {
84
+ input: GetManagedFirewallDomainListInput;
85
+ output: GetManagedFirewallDomainListOutput;
86
+ };
87
+ sdk: {
88
+ input: GetManagedFirewallDomainListCommandInput;
89
+ output: GetManagedFirewallDomainListCommandOutput;
90
+ };
91
+ };
92
+ }