#[non_exhaustive]pub struct EnableStageTransitionInput { /* private fields */ }
Expand description
Represents the input of an EnableStageTransition
action.
Implementations
sourceimpl EnableStageTransitionInput
impl EnableStageTransitionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<EnableStageTransition, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<EnableStageTransition, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<EnableStageTransition
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EnableStageTransitionInput
.
sourceimpl EnableStageTransitionInput
impl EnableStageTransitionInput
sourcepub fn pipeline_name(&self) -> Option<&str>
pub fn pipeline_name(&self) -> Option<&str>
The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
sourcepub fn stage_name(&self) -> Option<&str>
pub fn stage_name(&self) -> Option<&str>
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).
sourcepub fn transition_type(&self) -> Option<&StageTransitionType>
pub fn transition_type(&self) -> Option<&StageTransitionType>
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
sourceimpl Clone for EnableStageTransitionInput
impl Clone for EnableStageTransitionInput
sourcefn clone(&self) -> EnableStageTransitionInput
fn clone(&self) -> EnableStageTransitionInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for EnableStageTransitionInput
impl Debug for EnableStageTransitionInput
sourceimpl PartialEq<EnableStageTransitionInput> for EnableStageTransitionInput
impl PartialEq<EnableStageTransitionInput> for EnableStageTransitionInput
sourcefn eq(&self, other: &EnableStageTransitionInput) -> bool
fn eq(&self, other: &EnableStageTransitionInput) -> bool
impl StructuralPartialEq for EnableStageTransitionInput
Auto Trait Implementations
impl RefUnwindSafe for EnableStageTransitionInput
impl Send for EnableStageTransitionInput
impl Sync for EnableStageTransitionInput
impl Unpin for EnableStageTransitionInput
impl UnwindSafe for EnableStageTransitionInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more