pub enum CreateConfigurationSetError {
ConfigurationSetAlreadyExists(String),
InvalidConfigurationSet(String),
LimitExceeded(String),
}Expand description
Errors returned by CreateConfigurationSet
Variants§
ConfigurationSetAlreadyExists(String)
Indicates that the configuration set could not be created because of a naming conflict.
InvalidConfigurationSet(String)
Indicates that the configuration set is invalid. See the error message for details.
LimitExceeded(String)
Indicates that a resource could not be created because of service limits. For a list of Amazon SES limits, see the Amazon SES Developer Guide.
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