Enum rusoto_config::StartConfigurationRecorderError[][src]

pub enum StartConfigurationRecorderError {
    NoAvailableDeliveryChannel(String),
    NoSuchConfigurationRecorder(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by StartConfigurationRecorder

Variants

There is no delivery channel available to record configurations.

You have specified a configuration recorder that does not exist.

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

Trait Implementations

impl Debug for StartConfigurationRecorderError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for StartConfigurationRecorderError
[src]

Performs the conversion.

impl From<HttpDispatchError> for StartConfigurationRecorderError
[src]

Performs the conversion.

impl From<Error> for StartConfigurationRecorderError
[src]

Performs the conversion.

impl Display for StartConfigurationRecorderError
[src]

Formats the value using the given formatter. Read more

impl Error for StartConfigurationRecorderError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations