Struct aws_sdk_datapipeline::model::TaskObject [−][src]
#[non_exhaustive]pub struct TaskObject {
pub task_id: Option<String>,
pub pipeline_id: Option<String>,
pub attempt_id: Option<String>,
pub objects: Option<HashMap<String, PipelineObject>>,
}
Expand description
Contains information about a pipeline task that is assigned to a task runner.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.task_id: Option<String>
An internal identifier for the task. This ID is passed to the SetTaskStatus and ReportTaskProgress actions.
pipeline_id: Option<String>
The ID of the pipeline that provided the task.
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.
Implementations
An internal identifier for the task. This ID is passed to the SetTaskStatus and ReportTaskProgress actions.
The ID of the pipeline that provided the task.
The ID of the pipeline task attempt object. AWS Data Pipeline uses this value to track how many times a task is attempted.
Creates a new builder-style object to manufacture TaskObject
Trait Implementations
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 RefUnwindSafe for TaskObject
impl Send for TaskObject
impl Sync for TaskObject
impl Unpin for TaskObject
impl UnwindSafe for TaskObject
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more