pub enum DeleteDeploymentConfigError {
DeploymentConfigInUse(String),
DeploymentConfigNameRequired(String),
InvalidDeploymentConfigName(String),
InvalidOperation(String),
}
Expand description
Errors returned by DeleteDeploymentConfig
Variants§
DeploymentConfigInUse(String)
The deployment configuration is still in use.
DeploymentConfigNameRequired(String)
The deployment configuration name was not specified.
InvalidDeploymentConfigName(String)
The deployment configuration name was specified in an invalid format.
InvalidOperation(String)
An invalid operation was detected.
Implementations§
Source§impl DeleteDeploymentConfigError
impl DeleteDeploymentConfigError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteDeploymentConfigError>
Trait Implementations§
Source§impl Debug for DeleteDeploymentConfigError
impl Debug for DeleteDeploymentConfigError
Source§impl Error for DeleteDeploymentConfigError
impl Error for DeleteDeploymentConfigError
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 DeleteDeploymentConfigError
Auto Trait Implementations§
impl Freeze for DeleteDeploymentConfigError
impl RefUnwindSafe for DeleteDeploymentConfigError
impl Send for DeleteDeploymentConfigError
impl Sync for DeleteDeploymentConfigError
impl Unpin for DeleteDeploymentConfigError
impl UnwindSafe for DeleteDeploymentConfigError
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