pub enum CreateReportGroupError {
AccountLimitExceeded(String),
InvalidInput(String),
ResourceAlreadyExists(String),
}
Expand description
Errors returned by CreateReportGroup
Variants§
AccountLimitExceeded(String)
An AWS service limit was exceeded for the calling AWS account.
InvalidInput(String)
The input value that was provided is not valid.
ResourceAlreadyExists(String)
The specified AWS resource cannot be created, because an AWS resource with the same settings already exists.
Implementations§
Source§impl CreateReportGroupError
impl CreateReportGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateReportGroupError>
Trait Implementations§
Source§impl Debug for CreateReportGroupError
impl Debug for CreateReportGroupError
Source§impl Display for CreateReportGroupError
impl Display for CreateReportGroupError
Source§impl Error for CreateReportGroupError
impl Error for CreateReportGroupError
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 CreateReportGroupError
impl PartialEq for CreateReportGroupError
impl StructuralPartialEq for CreateReportGroupError
Auto Trait Implementations§
impl Freeze for CreateReportGroupError
impl RefUnwindSafe for CreateReportGroupError
impl Send for CreateReportGroupError
impl Sync for CreateReportGroupError
impl Unpin for CreateReportGroupError
impl UnwindSafe for CreateReportGroupError
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