pub enum ModifyClusterSubnetGroupError {
ClusterSubnetGroupNotFoundFault(String),
ClusterSubnetQuotaExceededFault(String),
DependentServiceRequestThrottlingFault(String),
InvalidSubnet(String),
SubnetAlreadyInUse(String),
UnauthorizedOperation(String),
}
Expand description
Errors returned by ModifyClusterSubnetGroup
Variants§
ClusterSubnetGroupNotFoundFault(String)
The cluster subnet group name does not refer to an existing cluster subnet group.
ClusterSubnetQuotaExceededFault(String)
The request would result in user exceeding the allowed number of subnets in a cluster subnet groups. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.
DependentServiceRequestThrottlingFault(String)
The request cannot be completed because a dependent service is throttling requests made by Amazon Redshift on your behalf. Wait and retry the request.
InvalidSubnet(String)
The requested subnet is not valid, or not all of the subnets are in the same VPC.
SubnetAlreadyInUse(String)
A specified subnet is already in use by another cluster.
Your account is not authorized to perform the requested operation.
Implementations§
Trait Implementations§
Source§impl Error for ModifyClusterSubnetGroupError
impl Error for ModifyClusterSubnetGroupError
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 ModifyClusterSubnetGroupError
impl PartialEq for ModifyClusterSubnetGroupError
Source§fn eq(&self, other: &ModifyClusterSubnetGroupError) -> bool
fn eq(&self, other: &ModifyClusterSubnetGroupError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ModifyClusterSubnetGroupError
Auto Trait Implementations§
impl Freeze for ModifyClusterSubnetGroupError
impl RefUnwindSafe for ModifyClusterSubnetGroupError
impl Send for ModifyClusterSubnetGroupError
impl Sync for ModifyClusterSubnetGroupError
impl Unpin for ModifyClusterSubnetGroupError
impl UnwindSafe for ModifyClusterSubnetGroupError
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