Enum rusoto_redshift::ModifySnapshotCopyRetentionPeriodError [] [src]

pub enum ModifySnapshotCopyRetentionPeriodError {
    ClusterNotFoundFault(String),
    InvalidClusterStateFault(String),
    SnapshotCopyDisabledFault(String),
    UnauthorizedOperation(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by ModifySnapshotCopyRetentionPeriod

Variants

The ClusterIdentifier parameter does not refer to an existing cluster.

The specified cluster is not in the available state.

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

Your account is not authorized to perform the requested operation.

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

Trait Implementations

impl Debug for ModifySnapshotCopyRetentionPeriodError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for ModifySnapshotCopyRetentionPeriodError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for ModifySnapshotCopyRetentionPeriodError
[src]

impl From<Error> for ModifySnapshotCopyRetentionPeriodError
[src]

[src]

Performs the conversion.

impl Display for ModifySnapshotCopyRetentionPeriodError
[src]

[src]

Formats the value using the given formatter. Read more

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