import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeStateMachineAliasInput, DescribeStateMachineAliasOutput } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, SFNClientResolvedConfig } from "../SFNClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeStateMachineAliasCommand}. */ export interface DescribeStateMachineAliasCommandInput extends DescribeStateMachineAliasInput { } /** * @public * * The output of {@link DescribeStateMachineAliasCommand}. */ export interface DescribeStateMachineAliasCommandOutput extends DescribeStateMachineAliasOutput, __MetadataBearer { } declare const DescribeStateMachineAliasCommand_base: { new (input: DescribeStateMachineAliasCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeStateMachineAliasCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Returns details about a state machine alias.

*

* Related operations: *

* * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SFNClient, DescribeStateMachineAliasCommand } from "@aws-sdk/client-sfn"; // ES Modules import * // const { SFNClient, DescribeStateMachineAliasCommand } = require("@aws-sdk/client-sfn"); // CommonJS import * // import type { SFNClientConfig } from "@aws-sdk/client-sfn"; * const config = {}; // type is SFNClientConfig * const client = new SFNClient(config); * const input = { // DescribeStateMachineAliasInput * stateMachineAliasArn: "STRING_VALUE", // required * }; * const command = new DescribeStateMachineAliasCommand(input); * const response = await client.send(command); * // { // DescribeStateMachineAliasOutput * // stateMachineAliasArn: "STRING_VALUE", * // name: "STRING_VALUE", * // description: "STRING_VALUE", * // routingConfiguration: [ // RoutingConfigurationList * // { // RoutingConfigurationListItem * // stateMachineVersionArn: "STRING_VALUE", // required * // weight: Number("int"), // required * // }, * // ], * // creationDate: new Date("TIMESTAMP"), * // updateDate: new Date("TIMESTAMP"), * // }; * * ``` * * @param DescribeStateMachineAliasCommandInput - {@link DescribeStateMachineAliasCommandInput} * @returns {@link DescribeStateMachineAliasCommandOutput} * @see {@link DescribeStateMachineAliasCommandInput} for command's `input` shape. * @see {@link DescribeStateMachineAliasCommandOutput} for command's `response` shape. * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape. * * @throws {@link InvalidArn} (client fault) *

The provided Amazon Resource Name (ARN) is not valid.

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

Could not find the referenced resource.

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

The input does not satisfy the constraints specified by an Amazon Web Services service.

* * @throws {@link SFNServiceException} *

Base exception class for all service exceptions from SFN service.

* * * @public */ export declare class DescribeStateMachineAliasCommand extends DescribeStateMachineAliasCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeStateMachineAliasInput; output: DescribeStateMachineAliasOutput; }; sdk: { input: DescribeStateMachineAliasCommandInput; output: DescribeStateMachineAliasCommandOutput; }; }; }