Struct rusoto_datapipeline::TaskObject[][src]

pub struct TaskObject {
    pub attempt_id: Option<String>,
    pub objects: Option<HashMap<String, PipelineObject>>,
    pub pipeline_id: Option<String>,
    pub task_id: Option<String>,
}

Contains information about a pipeline task that is assigned to a task runner.

Fields

The ID of the pipeline task attempt object. AWS Data Pipeline uses this value to track how many times a task is attempted.

Connection information for the location where the task runner will publish the output of the task.

The ID of the pipeline that provided the task.

An internal identifier for the task. This ID is passed to the SetTaskStatus and ReportTaskProgress actions.

Trait Implementations

impl Default for TaskObject
[src]

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

impl Debug for TaskObject
[src]

Formats the value using the given formatter. Read more

impl Clone for TaskObject
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for TaskObject

impl Sync for TaskObject