Enum rusoto_ssm::StartAutomationExecutionError [] [src]

pub enum StartAutomationExecutionError {
    AutomationDefinitionNotFound(String),
    AutomationDefinitionVersionNotFound(String),
    AutomationExecutionLimitExceeded(String),
    IdempotentParameterMismatch(String),
    InternalServerError(String),
    InvalidAutomationExecutionParameters(String),
    InvalidTarget(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by StartAutomationExecution

Variants

An Automation document with the specified name could not be found.

An Automation document with the specified name and version could not be found.

The number of simultaneously running Automation executions exceeded the allowable limit.

Error returned when an idempotent operation is retried and the parameters don't match the original call to the API with the same idempotency token.

An error occurred on the server side.

The supplied parameters for invoking the specified Automation document are incorrect. For example, they may not match the set of parameters permitted for the specified Automation document.

The target is not valid or does not exist. It might not be configured for EC2 Systems Manager or you might not have permission to perform the 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 StartAutomationExecutionError
[src]

Trait Implementations

impl Debug for StartAutomationExecutionError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for StartAutomationExecutionError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for StartAutomationExecutionError
[src]

[src]

Performs the conversion.

impl From<Error> for StartAutomationExecutionError
[src]

[src]

Performs the conversion.

impl Display for StartAutomationExecutionError
[src]

[src]

Formats the value using the given formatter. Read more

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