Enum rusoto_dax::CreateSubnetGroupError [] [src]

pub enum CreateSubnetGroupError {
    InvalidSubnet(String),
    SubnetGroupAlreadyExistsFault(String),
    SubnetGroupQuotaExceededFault(String),
    SubnetQuotaExceededFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateSubnetGroup

Variants

An invalid subnet identifier was specified.

The specified subnet group already exists.

The request cannot be processed because it would exceed the allowed number of subnets in a subnet group.

The request cannot be processed because it would exceed the allowed number of subnets in a subnet group.

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

Trait Implementations

impl Debug for CreateSubnetGroupError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for CreateSubnetGroupError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateSubnetGroupError
[src]

[src]

Performs the conversion.

impl From<Error> for CreateSubnetGroupError
[src]

[src]

Performs the conversion.

impl Display for CreateSubnetGroupError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for CreateSubnetGroupError
[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