pub enum ListDeploymentInstancesError {
DeploymentDoesNotExist(String),
DeploymentIdRequired(String),
DeploymentNotStarted(String),
InvalidComputePlatform(String),
InvalidDeploymentId(String),
InvalidDeploymentInstanceType(String),
InvalidInstanceStatus(String),
InvalidInstanceType(String),
InvalidNextToken(String),
InvalidTargetFilterName(String),
}
Expand description
Errors returned by ListDeploymentInstances
Variants§
DeploymentDoesNotExist(String)
The deployment with the IAM user or AWS account does not exist.
DeploymentIdRequired(String)
At least one deployment ID must be specified.
DeploymentNotStarted(String)
The specified deployment has not started.
InvalidComputePlatform(String)
The computePlatform is invalid. The computePlatform should be Lambda
, Server
, or ECS
.
InvalidDeploymentId(String)
At least one of the deployment IDs was specified in an invalid format.
InvalidDeploymentInstanceType(String)
An instance type was specified for an in-place deployment. Instance types are supported for blue/green deployments only.
InvalidInstanceStatus(String)
The specified instance status does not exist.
InvalidInstanceType(String)
An invalid instance type was specified for instances in a blue/green deployment. Valid values include "Blue" for an original environment and "Green" for a replacement environment.
InvalidNextToken(String)
The next token was specified in an invalid format.
InvalidTargetFilterName(String)
The target filter name is invalid.
Implementations§
Trait Implementations§
Source§impl Debug for ListDeploymentInstancesError
impl Debug for ListDeploymentInstancesError
Source§impl Error for ListDeploymentInstancesError
impl Error for ListDeploymentInstancesError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl PartialEq for ListDeploymentInstancesError
impl PartialEq for ListDeploymentInstancesError
Source§fn eq(&self, other: &ListDeploymentInstancesError) -> bool
fn eq(&self, other: &ListDeploymentInstancesError) -> bool
self
and other
values to be equal, and is used by ==
.