Enum rusoto_rds::CreateDBClusterError [] [src]

pub enum CreateDBClusterError {
    DBClusterAlreadyExistsFault(String),
    DBClusterNotFoundFault(String),
    DBClusterParameterGroupNotFoundFault(String),
    DBClusterQuotaExceededFault(String),
    DBInstanceNotFoundFault(String),
    DBSubnetGroupDoesNotCoverEnoughAZs(String),
    DBSubnetGroupNotFoundFault(String),
    InsufficientStorageClusterCapacityFault(String),
    InvalidDBClusterStateFault(String),
    InvalidDBInstanceStateFault(String),
    InvalidDBSubnetGroupStateFault(String),
    InvalidSubnet(String),
    InvalidVPCNetworkStateFault(String),
    KMSKeyNotAccessibleFault(String),
    StorageQuotaExceededFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateDBCluster

Variants

User already has a DB cluster with the given identifier.

DBClusterIdentifier does not refer to an existing DB cluster.

DBClusterParameterGroupName does not refer to an existing DB Cluster parameter group.

User attempted to create a new DB cluster and the user has already reached the maximum allowed DB cluster quota.

DBInstanceIdentifier does not refer to an existing DB instance.

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.

There is insufficient storage available for the current action. You may be able to resolve this error by updating your subnet group to use different Availability Zones that have more storage available.

The DB cluster is not in a valid state.

The specified DB instance is not in the available state.

The DB subnet group cannot be deleted because it is in use.

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

DB subnet group does not cover all Availability Zones after it is created because users' change.

Error accessing KMS key.

Request would result in user exceeding the allowed amount of storage available across all DB instances.

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

Trait Implementations

impl Debug for CreateDBClusterError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for CreateDBClusterError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateDBClusterError
[src]

[src]

Performs the conversion.

impl From<Error> for CreateDBClusterError
[src]

[src]

Performs the conversion.

impl Display for CreateDBClusterError
[src]

[src]

Formats the value using the given formatter. Read more

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