[][src]Enum rusoto_redshift::EnableSnapshotCopyError

pub enum EnableSnapshotCopyError {
    ClusterNotFoundFault(String),
    CopyToRegionDisabledFault(String),
    DependentServiceRequestThrottlingFault(String),
    IncompatibleOrderableOptions(String),
    InvalidClusterStateFault(String),
    InvalidRetentionPeriodFault(String),
    LimitExceededFault(String),
    SnapshotCopyAlreadyEnabledFault(String),
    SnapshotCopyGrantNotFoundFault(String),
    UnauthorizedOperation(String),
    UnknownSnapshotCopyRegionFault(String),
}

Errors returned by EnableSnapshotCopy

Variants

ClusterNotFoundFault(String)

The ClusterIdentifier parameter does not refer to an existing cluster.

CopyToRegionDisabledFault(String)

Cross-region snapshot copy was temporarily disabled. Try your request again.

DependentServiceRequestThrottlingFault(String)

The request cannot be completed because a dependent service is throttling requests made by Amazon Redshift on your behalf. Wait and retry the request.

IncompatibleOrderableOptions(String)

The specified options are incompatible.

InvalidClusterStateFault(String)

The specified cluster is not in the available state.

InvalidRetentionPeriodFault(String)

The retention period specified is either in the past or is not a valid value.

The value must be either -1 or an integer between 1 and 3,653.

LimitExceededFault(String)

The encryption key has exceeded its grant limit in AWS KMS.

SnapshotCopyAlreadyEnabledFault(String)

The cluster already has cross-region snapshot copy enabled.

SnapshotCopyGrantNotFoundFault(String)

The specified snapshot copy grant can't be found. Make sure that the name is typed correctly and that the grant exists in the destination region.

UnauthorizedOperation(String)

Your account is not authorized to perform the requested operation.

UnknownSnapshotCopyRegionFault(String)

The specified region is incorrect or does not exist.

Implementations

impl EnableSnapshotCopyError[src]

Trait Implementations

impl Debug for EnableSnapshotCopyError[src]

impl Display for EnableSnapshotCopyError[src]

impl Error for EnableSnapshotCopyError[src]

impl PartialEq<EnableSnapshotCopyError> for EnableSnapshotCopyError[src]

impl StructuralPartialEq for EnableSnapshotCopyError[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> 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.