[][src]Struct rusoto_datapipeline::TaskObject

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

attempt_id: Option<String>

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

objects: Option<HashMap<String, PipelineObject>>

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

pipeline_id: Option<String>

The ID of the pipeline that provided the task.

task_id: Option<String>

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

Trait Implementations

impl Clone for TaskObject[src]

impl Debug for TaskObject[src]

impl Default for TaskObject[src]

impl<'de> Deserialize<'de> for TaskObject[src]

impl PartialEq<TaskObject> for TaskObject[src]

impl StructuralPartialEq for TaskObject[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.