pub enum CreateSAMLProviderError {
EntityAlreadyExists(String),
InvalidInput(String),
LimitExceeded(String),
ServiceFailure(String),
}Expand description
Errors returned by CreateSAMLProvider
Variants§
EntityAlreadyExists(String)
The request was rejected because it attempted to create a resource that already exists.
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 limitations. The error message describes the limit exceeded.
ServiceFailure(String)
The request processing has failed because of an unknown error, exception or failure.
Implementations§
Source§impl CreateSAMLProviderError
impl CreateSAMLProviderError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateSAMLProviderError>
Trait Implementations§
Source§impl Debug for CreateSAMLProviderError
impl Debug for CreateSAMLProviderError
Source§impl Display for CreateSAMLProviderError
impl Display for CreateSAMLProviderError
Source§impl Error for CreateSAMLProviderError
impl Error for CreateSAMLProviderError
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 CreateSAMLProviderError
impl PartialEq for CreateSAMLProviderError
impl StructuralPartialEq for CreateSAMLProviderError
Auto Trait Implementations§
impl Freeze for CreateSAMLProviderError
impl RefUnwindSafe for CreateSAMLProviderError
impl Send for CreateSAMLProviderError
impl Sync for CreateSAMLProviderError
impl Unpin for CreateSAMLProviderError
impl UnwindSafe for CreateSAMLProviderError
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