pub struct RetryStageExecutionInput {
pub pipeline_execution_id: String,
pub pipeline_name: String,
pub retry_mode: String,
pub stage_name: String,
}
Expand description
Represents the input of a RetryStageExecution
action.
Fields§
§pipeline_execution_id: String
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
pipeline_name: String
The name of the pipeline that contains the failed stage.
retry_mode: String
The scope of the retry attempt. Currently, the only supported value is FAILED_ACTIONS.
stage_name: String
The name of the failed stage to be retried.
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 Default for RetryStageExecutionInput
impl Default for RetryStageExecutionInput
Source§fn default() -> RetryStageExecutionInput
fn default() -> RetryStageExecutionInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for RetryStageExecutionInput
impl PartialEq for RetryStageExecutionInput
Source§impl Serialize for RetryStageExecutionInput
impl Serialize for RetryStageExecutionInput
impl StructuralPartialEq for RetryStageExecutionInput
Auto Trait Implementations§
impl Freeze for RetryStageExecutionInput
impl RefUnwindSafe for RetryStageExecutionInput
impl Send for RetryStageExecutionInput
impl Sync for RetryStageExecutionInput
impl Unpin for RetryStageExecutionInput
impl UnwindSafe for RetryStageExecutionInput
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
Mutably borrows from an owned value. Read more