pub enum GetDeploymentError {
DeploymentDoesNotExist(String),
DeploymentIdRequired(String),
InvalidDeploymentId(String),
}
Expand description
Errors returned by GetDeployment
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.
InvalidDeploymentId(String)
At least one of the deployment IDs was specified in an invalid format.
Implementations§
Source§impl GetDeploymentError
impl GetDeploymentError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetDeploymentError>
Trait Implementations§
Source§impl Debug for GetDeploymentError
impl Debug for GetDeploymentError
Source§impl Display for GetDeploymentError
impl Display for GetDeploymentError
Source§impl Error for GetDeploymentError
impl Error for GetDeploymentError
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 GetDeploymentError
impl PartialEq for GetDeploymentError
impl StructuralPartialEq for GetDeploymentError
Auto Trait Implementations§
impl Freeze for GetDeploymentError
impl RefUnwindSafe for GetDeploymentError
impl Send for GetDeploymentError
impl Sync for GetDeploymentError
impl Unpin for GetDeploymentError
impl UnwindSafe for GetDeploymentError
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