pub enum CreateResourceGroupError {
AccessDenied(String),
Internal(String),
InvalidInput(String),
LimitExceeded(String),
ServiceTemporarilyUnavailable(String),
}Expand description
Errors returned by CreateResourceGroup
Variants§
AccessDenied(String)
You do not have required permissions to access the requested resource.
Internal(String)
Internal server error.
InvalidInput(String)
The request was rejected because an invalid or out-of-range value was supplied for an input parameter.
LimitExceeded(String)
The request was rejected because it attempted to create resources beyond the current AWS account limits. The error code describes the limit exceeded.
The serice is temporary unavailable.
Implementations§
Source§impl CreateResourceGroupError
impl CreateResourceGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateResourceGroupError>
Trait Implementations§
Source§impl Debug for CreateResourceGroupError
impl Debug for CreateResourceGroupError
Source§impl Display for CreateResourceGroupError
impl Display for CreateResourceGroupError
Source§impl Error for CreateResourceGroupError
impl Error for CreateResourceGroupError
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 CreateResourceGroupError
impl PartialEq for CreateResourceGroupError
impl StructuralPartialEq for CreateResourceGroupError
Auto Trait Implementations§
impl Freeze for CreateResourceGroupError
impl RefUnwindSafe for CreateResourceGroupError
impl Send for CreateResourceGroupError
impl Sync for CreateResourceGroupError
impl Unpin for CreateResourceGroupError
impl UnwindSafe for CreateResourceGroupError
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