import * as __aws_sdk_types from "@aws-sdk/types"; /** * GetDeploymentOutput shape */ export interface GetDeploymentOutput extends __aws_sdk_types.MetadataBearer { /** *

The date and time when the Deployment resource was created.

*/ CreatedDate?: Date; /** *

The identifier for the deployment.

*/ DeploymentId?: string; /** *

The status of the deployment: PENDING, FAILED, or * SUCCEEDED.

*/ DeploymentStatus?: "PENDING" | "FAILED" | "DEPLOYED" | string; /** *

May contain additional feedback on the status of an API deployment.

*/ DeploymentStatusMessage?: string; /** *

The description for the deployment.

*/ Description?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }