/** *
An immutable representation of an API that can be called by users. A * Deployment must be associated with a Stage for it to be * callable over the internet.
*/ export interface _Deployment { /** *The date and time when the Deployment resource was created.
*/ CreatedDate?: Date | string | number; /** *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; } export interface _UnmarshalledDeployment extends _Deployment { /** *The date and time when the Deployment resource was created.
*/ CreatedDate?: Date; }