[][src]Enum rusoto_stepfunctions::CreateStateMachineError

pub enum CreateStateMachineError {
    InvalidArn(String),
    InvalidDefinition(String),
    InvalidLoggingConfiguration(String),
    InvalidName(String),
    InvalidTracingConfiguration(String),
    StateMachineAlreadyExists(String),
    StateMachineDeleting(String),
    StateMachineLimitExceeded(String),
    StateMachineTypeNotSupported(String),
    TooManyTags(String),
}

Errors returned by CreateStateMachine

Variants

InvalidArn(String)

The provided Amazon Resource Name (ARN) is invalid.

InvalidDefinition(String)

The provided Amazon States Language definition is invalid.

InvalidLoggingConfiguration(String)

InvalidName(String)

The provided name is invalid.

InvalidTracingConfiguration(String)

Your tracingConfiguration key does not match, or enabled has not been set to true or false.

StateMachineAlreadyExists(String)

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

StateMachineDeleting(String)

The specified state machine is being deleted.

StateMachineLimitExceeded(String)

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

StateMachineTypeNotSupported(String)

TooManyTags(String)

You've exceeded the number of tags allowed for a resource. See the Limits Topic in the AWS Step Functions Developer Guide.

Implementations

impl CreateStateMachineError[src]

Trait Implementations

impl Debug for CreateStateMachineError[src]

impl Display for CreateStateMachineError[src]

impl Error for CreateStateMachineError[src]

impl PartialEq<CreateStateMachineError> for CreateStateMachineError[src]

impl StructuralPartialEq for CreateStateMachineError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.