Enum rusoto_redshift::DescribeSnapshotCopyGrantsError[][src]

pub enum DescribeSnapshotCopyGrantsError {
    InvalidTagFault(String),
    SnapshotCopyGrantNotFoundFault(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by DescribeSnapshotCopyGrants

Variants

The tag is invalid.

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.

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

Trait Implementations

impl Debug for DescribeSnapshotCopyGrantsError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for DescribeSnapshotCopyGrantsError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl From<XmlParseError> for DescribeSnapshotCopyGrantsError
[src]

Performs the conversion.

impl From<CredentialsError> for DescribeSnapshotCopyGrantsError
[src]

Performs the conversion.

impl From<HttpDispatchError> for DescribeSnapshotCopyGrantsError
[src]

Performs the conversion.

impl From<Error> for DescribeSnapshotCopyGrantsError
[src]

Performs the conversion.

impl Display for DescribeSnapshotCopyGrantsError
[src]

Formats the value using the given formatter. Read more

impl Error for DescribeSnapshotCopyGrantsError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations