#[non_exhaustive]pub struct GetMlTaskRunOutputBuilder { /* private fields */ }Expand description
A builder for GetMlTaskRunOutput.
Implementations§
source§impl GetMlTaskRunOutputBuilder
impl GetMlTaskRunOutputBuilder
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 task run.
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 task run.
sourcepub fn get_transform_id(&self) -> &Option<String>
pub fn get_transform_id(&self) -> &Option<String>
The unique identifier of the task run.
sourcepub fn task_run_id(self, input: impl Into<String>) -> Self
pub fn task_run_id(self, input: impl Into<String>) -> Self
The unique run identifier associated with this 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 run identifier associated with this run.
sourcepub fn get_task_run_id(&self) -> &Option<String>
pub fn get_task_run_id(&self) -> &Option<String>
The unique run identifier associated with this run.
sourcepub fn status(self, input: TaskStatusType) -> Self
pub fn status(self, input: TaskStatusType) -> Self
The status for this task run.
sourcepub fn set_status(self, input: Option<TaskStatusType>) -> Self
pub fn set_status(self, input: Option<TaskStatusType>) -> Self
The status for this task run.
sourcepub fn get_status(&self) -> &Option<TaskStatusType>
pub fn get_status(&self) -> &Option<TaskStatusType>
The status for this task run.
sourcepub fn log_group_name(self, input: impl Into<String>) -> Self
pub fn log_group_name(self, input: impl Into<String>) -> Self
The names of the log groups that are associated with the task run.
sourcepub fn set_log_group_name(self, input: Option<String>) -> Self
pub fn set_log_group_name(self, input: Option<String>) -> Self
The names of the log groups that are associated with the task run.
sourcepub fn get_log_group_name(&self) -> &Option<String>
pub fn get_log_group_name(&self) -> &Option<String>
The names of the log groups that are associated with the task run.
sourcepub fn properties(self, input: TaskRunProperties) -> Self
pub fn properties(self, input: TaskRunProperties) -> Self
The list of properties that are associated with the task run.
sourcepub fn set_properties(self, input: Option<TaskRunProperties>) -> Self
pub fn set_properties(self, input: Option<TaskRunProperties>) -> Self
The list of properties that are associated with the task run.
sourcepub fn get_properties(&self) -> &Option<TaskRunProperties>
pub fn get_properties(&self) -> &Option<TaskRunProperties>
The list of properties that are associated with the task run.
sourcepub fn error_string(self, input: impl Into<String>) -> Self
pub fn error_string(self, input: impl Into<String>) -> Self
The error strings that are associated with the task run.
sourcepub fn set_error_string(self, input: Option<String>) -> Self
pub fn set_error_string(self, input: Option<String>) -> Self
The error strings that are associated with the task run.
sourcepub fn get_error_string(&self) -> &Option<String>
pub fn get_error_string(&self) -> &Option<String>
The error strings that are associated with the task run.
sourcepub fn started_on(self, input: DateTime) -> Self
pub fn started_on(self, input: DateTime) -> Self
The date and time when this task run started.
sourcepub fn set_started_on(self, input: Option<DateTime>) -> Self
pub fn set_started_on(self, input: Option<DateTime>) -> Self
The date and time when this task run started.
sourcepub fn get_started_on(&self) -> &Option<DateTime>
pub fn get_started_on(&self) -> &Option<DateTime>
The date and time when this task run started.
sourcepub fn last_modified_on(self, input: DateTime) -> Self
pub fn last_modified_on(self, input: DateTime) -> Self
The date and time when this task run was last modified.
sourcepub fn set_last_modified_on(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_on(self, input: Option<DateTime>) -> Self
The date and time when this task run was last modified.
sourcepub fn get_last_modified_on(&self) -> &Option<DateTime>
pub fn get_last_modified_on(&self) -> &Option<DateTime>
The date and time when this task run was last modified.
sourcepub fn completed_on(self, input: DateTime) -> Self
pub fn completed_on(self, input: DateTime) -> Self
The date and time when this task run was completed.
sourcepub fn set_completed_on(self, input: Option<DateTime>) -> Self
pub fn set_completed_on(self, input: Option<DateTime>) -> Self
The date and time when this task run was completed.
sourcepub fn get_completed_on(&self) -> &Option<DateTime>
pub fn get_completed_on(&self) -> &Option<DateTime>
The date and time when this task run was completed.
sourcepub fn execution_time(self, input: i32) -> Self
pub fn execution_time(self, input: i32) -> Self
The amount of time (in seconds) that the task run consumed resources.
sourcepub fn set_execution_time(self, input: Option<i32>) -> Self
pub fn set_execution_time(self, input: Option<i32>) -> Self
The amount of time (in seconds) that the task run consumed resources.
sourcepub fn get_execution_time(&self) -> &Option<i32>
pub fn get_execution_time(&self) -> &Option<i32>
The amount of time (in seconds) that the task run consumed resources.
sourcepub fn build(self) -> GetMlTaskRunOutput
pub fn build(self) -> GetMlTaskRunOutput
Consumes the builder and constructs a GetMlTaskRunOutput.
Trait Implementations§
source§impl Clone for GetMlTaskRunOutputBuilder
impl Clone for GetMlTaskRunOutputBuilder
source§fn clone(&self) -> GetMlTaskRunOutputBuilder
fn clone(&self) -> GetMlTaskRunOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetMlTaskRunOutputBuilder
impl Debug for GetMlTaskRunOutputBuilder
source§impl Default for GetMlTaskRunOutputBuilder
impl Default for GetMlTaskRunOutputBuilder
source§fn default() -> GetMlTaskRunOutputBuilder
fn default() -> GetMlTaskRunOutputBuilder
source§impl PartialEq for GetMlTaskRunOutputBuilder
impl PartialEq for GetMlTaskRunOutputBuilder
source§fn eq(&self, other: &GetMlTaskRunOutputBuilder) -> bool
fn eq(&self, other: &GetMlTaskRunOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.