Struct rusoto_codepipeline::DisableStageTransitionInput
[−]
[src]
pub struct DisableStageTransitionInput { pub pipeline_name: PipelineName, pub reason: DisabledReason, pub stage_name: StageName, pub transition_type: StageTransitionType, }
Represents the input of a disable stage transition input action.
Fields
pipeline_name: PipelineName
The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
reason: DisabledReason
The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
stage_name: StageName
The name of the stage where you want to disable the inbound or outbound transition of artifacts.
transition_type: StageTransitionType
Specifies whether artifacts will be 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
impl Default for DisableStageTransitionInput
[src]
fn default() -> DisableStageTransitionInput
Returns the "default value" for a type. Read more
impl Debug for DisableStageTransitionInput
[src]
impl Clone for DisableStageTransitionInput
[src]
fn clone(&self) -> DisableStageTransitionInput
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more