#[non_exhaustive]pub struct CancelMlTaskRunOutputBuilder { /* private fields */ }Expand description
A builder for CancelMlTaskRunOutput.
Implementations§
source§impl CancelMlTaskRunOutputBuilder
impl CancelMlTaskRunOutputBuilder
sourcepub fn transform_id(self, input: impl Into<String>) -> Self
pub fn transform_id(self, input: impl Into<String>) -> Self
The unique identifier of the machine learning transform.
sourcepub fn set_transform_id(self, input: Option<String>) -> Self
pub fn set_transform_id(self, input: Option<String>) -> Self
The unique identifier of the machine learning transform.
sourcepub fn get_transform_id(&self) -> &Option<String>
pub fn get_transform_id(&self) -> &Option<String>
The unique identifier of the machine learning transform.
sourcepub fn task_run_id(self, input: impl Into<String>) -> Self
pub fn task_run_id(self, input: impl Into<String>) -> Self
The unique identifier for the task run.
sourcepub fn set_task_run_id(self, input: Option<String>) -> Self
pub fn set_task_run_id(self, input: Option<String>) -> Self
The unique identifier for the task run.
sourcepub fn get_task_run_id(&self) -> &Option<String>
pub fn get_task_run_id(&self) -> &Option<String>
The unique identifier for the task run.
sourcepub fn status(self, input: TaskStatusType) -> Self
pub fn status(self, input: TaskStatusType) -> Self
The status for this run.
sourcepub fn set_status(self, input: Option<TaskStatusType>) -> Self
pub fn set_status(self, input: Option<TaskStatusType>) -> Self
The status for this run.
sourcepub fn get_status(&self) -> &Option<TaskStatusType>
pub fn get_status(&self) -> &Option<TaskStatusType>
The status for this run.
sourcepub fn build(self) -> CancelMlTaskRunOutput
pub fn build(self) -> CancelMlTaskRunOutput
Consumes the builder and constructs a CancelMlTaskRunOutput.
Trait Implementations§
source§impl Clone for CancelMlTaskRunOutputBuilder
impl Clone for CancelMlTaskRunOutputBuilder
source§fn clone(&self) -> CancelMlTaskRunOutputBuilder
fn clone(&self) -> CancelMlTaskRunOutputBuilder
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 CancelMlTaskRunOutputBuilder
impl Debug for CancelMlTaskRunOutputBuilder
source§impl Default for CancelMlTaskRunOutputBuilder
impl Default for CancelMlTaskRunOutputBuilder
source§fn default() -> CancelMlTaskRunOutputBuilder
fn default() -> CancelMlTaskRunOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CancelMlTaskRunOutputBuilder> for CancelMlTaskRunOutputBuilder
impl PartialEq<CancelMlTaskRunOutputBuilder> for CancelMlTaskRunOutputBuilder
source§fn eq(&self, other: &CancelMlTaskRunOutputBuilder) -> bool
fn eq(&self, other: &CancelMlTaskRunOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CancelMlTaskRunOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CancelMlTaskRunOutputBuilder
impl Send for CancelMlTaskRunOutputBuilder
impl Sync for CancelMlTaskRunOutputBuilder
impl Unpin for CancelMlTaskRunOutputBuilder
impl UnwindSafe for CancelMlTaskRunOutputBuilder
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