Struct aws_sdk_datapipeline::types::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§
source§impl 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.
source§impl TaskObject
impl TaskObject
sourcepub fn builder() -> TaskObjectBuilder
pub fn builder() -> TaskObjectBuilder
Creates a new builder-style object to manufacture TaskObject
.
Trait Implementations§
source§impl Clone for TaskObject
impl Clone for TaskObject
source§fn clone(&self) -> TaskObject
fn clone(&self) -> TaskObject
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TaskObject
impl Debug for TaskObject
source§impl PartialEq<TaskObject> for TaskObject
impl PartialEq<TaskObject> for TaskObject
source§fn eq(&self, other: &TaskObject) -> bool
fn eq(&self, other: &TaskObject) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more