#[non_exhaustive]pub struct RetryStageExecutionInput { /* private fields */ }
Expand description
Represents the input of a RetryStageExecution
action.
Implementations§
source§impl RetryStageExecutionInput
impl RetryStageExecutionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RetryStageExecution, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RetryStageExecution, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RetryStageExecution
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RetryStageExecutionInput
.
source§impl RetryStageExecutionInput
impl RetryStageExecutionInput
sourcepub fn pipeline_name(&self) -> Option<&str>
pub fn pipeline_name(&self) -> Option<&str>
The name of the pipeline that contains the failed stage.
sourcepub fn stage_name(&self) -> Option<&str>
pub fn stage_name(&self) -> Option<&str>
The name of the failed stage to be retried.
sourcepub fn pipeline_execution_id(&self) -> Option<&str>
pub fn pipeline_execution_id(&self) -> Option<&str>
The ID of the pipeline execution in the failed stage to be retried. Use the GetPipelineState
action to retrieve the current pipelineExecutionId of the failed stage
sourcepub fn retry_mode(&self) -> Option<&StageRetryMode>
pub fn retry_mode(&self) -> Option<&StageRetryMode>
The scope of the retry attempt. Currently, the only supported value is FAILED_ACTIONS.
Trait Implementations§
source§impl Clone for RetryStageExecutionInput
impl Clone for RetryStageExecutionInput
source§fn clone(&self) -> RetryStageExecutionInput
fn clone(&self) -> RetryStageExecutionInput
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 Debug for RetryStageExecutionInput
impl Debug for RetryStageExecutionInput
source§impl PartialEq<RetryStageExecutionInput> for RetryStageExecutionInput
impl PartialEq<RetryStageExecutionInput> for RetryStageExecutionInput
source§fn eq(&self, other: &RetryStageExecutionInput) -> bool
fn eq(&self, other: &RetryStageExecutionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.