Struct rusoto_stepfunctions::GetActivityTaskOutput[][src]

pub struct GetActivityTaskOutput {
    pub input: Option<String>,
    pub task_token: Option<String>,
}

Fields

The string that contains the JSON input data for the task.

A token that identifies the scheduled task. This token must be copied and included in subsequent calls to SendTaskHeartbeat, SendTaskSuccess or SendTaskFailure in order to report the progress or completion of the task.

Trait Implementations

impl Default for GetActivityTaskOutput
[src]

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

impl Debug for GetActivityTaskOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetActivityTaskOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetActivityTaskOutput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations