Struct aws_sdk_deadline::operation::get_step::GetStepOutput
source · #[non_exhaustive]pub struct GetStepOutput {Show 17 fields
pub step_id: String,
pub name: String,
pub lifecycle_status: StepLifecycleStatus,
pub lifecycle_status_message: Option<String>,
pub task_run_status: TaskRunStatus,
pub task_run_status_counts: HashMap<TaskRunStatus, i32>,
pub target_task_run_status: Option<StepTargetTaskRunStatus>,
pub created_at: DateTime,
pub created_by: String,
pub updated_at: Option<DateTime>,
pub updated_by: Option<String>,
pub started_at: Option<DateTime>,
pub ended_at: Option<DateTime>,
pub dependency_counts: Option<DependencyCounts>,
pub required_capabilities: Option<StepRequiredCapabilities>,
pub parameter_space: Option<ParameterSpace>,
pub description: Option<String>,
/* private fields */
}
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.step_id: String
The step ID.
name: String
The name of the step.
lifecycle_status: StepLifecycleStatus
The life cycle status of the step.
lifecycle_status_message: Option<String>
A message that describes the lifecycle status of the step.
task_run_status: TaskRunStatus
The task run status for the job.
task_run_status_counts: HashMap<TaskRunStatus, i32>
The number of tasks running on the job.
target_task_run_status: Option<StepTargetTaskRunStatus>
The task status with which the job started.
created_at: DateTime
The date and time the resource was created.
created_by: String
The user or system that created this resource.
updated_at: Option<DateTime>
The date and time the resource was updated.
updated_by: Option<String>
The user or system that updated this resource.
started_at: Option<DateTime>
The date and time the resource started running.
ended_at: Option<DateTime>
The date and time the resource ended running.
dependency_counts: Option<DependencyCounts>
The number of dependencies in the step.
required_capabilities: Option<StepRequiredCapabilities>
The required capabilities of the step.
parameter_space: Option<ParameterSpace>
A list of step parameters and the combination expression for the step.
description: Option<String>
The description of the step.
Implementations§
source§impl GetStepOutput
impl GetStepOutput
sourcepub fn lifecycle_status(&self) -> &StepLifecycleStatus
pub fn lifecycle_status(&self) -> &StepLifecycleStatus
The life cycle status of the step.
sourcepub fn lifecycle_status_message(&self) -> Option<&str>
pub fn lifecycle_status_message(&self) -> Option<&str>
A message that describes the lifecycle status of the step.
sourcepub fn task_run_status(&self) -> &TaskRunStatus
pub fn task_run_status(&self) -> &TaskRunStatus
The task run status for the job.
sourcepub fn task_run_status_counts(&self) -> &HashMap<TaskRunStatus, i32>
pub fn task_run_status_counts(&self) -> &HashMap<TaskRunStatus, i32>
The number of tasks running on the job.
sourcepub fn target_task_run_status(&self) -> Option<&StepTargetTaskRunStatus>
pub fn target_task_run_status(&self) -> Option<&StepTargetTaskRunStatus>
The task status with which the job started.
sourcepub fn created_at(&self) -> &DateTime
pub fn created_at(&self) -> &DateTime
The date and time the resource was created.
sourcepub fn created_by(&self) -> &str
pub fn created_by(&self) -> &str
The user or system that created this resource.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The date and time the resource was updated.
sourcepub fn updated_by(&self) -> Option<&str>
pub fn updated_by(&self) -> Option<&str>
The user or system that updated this resource.
sourcepub fn started_at(&self) -> Option<&DateTime>
pub fn started_at(&self) -> Option<&DateTime>
The date and time the resource started running.
sourcepub fn dependency_counts(&self) -> Option<&DependencyCounts>
pub fn dependency_counts(&self) -> Option<&DependencyCounts>
The number of dependencies in the step.
sourcepub fn required_capabilities(&self) -> Option<&StepRequiredCapabilities>
pub fn required_capabilities(&self) -> Option<&StepRequiredCapabilities>
The required capabilities of the step.
sourcepub fn parameter_space(&self) -> Option<&ParameterSpace>
pub fn parameter_space(&self) -> Option<&ParameterSpace>
A list of step parameters and the combination expression for the step.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the step.
source§impl GetStepOutput
impl GetStepOutput
sourcepub fn builder() -> GetStepOutputBuilder
pub fn builder() -> GetStepOutputBuilder
Creates a new builder-style object to manufacture GetStepOutput
.
Trait Implementations§
source§impl Clone for GetStepOutput
impl Clone for GetStepOutput
source§fn clone(&self) -> GetStepOutput
fn clone(&self) -> GetStepOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetStepOutput
impl Debug for GetStepOutput
source§impl PartialEq for GetStepOutput
impl PartialEq for GetStepOutput
source§fn eq(&self, other: &GetStepOutput) -> bool
fn eq(&self, other: &GetStepOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetStepOutput
impl RequestId for GetStepOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.