pub enum CreateClusterParameterGroupError {
ClusterParameterGroupAlreadyExistsFault(String),
ClusterParameterGroupQuotaExceededFault(String),
InvalidTagFault(String),
TagLimitExceededFault(String),
}
Expand description
Errors returned by CreateClusterParameterGroup
Variants§
ClusterParameterGroupAlreadyExistsFault(String)
A cluster parameter group with the same name already exists.
ClusterParameterGroupQuotaExceededFault(String)
The request would result in the user exceeding the allowed number of cluster parameter groups. 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§
Trait Implementations§
Source§impl Error for CreateClusterParameterGroupError
impl Error for CreateClusterParameterGroupError
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 CreateClusterParameterGroupError
impl PartialEq for CreateClusterParameterGroupError
Source§fn eq(&self, other: &CreateClusterParameterGroupError) -> bool
fn eq(&self, other: &CreateClusterParameterGroupError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateClusterParameterGroupError
Auto Trait Implementations§
impl Freeze for CreateClusterParameterGroupError
impl RefUnwindSafe for CreateClusterParameterGroupError
impl Send for CreateClusterParameterGroupError
impl Sync for CreateClusterParameterGroupError
impl Unpin for CreateClusterParameterGroupError
impl UnwindSafe for CreateClusterParameterGroupError
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