import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DescribeAssociationExecutionTargetsRequest, DescribeAssociationExecutionTargetsResult } from "../models/models_0"; import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeAssociationExecutionTargetsCommand}. */ export interface DescribeAssociationExecutionTargetsCommandInput extends DescribeAssociationExecutionTargetsRequest { } /** * @public * * The output of {@link DescribeAssociationExecutionTargetsCommand}. */ export interface DescribeAssociationExecutionTargetsCommandOutput extends DescribeAssociationExecutionTargetsResult, __MetadataBearer { } declare const DescribeAssociationExecutionTargetsCommand_base: { new (input: DescribeAssociationExecutionTargetsCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DescribeAssociationExecutionTargetsCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Views information about a specific execution of a specific association.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, DescribeAssociationExecutionTargetsCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, DescribeAssociationExecutionTargetsCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // DescribeAssociationExecutionTargetsRequest * AssociationId: "STRING_VALUE", // required * ExecutionId: "STRING_VALUE", // required * Filters: [ // AssociationExecutionTargetsFilterList * { // AssociationExecutionTargetsFilter * Key: "Status" || "ResourceId" || "ResourceType", // required * Value: "STRING_VALUE", // required * }, * ], * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeAssociationExecutionTargetsCommand(input); * const response = await client.send(command); * // { // DescribeAssociationExecutionTargetsResult * // AssociationExecutionTargets: [ // AssociationExecutionTargetsList * // { // AssociationExecutionTarget * // AssociationId: "STRING_VALUE", * // AssociationVersion: "STRING_VALUE", * // ExecutionId: "STRING_VALUE", * // ResourceId: "STRING_VALUE", * // ResourceType: "STRING_VALUE", * // Status: "STRING_VALUE", * // DetailedStatus: "STRING_VALUE", * // LastExecutionDate: new Date("TIMESTAMP"), * // OutputSource: { // OutputSource * // OutputSourceId: "STRING_VALUE", * // OutputSourceType: "STRING_VALUE", * // }, * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeAssociationExecutionTargetsCommandInput - {@link DescribeAssociationExecutionTargetsCommandInput} * @returns {@link DescribeAssociationExecutionTargetsCommandOutput} * @see {@link DescribeAssociationExecutionTargetsCommandInput} for command's `input` shape. * @see {@link DescribeAssociationExecutionTargetsCommandOutput} for command's `response` shape. * @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape. * * @throws {@link AssociationDoesNotExist} (client fault) *

The specified association doesn't exist.

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

The specified execution ID doesn't exist. Verify the ID number and try again.

* * @throws {@link InternalServerError} (server fault) *

An error occurred on the server side.

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

The specified token isn't valid.

* * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* * * @public */ export declare class DescribeAssociationExecutionTargetsCommand extends DescribeAssociationExecutionTargetsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeAssociationExecutionTargetsRequest; output: DescribeAssociationExecutionTargetsResult; }; sdk: { input: DescribeAssociationExecutionTargetsCommandInput; output: DescribeAssociationExecutionTargetsCommandOutput; }; }; }