import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeAssessmentTargetsRequest, DescribeAssessmentTargetsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeAssessmentTargetsCommand}. */ export interface DescribeAssessmentTargetsCommandInput extends DescribeAssessmentTargetsRequest { } /** * @public * * The output of {@link DescribeAssessmentTargetsCommand}. */ export interface DescribeAssessmentTargetsCommandOutput extends DescribeAssessmentTargetsResponse, __MetadataBearer { } declare const DescribeAssessmentTargetsCommand_base: { new (input: DescribeAssessmentTargetsCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeAssessmentTargetsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describes the assessment targets that are specified by the ARNs of the assessment * targets.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { InspectorClient, DescribeAssessmentTargetsCommand } from "@aws-sdk/client-inspector"; // ES Modules import * // const { InspectorClient, DescribeAssessmentTargetsCommand } = require("@aws-sdk/client-inspector"); // CommonJS import * // import type { InspectorClientConfig } from "@aws-sdk/client-inspector"; * const config = {}; // type is InspectorClientConfig * const client = new InspectorClient(config); * const input = { // DescribeAssessmentTargetsRequest * assessmentTargetArns: [ // BatchDescribeArnList // required * "STRING_VALUE", * ], * }; * const command = new DescribeAssessmentTargetsCommand(input); * const response = await client.send(command); * // { // DescribeAssessmentTargetsResponse * // assessmentTargets: [ // AssessmentTargetList // required * // { // AssessmentTarget * // arn: "STRING_VALUE", // required * // name: "STRING_VALUE", // required * // resourceGroupArn: "STRING_VALUE", * // createdAt: new Date("TIMESTAMP"), // required * // updatedAt: new Date("TIMESTAMP"), // required * // }, * // ], * // failedItems: { // FailedItems // required * // "": { // FailedItemDetails * // failureCode: "INVALID_ARN" || "DUPLICATE_ARN" || "ITEM_DOES_NOT_EXIST" || "ACCESS_DENIED" || "LIMIT_EXCEEDED" || "INTERNAL_ERROR", // required * // retryable: true || false, // required * // }, * // }, * // }; * * ``` * * @param DescribeAssessmentTargetsCommandInput - {@link DescribeAssessmentTargetsCommandInput} * @returns {@link DescribeAssessmentTargetsCommandOutput} * @see {@link DescribeAssessmentTargetsCommandInput} for command's `input` shape. * @see {@link DescribeAssessmentTargetsCommandOutput} for command's `response` shape. * @see {@link InspectorClientResolvedConfig | config} for InspectorClient's `config` shape. * * @throws {@link InternalException} (server fault) *

Internal server error.

* * @throws {@link InvalidInputException} (client fault) *

The request was rejected because an invalid or out-of-range value was supplied for an * input parameter.

* * @throws {@link InspectorServiceException} *

Base exception class for all service exceptions from Inspector service.

* * * @public */ export declare class DescribeAssessmentTargetsCommand extends DescribeAssessmentTargetsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeAssessmentTargetsRequest; output: DescribeAssessmentTargetsResponse; }; sdk: { input: DescribeAssessmentTargetsCommandInput; output: DescribeAssessmentTargetsCommandOutput; }; }; }