Enum rusoto_redshift::ModifyClusterSubnetGroupError [] [src]

pub enum ModifyClusterSubnetGroupError {
    ClusterSubnetGroupNotFoundFault(String),
    ClusterSubnetQuotaExceededFault(String),
    DependentServiceRequestThrottlingFault(String),
    InvalidSubnet(String),
    SubnetAlreadyInUse(String),
    UnauthorizedOperation(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by ModifyClusterSubnetGroup

Variants

The cluster subnet group name does not refer to an existing cluster subnet group.

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.

A specified subnet is already in use by another cluster.

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 ModifyClusterSubnetGroupError
[src]

Trait Implementations

impl Debug for ModifyClusterSubnetGroupError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for ModifyClusterSubnetGroupError
[src]

[src]

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

[src]

This method tests for !=.

impl From<XmlParseError> for ModifyClusterSubnetGroupError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for ModifyClusterSubnetGroupError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for ModifyClusterSubnetGroupError
[src]

[src]

Performs the conversion.

impl From<Error> for ModifyClusterSubnetGroupError
[src]

[src]

Performs the conversion.

impl Display for ModifyClusterSubnetGroupError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for ModifyClusterSubnetGroupError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

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

Auto Trait Implementations