pub enum CreateConfigurationSetError {
AlreadyExists(String),
BadRequest(String),
InternalServiceError(String),
LimitExceeded(String),
TooManyRequests(String),
}Expand description
Errors returned by CreateConfigurationSet
Variants§
AlreadyExists(String)
The resource specified in your request already exists.
BadRequest(String)
The input you provided is invalid.
InternalServiceError(String)
The API encountered an unexpected error and couldn't complete the request. You might be able to successfully issue the request again in the future.
LimitExceeded(String)
There are too many instances of the specified resource type.
TooManyRequests(String)
You've issued too many requests to the resource. Wait a few minutes, and then try again.
Implementations§
Source§impl CreateConfigurationSetError
impl CreateConfigurationSetError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateConfigurationSetError>
Trait Implementations§
Source§impl Debug for CreateConfigurationSetError
impl Debug for CreateConfigurationSetError
Source§impl Error for CreateConfigurationSetError
impl Error for CreateConfigurationSetError
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 CreateConfigurationSetError
Auto Trait Implementations§
impl Freeze for CreateConfigurationSetError
impl RefUnwindSafe for CreateConfigurationSetError
impl Send for CreateConfigurationSetError
impl Sync for CreateConfigurationSetError
impl Unpin for CreateConfigurationSetError
impl UnwindSafe for CreateConfigurationSetError
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