import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListDeploymentEventsInput, ListDeploymentEventsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListDeploymentEventsCommand}. */ export interface ListDeploymentEventsCommandInput extends ListDeploymentEventsInput { } /** * @public * * The output of {@link ListDeploymentEventsCommand}. */ export interface ListDeploymentEventsCommandOutput extends ListDeploymentEventsOutput, __MetadataBearer { } declare const ListDeploymentEventsCommand_base: { new (input: ListDeploymentEventsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListDeploymentEventsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the events of a deployment.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { LaunchWizardClient, ListDeploymentEventsCommand } from "@aws-sdk/client-launch-wizard"; // ES Modules import * // const { LaunchWizardClient, ListDeploymentEventsCommand } = 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 = { // ListDeploymentEventsInput * deploymentId: "STRING_VALUE", // required * maxResults: Number("int"), * nextToken: "STRING_VALUE", * }; * const command = new ListDeploymentEventsCommand(input); * const response = await client.send(command); * // { // ListDeploymentEventsOutput * // deploymentEvents: [ // DeploymentEventDataSummaryList * // { // DeploymentEventDataSummary * // name: "STRING_VALUE", * // description: "STRING_VALUE", * // status: "CANCELED" || "CANCELING" || "COMPLETED" || "CREATED" || "FAILED" || "IN_PROGRESS" || "PENDING" || "TIMED_OUT", * // statusReason: "STRING_VALUE", * // timestamp: new Date("TIMESTAMP"), * // metadata: { // DeploymentEventMetadata * // "": "STRING_VALUE", * // }, * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListDeploymentEventsCommandInput - {@link ListDeploymentEventsCommandInput} * @returns {@link ListDeploymentEventsCommandOutput} * @see {@link ListDeploymentEventsCommandInput} for command's `input` shape. * @see {@link ListDeploymentEventsCommandOutput} 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 ValidationException} (client fault) *

The input fails to satisfy the constraints specified by an Amazon Web Services service.

* * @throws {@link LaunchWizardServiceException} *

Base exception class for all service exceptions from LaunchWizard service.

* * * @example List all actions taken during a deployment. * ```javascript * // * const input = { * deploymentId: "4c1b59c1-659c-467f-b6e9-6ef6f9d28e1d" * }; * const command = new ListDeploymentEventsCommand(input); * const response = await client.send(command); * /* response is * { * deploymentEvents: [ * { * description: "Creates a new secure parameter", * name: "Create secure parameter", * status: "COMPLETED", * statusReason: "", * timestamp: "2023-04-24T13:10:39.123Z" * }, * { * description: "Creates a resource group with all the application resources", * name: "Create resource group", * status: "COMPLETED", * statusReason: "", * timestamp: "2023-04-24T13:10:42.238Z" * } * ] * } * *\/ * ``` * * @public */ export declare class ListDeploymentEventsCommand extends ListDeploymentEventsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListDeploymentEventsInput; output: ListDeploymentEventsOutput; }; sdk: { input: ListDeploymentEventsCommandInput; output: ListDeploymentEventsCommandOutput; }; }; }