Struct aws_sdk_datapipeline::model::TaskObject
source · [−]#[non_exhaustive]pub struct TaskObject { /* private fields */ }
Expand description
Contains information about a pipeline task that is assigned to a task runner.
Implementations
sourceimpl TaskObject
impl TaskObject
sourcepub fn task_id(&self) -> Option<&str>
pub fn task_id(&self) -> Option<&str>
An internal identifier for the task. This ID is passed to the SetTaskStatus
and ReportTaskProgress
actions.
sourcepub fn pipeline_id(&self) -> Option<&str>
pub fn pipeline_id(&self) -> Option<&str>
The ID of the pipeline that provided the task.
sourcepub fn attempt_id(&self) -> Option<&str>
pub fn attempt_id(&self) -> Option<&str>
The ID of the pipeline task attempt object. AWS Data Pipeline uses this value to track how many times a task is attempted.
sourceimpl TaskObject
impl TaskObject
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TaskObject
.
Trait Implementations
sourceimpl Clone for TaskObject
impl Clone for TaskObject
sourcefn clone(&self) -> TaskObject
fn clone(&self) -> TaskObject
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for TaskObject
impl Debug for TaskObject
sourceimpl PartialEq<TaskObject> for TaskObject
impl PartialEq<TaskObject> for TaskObject
sourcefn eq(&self, other: &TaskObject) -> bool
fn eq(&self, other: &TaskObject) -> bool
impl StructuralPartialEq for TaskObject
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more