pub enum ListDeploymentTargetsError {
DeploymentDoesNotExist(String),
DeploymentIdRequired(String),
DeploymentNotStarted(String),
InvalidDeploymentId(String),
InvalidDeploymentInstanceType(String),
InvalidInstanceStatus(String),
InvalidInstanceType(String),
InvalidNextToken(String),
}
Expand description
Errors returned by ListDeploymentTargets
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.
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.
Implementations§
Source§impl ListDeploymentTargetsError
impl ListDeploymentTargetsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListDeploymentTargetsError>
Trait Implementations§
Source§impl Debug for ListDeploymentTargetsError
impl Debug for ListDeploymentTargetsError
Source§impl Display for ListDeploymentTargetsError
impl Display for ListDeploymentTargetsError
Source§impl Error for ListDeploymentTargetsError
impl Error for ListDeploymentTargetsError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl StructuralPartialEq for ListDeploymentTargetsError
Auto Trait Implementations§
impl Freeze for ListDeploymentTargetsError
impl RefUnwindSafe for ListDeploymentTargetsError
impl Send for ListDeploymentTargetsError
impl Sync for ListDeploymentTargetsError
impl Unpin for ListDeploymentTargetsError
impl UnwindSafe for ListDeploymentTargetsError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more