pub enum CreateLogGroupError {
InvalidParameter(String),
LimitExceeded(String),
OperationAborted(String),
ResourceAlreadyExists(String),
ServiceUnavailable(String),
}Expand description
Errors returned by CreateLogGroup
Variants§
InvalidParameter(String)
A parameter is specified incorrectly.
LimitExceeded(String)
You have reached the maximum number of resources that can be created.
OperationAborted(String)
Multiple requests to update the same resource were in conflict.
ResourceAlreadyExists(String)
The specified resource already exists.
The service cannot complete the request.
Implementations§
Source§impl CreateLogGroupError
impl CreateLogGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateLogGroupError>
Trait Implementations§
Source§impl Debug for CreateLogGroupError
impl Debug for CreateLogGroupError
Source§impl Display for CreateLogGroupError
impl Display for CreateLogGroupError
Source§impl Error for CreateLogGroupError
impl Error for CreateLogGroupError
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 CreateLogGroupError
impl PartialEq for CreateLogGroupError
impl StructuralPartialEq for CreateLogGroupError
Auto Trait Implementations§
impl Freeze for CreateLogGroupError
impl RefUnwindSafe for CreateLogGroupError
impl Send for CreateLogGroupError
impl Sync for CreateLogGroupError
impl Unpin for CreateLogGroupError
impl UnwindSafe for CreateLogGroupError
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