Enum rusoto_config::StartConfigRulesEvaluationError [] [src]

pub enum StartConfigRulesEvaluationError {
    InvalidParameterValue(String),
    LimitExceeded(String),
    NoSuchConfigRule(String),
    ResourceInUse(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by StartConfigRulesEvaluation

Variants

One or more of the specified parameters are invalid. Verify that your parameters are valid and try again.

This exception is thrown if an evaluation is in progress or if you call the StartConfigRulesEvaluation API more than once per minute.

One or more AWS Config rules in the request are invalid. Verify that the rule names are correct and try again.

The rule is currently being deleted or the rule is deleting your evaluation results. Try your request again later.

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

Trait Implementations

impl Debug for StartConfigRulesEvaluationError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for StartConfigRulesEvaluationError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for StartConfigRulesEvaluationError
[src]

[src]

Performs the conversion.

impl From<Error> for StartConfigRulesEvaluationError
[src]

[src]

Performs the conversion.

impl Display for StartConfigRulesEvaluationError
[src]

[src]

Formats the value using the given formatter. Read more

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