Show / Hide Table of Contents

Interface IStage

The abstract interface of a Pipeline Stage that is used by Actions.

Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IStage
Syntax (vb)
Public Interface IStage

Synopsis

Properties

Actions

The actions belonging to this stage.

Pipeline

The abstract interface of a Pipeline Stage that is used by Actions.

StageName

The physical, human-readable name of this Pipeline Stage.

Methods

AddAction(IAction)

The abstract interface of a Pipeline Stage that is used by Actions.

OnStateChange(string, IRuleTarget?, IRuleProps?)

The abstract interface of a Pipeline Stage that is used by Actions.

Properties

Actions

The actions belonging to this stage.

IAction[] Actions { get; }
Property Value

IAction[]

Pipeline

The abstract interface of a Pipeline Stage that is used by Actions.

IPipeline Pipeline { get; }
Property Value

IPipeline

StageName

The physical, human-readable name of this Pipeline Stage.

string StageName { get; }
Property Value

string

Methods

AddAction(IAction)

The abstract interface of a Pipeline Stage that is used by Actions.

void AddAction(IAction action)
Parameters
action IAction

OnStateChange(string, IRuleTarget?, IRuleProps?)

The abstract interface of a Pipeline Stage that is used by Actions.

Rule OnStateChange(string name, IRuleTarget? target = null, IRuleProps? options = null)
Parameters
name string
target IRuleTarget
options IRuleProps
Returns

Rule

Back to top Generated by DocFX