Struct rusoto_stepfunctions::SendTaskFailureInput [] [src]

pub struct SendTaskFailureInput {
    pub cause: Option<String>,
    pub error: Option<String>,
    pub task_token: String,
}

Fields

A more detailed explanation of the cause of the failure.

An arbitrary error code that identifies the cause of the failure.

The token that represents this task. Task tokens are generated by the service when the tasks are assigned to a worker (see GetActivityTask::taskToken).

Trait Implementations

impl Default for SendTaskFailureInput
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for SendTaskFailureInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SendTaskFailureInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations