Enum rusoto_rds::RestoreDBClusterFromS3Error [] [src]

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

Errors returned by RestoreDBClusterFromS3

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.

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 DB subnet group cannot be deleted because it is in use.

The specified Amazon S3 bucket name could not be found or Amazon RDS is not authorized to access the specified Amazon S3 bucket. Verify the SourceS3BucketName and S3IngestionRoleArn values and try again.

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

Trait Implementations

impl Debug for RestoreDBClusterFromS3Error
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for RestoreDBClusterFromS3Error
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for RestoreDBClusterFromS3Error
[src]

[src]

Performs the conversion.

impl From<Error> for RestoreDBClusterFromS3Error
[src]

[src]

Performs the conversion.

impl Display for RestoreDBClusterFromS3Error
[src]

[src]

Formats the value using the given formatter. Read more

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