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

Deletes a state machine alias.

*

After you delete a state machine alias, you can't use it to start executions. When you * delete a state machine alias, Step Functions doesn't delete the state machine versions * that alias references.

*

* Related operations: *

* * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SFNClient, DeleteStateMachineAliasCommand } from "@aws-sdk/client-sfn"; // ES Modules import * // const { SFNClient, DeleteStateMachineAliasCommand } = 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 = { // DeleteStateMachineAliasInput * stateMachineAliasArn: "STRING_VALUE", // required * }; * const command = new DeleteStateMachineAliasCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteStateMachineAliasCommandInput - {@link DeleteStateMachineAliasCommandInput} * @returns {@link DeleteStateMachineAliasCommandOutput} * @see {@link DeleteStateMachineAliasCommandInput} for command's `input` shape. * @see {@link DeleteStateMachineAliasCommandOutput} for command's `response` shape. * @see {@link SFNClientResolvedConfig | config} for SFNClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

Updating or deleting a resource can cause an inconsistent state. This error occurs when there're concurrent requests for DeleteStateMachineVersion, PublishStateMachineVersion, or UpdateStateMachine with the publish parameter set to true.

*

HTTP Status Code: 409

* * @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 DeleteStateMachineAliasCommand extends DeleteStateMachineAliasCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteStateMachineAliasInput; output: {}; }; sdk: { input: DeleteStateMachineAliasCommandInput; output: DeleteStateMachineAliasCommandOutput; }; }; }