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