Enum rusoto_stepfunctions::CreateStateMachineError [] [src]

pub enum CreateStateMachineError {
    InvalidArn(String),
    InvalidDefinition(String),
    InvalidName(String),
    StateMachineAlreadyExists(String),
    StateMachineDeleting(String),
    StateMachineLimitExceeded(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateStateMachine

Variants

The provided Amazon Resource Name (ARN) is invalid.

The provided Amazon States Language definition is invalid.

The provided name is invalid.

A state machine with the same name but a different definition or role ARN already exists.

The specified state machine is being deleted.

The maximum number of state machines has been reached. Existing state machines must be deleted before a new state machine can be created.

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

Trait Implementations

impl Debug for CreateStateMachineError
[src]

[src]

Formats the value using the given formatter. Read more

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

[src]

Performs the conversion.

impl From<CredentialsError> for CreateStateMachineError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateStateMachineError
[src]

[src]

Performs the conversion.

impl From<Error> for CreateStateMachineError
[src]

[src]

Performs the conversion.

impl Display for CreateStateMachineError
[src]

[src]

Formats the value using the given formatter. Read more

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