Struct rusoto_stepfunctions::GetActivityTaskInput[][src]

pub struct GetActivityTaskInput {
    pub activity_arn: String,
    pub worker_name: Option<String>,
}

Fields

The Amazon Resource Name (ARN) of the activity to retrieve tasks from (assigned when you create the task using CreateActivity.)

You can provide an arbitrary name in order to identify the worker that the task is assigned to. This name is used when it is logged in the execution history.

Trait Implementations

impl Default for GetActivityTaskInput
[src]

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

impl Debug for GetActivityTaskInput
[src]

Formats the value using the given formatter. Read more

impl Clone for GetActivityTaskInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetActivityTaskInput
[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