Struct rusoto_codepipeline::DisableStageTransitionInput[][src]

pub struct DisableStageTransitionInput {
    pub pipeline_name: String,
    pub reason: String,
    pub stage_name: String,
    pub transition_type: String,
}

Represents the input of a DisableStageTransition action.

Fields

The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.

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.

The name of the stage where you want to disable the inbound or outbound transition of artifacts.

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]

Returns the "default value" for a type. Read more

impl Debug for DisableStageTransitionInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DisableStageTransitionInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DisableStageTransitionInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations