pub enum DeleteDeploymentGroupError {
ApplicationNameRequired(String),
DeploymentGroupNameRequired(String),
InvalidApplicationName(String),
InvalidDeploymentGroupName(String),
InvalidRole(String),
}
Expand description
Errors returned by DeleteDeploymentGroup
Variants§
ApplicationNameRequired(String)
The minimum number of required application names was not specified.
DeploymentGroupNameRequired(String)
The deployment group name was not specified.
InvalidApplicationName(String)
The application name was specified in an invalid format.
InvalidDeploymentGroupName(String)
The deployment group name was specified in an invalid format.
InvalidRole(String)
The service role ARN was specified in an invalid format. Or, if an Auto Scaling group was specified, the specified service role does not grant the appropriate permissions to Amazon EC2 Auto Scaling.
Implementations§
Source§impl DeleteDeploymentGroupError
impl DeleteDeploymentGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteDeploymentGroupError>
Trait Implementations§
Source§impl Debug for DeleteDeploymentGroupError
impl Debug for DeleteDeploymentGroupError
Source§impl Display for DeleteDeploymentGroupError
impl Display for DeleteDeploymentGroupError
Source§impl Error for DeleteDeploymentGroupError
impl Error for DeleteDeploymentGroupError
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 DeleteDeploymentGroupError
Auto Trait Implementations§
impl Freeze for DeleteDeploymentGroupError
impl RefUnwindSafe for DeleteDeploymentGroupError
impl Send for DeleteDeploymentGroupError
impl Sync for DeleteDeploymentGroupError
impl Unpin for DeleteDeploymentGroupError
impl UnwindSafe for DeleteDeploymentGroupError
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