Enum rusoto_rds::ModifyDBSubnetGroupError[][src]

pub enum ModifyDBSubnetGroupError {
    DBSubnetGroupDoesNotCoverEnoughAZs(String),
    DBSubnetGroupNotFoundFault(String),
    DBSubnetQuotaExceededFault(String),
    InvalidSubnet(String),
    SubnetAlreadyInUse(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by ModifyDBSubnetGroup

Variants

Subnets in the DB subnet group should cover at least two Availability Zones unless there is only one Availability Zone.

DBSubnetGroupName does not refer to an existing DB subnet group.

Request would result in user exceeding the allowed number of subnets in a DB subnet groups.

The requested subnet is invalid, or multiple subnets were requested that are not all in a common VPC.

The DB subnet is already in use in the Availability Zone.

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

Trait Implementations

impl Debug for ModifyDBSubnetGroupError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ModifyDBSubnetGroupError
[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 ModifyDBSubnetGroupError
[src]

Performs the conversion.

impl From<CredentialsError> for ModifyDBSubnetGroupError
[src]

Performs the conversion.

impl From<HttpDispatchError> for ModifyDBSubnetGroupError
[src]

Performs the conversion.

impl From<Error> for ModifyDBSubnetGroupError
[src]

Performs the conversion.

impl Display for ModifyDBSubnetGroupError
[src]

Formats the value using the given formatter. Read more

impl Error for ModifyDBSubnetGroupError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations