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

All associations for the managed nodes.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, DescribeEffectiveInstanceAssociationsCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, DescribeEffectiveInstanceAssociationsCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // DescribeEffectiveInstanceAssociationsRequest * InstanceId: "STRING_VALUE", // required * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeEffectiveInstanceAssociationsCommand(input); * const response = await client.send(command); * // { // DescribeEffectiveInstanceAssociationsResult * // Associations: [ // InstanceAssociationList * // { // InstanceAssociation * // AssociationId: "STRING_VALUE", * // InstanceId: "STRING_VALUE", * // Content: "STRING_VALUE", * // AssociationVersion: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeEffectiveInstanceAssociationsCommandInput - {@link DescribeEffectiveInstanceAssociationsCommandInput} * @returns {@link DescribeEffectiveInstanceAssociationsCommandOutput} * @see {@link DescribeEffectiveInstanceAssociationsCommandInput} for command's `input` shape. * @see {@link DescribeEffectiveInstanceAssociationsCommandOutput} for command's `response` shape. * @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape. * * @throws {@link InternalServerError} (server fault) *

An error occurred on the server side.

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

The following problems can cause this exception:

* * * @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 DescribeEffectiveInstanceAssociationsCommand extends DescribeEffectiveInstanceAssociationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeEffectiveInstanceAssociationsRequest; output: DescribeEffectiveInstanceAssociationsResult; }; sdk: { input: DescribeEffectiveInstanceAssociationsCommandInput; output: DescribeEffectiveInstanceAssociationsCommandOutput; }; }; }