#[non_exhaustive]pub struct DisableStageTransitionInput { /* private fields */ }
Expand description
Represents the input of a DisableStageTransition
action.
Implementations§
source§impl 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
.
source§impl 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§
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 PartialEq<DisableStageTransitionInput> for DisableStageTransitionInput
impl PartialEq<DisableStageTransitionInput> for DisableStageTransitionInput
source§fn eq(&self, other: &DisableStageTransitionInput) -> bool
fn eq(&self, other: &DisableStageTransitionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.