Enum rusoto_firehose::UpdateDestinationError[][src]

pub enum UpdateDestinationError {
    ConcurrentModification(String),
    InvalidArgument(String),
    ResourceInUse(String),
    ResourceNotFound(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by UpdateDestination

Variants

Another modification has already happened. Fetch VersionId again and use it to update the destination.

The specified input parameter has a value that is not valid.

The resource is already in use and not available for this operation.

The specified resource could not be found.

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

Trait Implementations

impl Debug for UpdateDestinationError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for UpdateDestinationError
[src]

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

This method tests for !=.

impl From<Error> for UpdateDestinationError
[src]

Performs the conversion.

impl From<CredentialsError> for UpdateDestinationError
[src]

Performs the conversion.

impl From<HttpDispatchError> for UpdateDestinationError
[src]

Performs the conversion.

impl From<Error> for UpdateDestinationError
[src]

Performs the conversion.

impl Display for UpdateDestinationError
[src]

Formats the value using the given formatter. Read more

impl Error for UpdateDestinationError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations