pub enum CreateClusterSubnetGroupError {
ClusterSubnetGroupAlreadyExistsFault(String),
ClusterSubnetGroupQuotaExceededFault(String),
ClusterSubnetQuotaExceededFault(String),
DependentServiceRequestThrottlingFault(String),
InvalidSubnet(String),
InvalidTagFault(String),
TagLimitExceededFault(String),
UnauthorizedOperation(String),
}
Expand description
Errors returned by CreateClusterSubnetGroup
Variants§
ClusterSubnetGroupAlreadyExistsFault(String)
A ClusterSubnetGroupName is already used by an existing cluster subnet group.
ClusterSubnetGroupQuotaExceededFault(String)
The request would result in user exceeding the allowed number of cluster subnet groups. For information about increasing your quota, go to Limits in Amazon Redshift in the Amazon Redshift Cluster Management Guide.
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.
InvalidTagFault(String)
The tag is invalid.
TagLimitExceededFault(String)
You have exceeded the number of tags allowed.
Your account is not authorized to perform the requested operation.
Implementations§
Trait Implementations§
Source§impl Error for CreateClusterSubnetGroupError
impl Error for CreateClusterSubnetGroupError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl PartialEq for CreateClusterSubnetGroupError
impl PartialEq for CreateClusterSubnetGroupError
Source§fn eq(&self, other: &CreateClusterSubnetGroupError) -> bool
fn eq(&self, other: &CreateClusterSubnetGroupError) -> bool
self
and other
values to be equal, and is used by ==
.