Enum rusoto_rds::CreateDBSubnetGroupError[][src]

pub enum CreateDBSubnetGroupError {
    DBSubnetGroupAlreadyExistsFault(String),
    DBSubnetGroupDoesNotCoverEnoughAZs(String),
    DBSubnetGroupQuotaExceededFault(String),
    DBSubnetQuotaExceededFault(String),
    InvalidSubnet(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateDBSubnetGroup

Variants

DBSubnetGroupName is already used by an existing DB subnet group.

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

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

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.

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

Trait Implementations

impl Debug for CreateDBSubnetGroupError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for CreateDBSubnetGroupError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateDBSubnetGroupError
[src]

Performs the conversion.

impl From<Error> for CreateDBSubnetGroupError
[src]

Performs the conversion.

impl Display for CreateDBSubnetGroupError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateDBSubnetGroupError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations