Enum rusoto_redshift::CreateClusterSubnetGroupError[][src]

pub enum CreateClusterSubnetGroupError {
    ClusterSubnetGroupAlreadyExistsFault(String),
    ClusterSubnetGroupQuotaExceededFault(String),
    ClusterSubnetQuotaExceededFault(String),
    DependentServiceRequestThrottlingFault(String),
    InvalidSubnet(String),
    InvalidTagFault(String),
    TagLimitExceededFault(String),
    UnauthorizedOperation(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateClusterSubnetGroup

Variants

A ClusterSubnetGroupName is already used by an existing cluster subnet group.

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.

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.

The request cannot be completed because a dependent service is throttling requests made by Amazon Redshift on your behalf. Wait and retry the request.

The requested subnet is not valid, or not all of the subnets are in the same VPC.

The tag is invalid.

The request exceeds the limit of 10 tags for the resource.

Your account is not authorized to perform the requested operation.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl CreateClusterSubnetGroupError
[src]

Trait Implementations

impl Debug for CreateClusterSubnetGroupError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CreateClusterSubnetGroupError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<XmlParseError> for CreateClusterSubnetGroupError
[src]

Performs the conversion.

impl From<CredentialsError> for CreateClusterSubnetGroupError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateClusterSubnetGroupError
[src]

Performs the conversion.

impl From<Error> for CreateClusterSubnetGroupError
[src]

Performs the conversion.

impl Display for CreateClusterSubnetGroupError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateClusterSubnetGroupError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations