import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetDeploymentPatternVersionInput, GetDeploymentPatternVersionOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetDeploymentPatternVersionCommand}. */ export interface GetDeploymentPatternVersionCommandInput extends GetDeploymentPatternVersionInput { } /** * @public * * The output of {@link GetDeploymentPatternVersionCommand}. */ export interface GetDeploymentPatternVersionCommandOutput extends GetDeploymentPatternVersionOutput, __MetadataBearer { } declare const GetDeploymentPatternVersionCommand_base: { new (input: GetDeploymentPatternVersionCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetDeploymentPatternVersionCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns information about a deployment pattern version.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { LaunchWizardClient, GetDeploymentPatternVersionCommand } from "@aws-sdk/client-launch-wizard"; // ES Modules import * // const { LaunchWizardClient, GetDeploymentPatternVersionCommand } = require("@aws-sdk/client-launch-wizard"); // CommonJS import * // import type { LaunchWizardClientConfig } from "@aws-sdk/client-launch-wizard"; * const config = {}; // type is LaunchWizardClientConfig * const client = new LaunchWizardClient(config); * const input = { // GetDeploymentPatternVersionInput * workloadName: "STRING_VALUE", // required * deploymentPatternName: "STRING_VALUE", // required * deploymentPatternVersionName: "STRING_VALUE", // required * }; * const command = new GetDeploymentPatternVersionCommand(input); * const response = await client.send(command); * // { // GetDeploymentPatternVersionOutput * // deploymentPatternVersion: { // DeploymentPatternVersionDataSummary * // deploymentPatternVersionName: "STRING_VALUE", * // description: "STRING_VALUE", * // documentationUrl: "STRING_VALUE", * // workloadName: "STRING_VALUE", * // deploymentPatternName: "STRING_VALUE", * // }, * // }; * * ``` * * @param GetDeploymentPatternVersionCommandInput - {@link GetDeploymentPatternVersionCommandInput} * @returns {@link GetDeploymentPatternVersionCommandOutput} * @see {@link GetDeploymentPatternVersionCommandInput} for command's `input` shape. * @see {@link GetDeploymentPatternVersionCommandOutput} for command's `response` shape. * @see {@link LaunchWizardClientResolvedConfig | config} for LaunchWizardClient's `config` shape. * * @throws {@link InternalServerException} (server fault) *

An internal error has occurred. Retry your request, but if the problem persists, contact us with details by posting a question on re:Post.

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

The specified workload or deployment resource can't be found.

* * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* * * @public */ export declare class GetDeploymentPatternVersionCommand extends GetDeploymentPatternVersionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetDeploymentPatternVersionInput; output: GetDeploymentPatternVersionOutput; }; sdk: { input: GetDeploymentPatternVersionCommandInput; output: GetDeploymentPatternVersionCommandOutput; }; }; }