pub enum CreateUsageLimitError {
ClusterNotFoundFault(String),
InvalidClusterStateFault(String),
InvalidUsageLimitFault(String),
LimitExceededFault(String),
TagLimitExceededFault(String),
UnsupportedOperationFault(String),
UsageLimitAlreadyExistsFault(String),
}
Expand description
Errors returned by CreateUsageLimit
Variants§
ClusterNotFoundFault(String)
The ClusterIdentifier
parameter does not refer to an existing cluster.
InvalidClusterStateFault(String)
The specified cluster is not in the available
state.
InvalidUsageLimitFault(String)
The usage limit is not valid.
LimitExceededFault(String)
The encryption key has exceeded its grant limit in AWS KMS.
TagLimitExceededFault(String)
You have exceeded the number of tags allowed.
UnsupportedOperationFault(String)
The requested operation isn't supported.
UsageLimitAlreadyExistsFault(String)
The usage limit already exists.
Implementations§
Source§impl CreateUsageLimitError
impl CreateUsageLimitError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateUsageLimitError>
Trait Implementations§
Source§impl Debug for CreateUsageLimitError
impl Debug for CreateUsageLimitError
Source§impl Display for CreateUsageLimitError
impl Display for CreateUsageLimitError
Source§impl Error for CreateUsageLimitError
impl Error for CreateUsageLimitError
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 CreateUsageLimitError
impl PartialEq for CreateUsageLimitError
impl StructuralPartialEq for CreateUsageLimitError
Auto Trait Implementations§
impl Freeze for CreateUsageLimitError
impl RefUnwindSafe for CreateUsageLimitError
impl Send for CreateUsageLimitError
impl Sync for CreateUsageLimitError
impl Unpin for CreateUsageLimitError
impl UnwindSafe for CreateUsageLimitError
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