pub enum CreateHsmConfigurationError {
HsmConfigurationAlreadyExistsFault(String),
HsmConfigurationQuotaExceededFault(String),
InvalidTagFault(String),
TagLimitExceededFault(String),
}
Expand description
Errors returned by CreateHsmConfiguration
Variants§
HsmConfigurationAlreadyExistsFault(String)
There is already an existing Amazon Redshift HSM configuration with the specified identifier.
HsmConfigurationQuotaExceededFault(String)
The quota for HSM configurations has been reached. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.
InvalidTagFault(String)
The tag is invalid.
TagLimitExceededFault(String)
You have exceeded the number of tags allowed.
Implementations§
Source§impl CreateHsmConfigurationError
impl CreateHsmConfigurationError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateHsmConfigurationError>
Trait Implementations§
Source§impl Debug for CreateHsmConfigurationError
impl Debug for CreateHsmConfigurationError
Source§impl Error for CreateHsmConfigurationError
impl Error for CreateHsmConfigurationError
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 CreateHsmConfigurationError
Auto Trait Implementations§
impl Freeze for CreateHsmConfigurationError
impl RefUnwindSafe for CreateHsmConfigurationError
impl Send for CreateHsmConfigurationError
impl Sync for CreateHsmConfigurationError
impl Unpin for CreateHsmConfigurationError
impl UnwindSafe for CreateHsmConfigurationError
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