pub struct EnableStageTransitionInput {
pub pipeline_name: String,
pub stage_name: String,
pub transition_type: String,
}
Expand description
Represents the input of an EnableStageTransition
action.
Fields§
§pipeline_name: String
The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
stage_name: String
The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).
transition_type: String
Specifies whether artifacts are allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already processed artifacts are allowed to transition to the next stage (outbound).
Trait Implementations§
Source§impl Clone for EnableStageTransitionInput
impl Clone for EnableStageTransitionInput
Source§fn clone(&self) -> EnableStageTransitionInput
fn clone(&self) -> EnableStageTransitionInput
Returns a duplicate 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 EnableStageTransitionInput
impl Debug for EnableStageTransitionInput
Source§impl Default for EnableStageTransitionInput
impl Default for EnableStageTransitionInput
Source§fn default() -> EnableStageTransitionInput
fn default() -> EnableStageTransitionInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for EnableStageTransitionInput
Auto Trait Implementations§
impl Freeze for EnableStageTransitionInput
impl RefUnwindSafe for EnableStageTransitionInput
impl Send for EnableStageTransitionInput
impl Sync for EnableStageTransitionInput
impl Unpin for EnableStageTransitionInput
impl UnwindSafe for EnableStageTransitionInput
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