pub enum ListDeploymentGroupsError {
ApplicationDoesNotExist(String),
ApplicationNameRequired(String),
InvalidApplicationName(String),
InvalidNextToken(String),
}
Expand description
Errors returned by ListDeploymentGroups
Variants§
ApplicationDoesNotExist(String)
The application does not exist with the IAM user or AWS account.
ApplicationNameRequired(String)
The minimum number of required application names was not specified.
InvalidApplicationName(String)
The application name was specified in an invalid format.
InvalidNextToken(String)
The next token was specified in an invalid format.
Implementations§
Source§impl ListDeploymentGroupsError
impl ListDeploymentGroupsError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListDeploymentGroupsError>
Trait Implementations§
Source§impl Debug for ListDeploymentGroupsError
impl Debug for ListDeploymentGroupsError
Source§impl Display for ListDeploymentGroupsError
impl Display for ListDeploymentGroupsError
Source§impl Error for ListDeploymentGroupsError
impl Error for ListDeploymentGroupsError
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 ListDeploymentGroupsError
Auto Trait Implementations§
impl Freeze for ListDeploymentGroupsError
impl RefUnwindSafe for ListDeploymentGroupsError
impl Send for ListDeploymentGroupsError
impl Sync for ListDeploymentGroupsError
impl Unpin for ListDeploymentGroupsError
impl UnwindSafe for ListDeploymentGroupsError
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