pub enum DeleteApplicationError {
ApplicationNameRequired(String),
InvalidApplicationName(String),
InvalidRole(String),
}
Expand description
Errors returned by DeleteApplication
Variants§
ApplicationNameRequired(String)
The minimum number of required application names was not specified.
InvalidApplicationName(String)
The application 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 DeleteApplicationError
impl DeleteApplicationError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteApplicationError>
Trait Implementations§
Source§impl Debug for DeleteApplicationError
impl Debug for DeleteApplicationError
Source§impl Display for DeleteApplicationError
impl Display for DeleteApplicationError
Source§impl Error for DeleteApplicationError
impl Error for DeleteApplicationError
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 DeleteApplicationError
impl PartialEq for DeleteApplicationError
impl StructuralPartialEq for DeleteApplicationError
Auto Trait Implementations§
impl Freeze for DeleteApplicationError
impl RefUnwindSafe for DeleteApplicationError
impl Send for DeleteApplicationError
impl Sync for DeleteApplicationError
impl Unpin for DeleteApplicationError
impl UnwindSafe for DeleteApplicationError
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