pub struct DisableStageTransitionInput {
pub pipeline_name: String,
pub reason: String,
pub stage_name: String,
pub transition_type: String,
}
Expand description
Represents the input of a DisableStageTransition
action.
Fields§
§pipeline_name: String
The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
reason: String
The reason given to the user that a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
stage_name: String
The name of the stage where you want to disable the inbound or outbound transition of artifacts.
transition_type: String
Specifies whether artifacts are prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
Trait Implementations§
Source§impl Clone for DisableStageTransitionInput
impl Clone for DisableStageTransitionInput
Source§fn clone(&self) -> DisableStageTransitionInput
fn clone(&self) -> DisableStageTransitionInput
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 DisableStageTransitionInput
impl Debug for DisableStageTransitionInput
Source§impl Default for DisableStageTransitionInput
impl Default for DisableStageTransitionInput
Source§fn default() -> DisableStageTransitionInput
fn default() -> DisableStageTransitionInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DisableStageTransitionInput
Auto Trait Implementations§
impl Freeze for DisableStageTransitionInput
impl RefUnwindSafe for DisableStageTransitionInput
impl Send for DisableStageTransitionInput
impl Sync for DisableStageTransitionInput
impl Unpin for DisableStageTransitionInput
impl UnwindSafe for DisableStageTransitionInput
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