#[non_exhaustive]pub struct EnableStageTransitionInput {
pub pipeline_name: Option<String>,
pub stage_name: Option<String>,
pub transition_type: Option<StageTransitionType>,
}
Expand description
Represents the input of an EnableStageTransition
action.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipeline_name: Option<String>
The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
stage_name: Option<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: 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).
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<EnableStageTransition, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<EnableStageTransition, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<EnableStageTransition
>
Creates a new builder-style object to manufacture EnableStageTransitionInput
The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.
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).
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more