#[non_exhaustive]pub struct DisableStageTransitionInput { /* private fields */ }
Expand description
Represents the input of a DisableStageTransition
action.
Implementations
sourceimpl DisableStageTransitionInput
impl DisableStageTransitionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DisableStageTransition, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DisableStageTransition, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<DisableStageTransition
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DisableStageTransitionInput
.
sourceimpl DisableStageTransitionInput
impl DisableStageTransitionInput
sourcepub fn pipeline_name(&self) -> Option<&str>
pub fn pipeline_name(&self) -> Option<&str>
The name of the pipeline in which you want to disable 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 disable the inbound or outbound transition of artifacts.
sourcepub fn transition_type(&self) -> Option<&StageTransitionType>
pub fn transition_type(&self) -> Option<&StageTransitionType>
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
sourceimpl Clone for DisableStageTransitionInput
impl Clone for DisableStageTransitionInput
sourcefn clone(&self) -> DisableStageTransitionInput
fn clone(&self) -> DisableStageTransitionInput
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 DisableStageTransitionInput
impl Debug for DisableStageTransitionInput
sourceimpl PartialEq<DisableStageTransitionInput> for DisableStageTransitionInput
impl PartialEq<DisableStageTransitionInput> for DisableStageTransitionInput
sourcefn eq(&self, other: &DisableStageTransitionInput) -> bool
fn eq(&self, other: &DisableStageTransitionInput) -> bool
impl StructuralPartialEq for DisableStageTransitionInput
Auto Trait Implementations
impl RefUnwindSafe for DisableStageTransitionInput
impl Send for DisableStageTransitionInput
impl Sync for DisableStageTransitionInput
impl Unpin for DisableStageTransitionInput
impl UnwindSafe for DisableStageTransitionInput
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