#[non_exhaustive]pub struct ActionExecutionDetailBuilder { /* private fields */ }
Expand description
A builder for ActionExecutionDetail
.
Implementations§
source§impl ActionExecutionDetailBuilder
impl ActionExecutionDetailBuilder
sourcepub fn pipeline_execution_id(self, input: impl Into<String>) -> Self
pub fn pipeline_execution_id(self, input: impl Into<String>) -> Self
The pipeline execution ID for the action execution.
sourcepub fn set_pipeline_execution_id(self, input: Option<String>) -> Self
pub fn set_pipeline_execution_id(self, input: Option<String>) -> Self
The pipeline execution ID for the action execution.
sourcepub fn get_pipeline_execution_id(&self) -> &Option<String>
pub fn get_pipeline_execution_id(&self) -> &Option<String>
The pipeline execution ID for the action execution.
sourcepub fn action_execution_id(self, input: impl Into<String>) -> Self
pub fn action_execution_id(self, input: impl Into<String>) -> Self
The action execution ID.
sourcepub fn set_action_execution_id(self, input: Option<String>) -> Self
pub fn set_action_execution_id(self, input: Option<String>) -> Self
The action execution ID.
sourcepub fn get_action_execution_id(&self) -> &Option<String>
pub fn get_action_execution_id(&self) -> &Option<String>
The action execution ID.
sourcepub fn pipeline_version(self, input: i32) -> Self
pub fn pipeline_version(self, input: i32) -> Self
The version of the pipeline where the action was run.
sourcepub fn set_pipeline_version(self, input: Option<i32>) -> Self
pub fn set_pipeline_version(self, input: Option<i32>) -> Self
The version of the pipeline where the action was run.
sourcepub fn get_pipeline_version(&self) -> &Option<i32>
pub fn get_pipeline_version(&self) -> &Option<i32>
The version of the pipeline where the action was run.
sourcepub fn stage_name(self, input: impl Into<String>) -> Self
pub fn stage_name(self, input: impl Into<String>) -> Self
The name of the stage that contains the action.
sourcepub fn set_stage_name(self, input: Option<String>) -> Self
pub fn set_stage_name(self, input: Option<String>) -> Self
The name of the stage that contains the action.
sourcepub fn get_stage_name(&self) -> &Option<String>
pub fn get_stage_name(&self) -> &Option<String>
The name of the stage that contains the action.
sourcepub fn action_name(self, input: impl Into<String>) -> Self
pub fn action_name(self, input: impl Into<String>) -> Self
The name of the action.
sourcepub fn set_action_name(self, input: Option<String>) -> Self
pub fn set_action_name(self, input: Option<String>) -> Self
The name of the action.
sourcepub fn get_action_name(&self) -> &Option<String>
pub fn get_action_name(&self) -> &Option<String>
The name of the action.
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The start time of the action execution.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The start time of the action execution.
sourcepub fn get_start_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
The start time of the action execution.
sourcepub fn last_update_time(self, input: DateTime) -> Self
pub fn last_update_time(self, input: DateTime) -> Self
The last update time of the action execution.
sourcepub fn set_last_update_time(self, input: Option<DateTime>) -> Self
pub fn set_last_update_time(self, input: Option<DateTime>) -> Self
The last update time of the action execution.
sourcepub fn get_last_update_time(&self) -> &Option<DateTime>
pub fn get_last_update_time(&self) -> &Option<DateTime>
The last update time of the action execution.
sourcepub fn updated_by(self, input: impl Into<String>) -> Self
pub fn updated_by(self, input: impl Into<String>) -> Self
The ARN of the user who changed the pipeline execution details.
sourcepub fn set_updated_by(self, input: Option<String>) -> Self
pub fn set_updated_by(self, input: Option<String>) -> Self
The ARN of the user who changed the pipeline execution details.
sourcepub fn get_updated_by(&self) -> &Option<String>
pub fn get_updated_by(&self) -> &Option<String>
The ARN of the user who changed the pipeline execution details.
sourcepub fn status(self, input: ActionExecutionStatus) -> Self
pub fn status(self, input: ActionExecutionStatus) -> Self
The status of the action execution. Status categories are InProgress
, Succeeded
, and Failed
.
sourcepub fn set_status(self, input: Option<ActionExecutionStatus>) -> Self
pub fn set_status(self, input: Option<ActionExecutionStatus>) -> Self
The status of the action execution. Status categories are InProgress
, Succeeded
, and Failed
.
sourcepub fn get_status(&self) -> &Option<ActionExecutionStatus>
pub fn get_status(&self) -> &Option<ActionExecutionStatus>
The status of the action execution. Status categories are InProgress
, Succeeded
, and Failed
.
sourcepub fn input(self, input: ActionExecutionInput) -> Self
pub fn input(self, input: ActionExecutionInput) -> Self
Input details for the action execution, such as role ARN, Region, and input artifacts.
sourcepub fn set_input(self, input: Option<ActionExecutionInput>) -> Self
pub fn set_input(self, input: Option<ActionExecutionInput>) -> Self
Input details for the action execution, such as role ARN, Region, and input artifacts.
sourcepub fn get_input(&self) -> &Option<ActionExecutionInput>
pub fn get_input(&self) -> &Option<ActionExecutionInput>
Input details for the action execution, such as role ARN, Region, and input artifacts.
sourcepub fn output(self, input: ActionExecutionOutput) -> Self
pub fn output(self, input: ActionExecutionOutput) -> Self
Output details for the action execution, such as the action execution result.
sourcepub fn set_output(self, input: Option<ActionExecutionOutput>) -> Self
pub fn set_output(self, input: Option<ActionExecutionOutput>) -> Self
Output details for the action execution, such as the action execution result.
sourcepub fn get_output(&self) -> &Option<ActionExecutionOutput>
pub fn get_output(&self) -> &Option<ActionExecutionOutput>
Output details for the action execution, such as the action execution result.
sourcepub fn build(self) -> ActionExecutionDetail
pub fn build(self) -> ActionExecutionDetail
Consumes the builder and constructs a ActionExecutionDetail
.
Trait Implementations§
source§impl Clone for ActionExecutionDetailBuilder
impl Clone for ActionExecutionDetailBuilder
source§fn clone(&self) -> ActionExecutionDetailBuilder
fn clone(&self) -> ActionExecutionDetailBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ActionExecutionDetailBuilder
impl Debug for ActionExecutionDetailBuilder
source§impl Default for ActionExecutionDetailBuilder
impl Default for ActionExecutionDetailBuilder
source§fn default() -> ActionExecutionDetailBuilder
fn default() -> ActionExecutionDetailBuilder
source§impl PartialEq for ActionExecutionDetailBuilder
impl PartialEq for ActionExecutionDetailBuilder
source§fn eq(&self, other: &ActionExecutionDetailBuilder) -> bool
fn eq(&self, other: &ActionExecutionDetailBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ActionExecutionDetailBuilder
Auto Trait Implementations§
impl Freeze for ActionExecutionDetailBuilder
impl RefUnwindSafe for ActionExecutionDetailBuilder
impl Send for ActionExecutionDetailBuilder
impl Sync for ActionExecutionDetailBuilder
impl Unpin for ActionExecutionDetailBuilder
impl UnwindSafe for ActionExecutionDetailBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more