Struct aws_sdk_glue::types::TaskRun
source · #[non_exhaustive]pub struct TaskRun {
pub transform_id: Option<String>,
pub task_run_id: Option<String>,
pub status: Option<TaskStatusType>,
pub log_group_name: Option<String>,
pub properties: Option<TaskRunProperties>,
pub error_string: Option<String>,
pub started_on: Option<DateTime>,
pub last_modified_on: Option<DateTime>,
pub completed_on: Option<DateTime>,
pub execution_time: i32,
}Expand description
The sampling parameters that are associated with the machine learning transform.
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.transform_id: Option<String>The unique identifier for the transform.
task_run_id: Option<String>The unique identifier for this task run.
status: Option<TaskStatusType>The current status of the requested task run.
log_group_name: Option<String>The names of the log group for secure logging, associated with this task run.
properties: Option<TaskRunProperties>Specifies configuration properties associated with this task run.
error_string: Option<String>The list of error strings associated with this task run.
started_on: Option<DateTime>The date and time that this task run started.
last_modified_on: Option<DateTime>The last point in time that the requested task run was updated.
completed_on: Option<DateTime>The last point in time that the requested task run was completed.
execution_time: i32The amount of time (in seconds) that the task run consumed resources.
Implementations§
source§impl TaskRun
impl TaskRun
sourcepub fn transform_id(&self) -> Option<&str>
pub fn transform_id(&self) -> Option<&str>
The unique identifier for the transform.
sourcepub fn task_run_id(&self) -> Option<&str>
pub fn task_run_id(&self) -> Option<&str>
The unique identifier for this task run.
sourcepub fn status(&self) -> Option<&TaskStatusType>
pub fn status(&self) -> Option<&TaskStatusType>
The current status of the requested task run.
sourcepub fn log_group_name(&self) -> Option<&str>
pub fn log_group_name(&self) -> Option<&str>
The names of the log group for secure logging, associated with this task run.
sourcepub fn properties(&self) -> Option<&TaskRunProperties>
pub fn properties(&self) -> Option<&TaskRunProperties>
Specifies configuration properties associated with this task run.
sourcepub fn error_string(&self) -> Option<&str>
pub fn error_string(&self) -> Option<&str>
The list of error strings associated with this task run.
sourcepub fn started_on(&self) -> Option<&DateTime>
pub fn started_on(&self) -> Option<&DateTime>
The date and time that this task run started.
sourcepub fn last_modified_on(&self) -> Option<&DateTime>
pub fn last_modified_on(&self) -> Option<&DateTime>
The last point in time that the requested task run was updated.
sourcepub fn completed_on(&self) -> Option<&DateTime>
pub fn completed_on(&self) -> Option<&DateTime>
The last point in time that the requested task run was completed.
sourcepub fn execution_time(&self) -> i32
pub fn execution_time(&self) -> i32
The amount of time (in seconds) that the task run consumed resources.