[][src]Enum rusoto_rds::StartExportTaskError

pub enum StartExportTaskError {
    DBClusterSnapshotNotFoundFault(String),
    DBSnapshotNotFoundFault(String),
    ExportTaskAlreadyExistsFault(String),
    IamRoleMissingPermissionsFault(String),
    IamRoleNotFoundFault(String),
    InvalidExportOnlyFault(String),
    InvalidExportSourceStateFault(String),
    InvalidS3BucketFault(String),
    KMSKeyNotAccessibleFault(String),
}

Errors returned by StartExportTask

Variants

DBClusterSnapshotNotFoundFault(String)

DBClusterSnapshotIdentifier doesn't refer to an existing DB cluster snapshot.

DBSnapshotNotFoundFault(String)

DBSnapshotIdentifier doesn't refer to an existing DB snapshot.

ExportTaskAlreadyExistsFault(String)

You can't start an export task that's already running.

IamRoleMissingPermissionsFault(String)

The IAM role requires additional permissions to export to an Amazon S3 bucket.

IamRoleNotFoundFault(String)

The IAM role is missing for exporting to an Amazon S3 bucket.

InvalidExportOnlyFault(String)

The export is invalid for exporting to an Amazon S3 bucket.

InvalidExportSourceStateFault(String)

The state of the export snapshot is invalid for exporting to an Amazon S3 bucket.

InvalidS3BucketFault(String)

The specified Amazon S3 bucket name can't be found or Amazon RDS isn't authorized to access the specified Amazon S3 bucket. Verify the SourceS3BucketName and S3IngestionRoleArn values and try again.

KMSKeyNotAccessibleFault(String)

An error occurred accessing an AWS KMS key.

Implementations

impl StartExportTaskError[src]

Trait Implementations

impl Debug for StartExportTaskError[src]

impl Display for StartExportTaskError[src]

impl Error for StartExportTaskError[src]

impl PartialEq<StartExportTaskError> for StartExportTaskError[src]

impl StructuralPartialEq for StartExportTaskError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.