import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { StartApplicationInput, StartApplicationOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link StartApplicationCommand}. */ export interface StartApplicationCommandInput extends StartApplicationInput { } /** * @public * * The output of {@link StartApplicationCommand}. */ export interface StartApplicationCommandOutput extends StartApplicationOutput, __MetadataBearer { } declare const StartApplicationCommand_base: { new (input: StartApplicationCommandInput): import("@smithy/core/client").CommandImpl; new (input: StartApplicationCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Request is an operation which starts an application.

Parameter ApplicationId is required.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SsmSapClient, StartApplicationCommand } from "@aws-sdk/client-ssm-sap"; // ES Modules import * // const { SsmSapClient, StartApplicationCommand } = require("@aws-sdk/client-ssm-sap"); // CommonJS import * // import type { SsmSapClientConfig } from "@aws-sdk/client-ssm-sap"; * const config = {}; // type is SsmSapClientConfig * const client = new SsmSapClient(config); * const input = { // StartApplicationInput * ApplicationId: "STRING_VALUE", // required * }; * const command = new StartApplicationCommand(input); * const response = await client.send(command); * // { // StartApplicationOutput * // OperationId: "STRING_VALUE", * // }; * * ``` * * @param StartApplicationCommandInput - {@link StartApplicationCommandInput} * @returns {@link StartApplicationCommandOutput} * @see {@link StartApplicationCommandInput} for command's `input` shape. * @see {@link StartApplicationCommandOutput} for command's `response` shape. * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

A conflict has occurred.

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

An internal error has occurred.

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

The resource is not available.

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

The input fails to satisfy the constraints specified by an AWS service.

* * @throws {@link SsmSapServiceException} *

Base exception class for all service exceptions from SsmSap service.

* * * @public */ export declare class StartApplicationCommand extends StartApplicationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartApplicationInput; output: StartApplicationOutput; }; sdk: { input: StartApplicationCommandInput; output: StartApplicationCommandOutput; }; }; }