import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { BatchGetTargetDomainsInput, BatchGetTargetDomainsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link BatchGetTargetDomainsCommand}. */ export interface BatchGetTargetDomainsCommandInput extends BatchGetTargetDomainsInput { } /** * @public * * The output of {@link BatchGetTargetDomainsCommand}. */ export interface BatchGetTargetDomainsCommandOutput extends BatchGetTargetDomainsOutput, __MetadataBearer { } declare const BatchGetTargetDomainsCommand_base: { new (input: BatchGetTargetDomainsCommandInput): import("@smithy/core/client").CommandImpl; new (input: BatchGetTargetDomainsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves information about one or more target domains.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SecurityAgentClient, BatchGetTargetDomainsCommand } from "@aws-sdk/client-securityagent"; // ES Modules import * // const { SecurityAgentClient, BatchGetTargetDomainsCommand } = require("@aws-sdk/client-securityagent"); // CommonJS import * // import type { SecurityAgentClientConfig } from "@aws-sdk/client-securityagent"; * const config = {}; // type is SecurityAgentClientConfig * const client = new SecurityAgentClient(config); * const input = { // BatchGetTargetDomainsInput * targetDomainIds: [ // TargetDomainIdList // required * "STRING_VALUE", * ], * }; * const command = new BatchGetTargetDomainsCommand(input); * const response = await client.send(command); * // { // BatchGetTargetDomainsOutput * // targetDomains: [ // TargetDomainList * // { // TargetDomain * // targetDomainId: "STRING_VALUE", // required * // domainName: "STRING_VALUE", // required * // verificationStatus: "PENDING" || "VERIFIED" || "FAILED" || "UNREACHABLE", * // verificationStatusReason: "STRING_VALUE", * // verificationDetails: { // VerificationDetails * // method: "DNS_TXT" || "HTTP_ROUTE" || "PRIVATE_VPC", * // dnsTxt: { // DnsVerification * // token: "STRING_VALUE", * // dnsRecordName: "STRING_VALUE", * // dnsRecordType: "TXT", * // }, * // httpRoute: { // HttpVerification * // token: "STRING_VALUE", * // routePath: "STRING_VALUE", * // }, * // }, * // createdAt: new Date("TIMESTAMP"), * // verifiedAt: new Date("TIMESTAMP"), * // }, * // ], * // notFound: [ // TargetDomainIdList * // "STRING_VALUE", * // ], * // }; * * ``` * * @param BatchGetTargetDomainsCommandInput - {@link BatchGetTargetDomainsCommandInput} * @returns {@link BatchGetTargetDomainsCommandOutput} * @see {@link BatchGetTargetDomainsCommandInput} for command's `input` shape. * @see {@link BatchGetTargetDomainsCommandOutput} for command's `response` shape. * @see {@link SecurityAgentClientResolvedConfig | config} for SecurityAgentClient's `config` shape. * * @throws {@link SecurityAgentServiceException} *

Base exception class for all service exceptions from SecurityAgent service.

* * * @public */ export declare class BatchGetTargetDomainsCommand extends BatchGetTargetDomainsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: BatchGetTargetDomainsInput; output: BatchGetTargetDomainsOutput; }; sdk: { input: BatchGetTargetDomainsCommandInput; output: BatchGetTargetDomainsCommandOutput; }; }; }