pub enum ContinueDeploymentError {
DeploymentAlreadyCompleted(String),
DeploymentDoesNotExist(String),
DeploymentIdRequired(String),
DeploymentIsNotInReadyState(String),
InvalidDeploymentId(String),
InvalidDeploymentStatus(String),
InvalidDeploymentWaitType(String),
UnsupportedActionForDeploymentType(String),
}
Expand description
Errors returned by ContinueDeployment
Variants§
DeploymentAlreadyCompleted(String)
The deployment is already complete.
DeploymentDoesNotExist(String)
The deployment with the IAM user or AWS account does not exist.
DeploymentIdRequired(String)
At least one deployment ID must be specified.
DeploymentIsNotInReadyState(String)
The deployment does not have a status of Ready and can't continue yet.
InvalidDeploymentId(String)
At least one of the deployment IDs was specified in an invalid format.
InvalidDeploymentStatus(String)
The specified deployment status doesn't exist or cannot be determined.
InvalidDeploymentWaitType(String)
The wait type is invalid.
UnsupportedActionForDeploymentType(String)
A call was submitted that is not supported for the specified deployment type.
Implementations§
Source§impl ContinueDeploymentError
impl ContinueDeploymentError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ContinueDeploymentError>
Trait Implementations§
Source§impl Debug for ContinueDeploymentError
impl Debug for ContinueDeploymentError
Source§impl Display for ContinueDeploymentError
impl Display for ContinueDeploymentError
Source§impl Error for ContinueDeploymentError
impl Error for ContinueDeploymentError
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()
Source§impl PartialEq for ContinueDeploymentError
impl PartialEq for ContinueDeploymentError
impl StructuralPartialEq for ContinueDeploymentError
Auto Trait Implementations§
impl Freeze for ContinueDeploymentError
impl RefUnwindSafe for ContinueDeploymentError
impl Send for ContinueDeploymentError
impl Sync for ContinueDeploymentError
impl Unpin for ContinueDeploymentError
impl UnwindSafe for ContinueDeploymentError
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