pub enum ListAttributesError {
ClusterNotFound(String),
InvalidParameter(String),
}
Expand description
Errors returned by ListAttributes
Variants§
ClusterNotFound(String)
The specified cluster could not be found. You can view your available clusters with ListClusters. Amazon ECS clusters are Region-specific.
InvalidParameter(String)
The specified parameter is invalid. Review the available parameters for the API request.
Implementations§
Source§impl ListAttributesError
impl ListAttributesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<ListAttributesError>
Trait Implementations§
Source§impl Debug for ListAttributesError
impl Debug for ListAttributesError
Source§impl Display for ListAttributesError
impl Display for ListAttributesError
Source§impl Error for ListAttributesError
impl Error for ListAttributesError
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 ListAttributesError
impl PartialEq for ListAttributesError
impl StructuralPartialEq for ListAttributesError
Auto Trait Implementations§
impl Freeze for ListAttributesError
impl RefUnwindSafe for ListAttributesError
impl Send for ListAttributesError
impl Sync for ListAttributesError
impl Unpin for ListAttributesError
impl UnwindSafe for ListAttributesError
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