#[non_exhaustive]pub struct StepExecutionStatusDetailBuilder { /* private fields */ }Expand description
A builder for StepExecutionStatusDetail.
Implementations§
source§impl StepExecutionStatusDetailBuilder
impl StepExecutionStatusDetailBuilder
sourcepub fn state(self, input: StepExecutionState) -> Self
pub fn state(self, input: StepExecutionState) -> Self
The state of the step.
sourcepub fn set_state(self, input: Option<StepExecutionState>) -> Self
pub fn set_state(self, input: Option<StepExecutionState>) -> Self
The state of the step.
sourcepub fn creation_date_time(self, input: DateTime) -> Self
pub fn creation_date_time(self, input: DateTime) -> Self
The creation date and time of the step.
sourcepub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
The creation date and time of the step.
sourcepub fn start_date_time(self, input: DateTime) -> Self
pub fn start_date_time(self, input: DateTime) -> Self
The start date and time of the step.
sourcepub fn set_start_date_time(self, input: Option<DateTime>) -> Self
pub fn set_start_date_time(self, input: Option<DateTime>) -> Self
The start date and time of the step.
sourcepub fn end_date_time(self, input: DateTime) -> Self
pub fn end_date_time(self, input: DateTime) -> Self
The completion date and time of the step.
sourcepub fn set_end_date_time(self, input: Option<DateTime>) -> Self
pub fn set_end_date_time(self, input: Option<DateTime>) -> Self
The completion date and time of the step.
sourcepub fn last_state_change_reason(self, input: impl Into<String>) -> Self
pub fn last_state_change_reason(self, input: impl Into<String>) -> Self
A description of the step's current state.
sourcepub fn set_last_state_change_reason(self, input: Option<String>) -> Self
pub fn set_last_state_change_reason(self, input: Option<String>) -> Self
A description of the step's current state.
sourcepub fn build(self) -> StepExecutionStatusDetail
pub fn build(self) -> StepExecutionStatusDetail
Consumes the builder and constructs a StepExecutionStatusDetail.
Trait Implementations§
source§impl Clone for StepExecutionStatusDetailBuilder
impl Clone for StepExecutionStatusDetailBuilder
source§fn clone(&self) -> StepExecutionStatusDetailBuilder
fn clone(&self) -> StepExecutionStatusDetailBuilder
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 Default for StepExecutionStatusDetailBuilder
impl Default for StepExecutionStatusDetailBuilder
source§fn default() -> StepExecutionStatusDetailBuilder
fn default() -> StepExecutionStatusDetailBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<StepExecutionStatusDetailBuilder> for StepExecutionStatusDetailBuilder
impl PartialEq<StepExecutionStatusDetailBuilder> for StepExecutionStatusDetailBuilder
source§fn eq(&self, other: &StepExecutionStatusDetailBuilder) -> bool
fn eq(&self, other: &StepExecutionStatusDetailBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.