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.AWS.CodePipeline.dll
Syntax (csharp)
public interface IStage
Syntax (vb)
Public Interface IStage

Synopsis

Properties

Actions

The actions belonging to this stage.

Pipeline
StageName

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

Methods

AddAction(IAction)
OnStateChange(String, IRuleTarget, IRuleProps)

Properties

Actions

The actions belonging to this stage.

IAction[] Actions { get; }
Property Value

IAction[]

Pipeline

IPipeline Pipeline { get; }
Property Value

IPipeline

StageName

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

string StageName { get; }
Property Value

System.String

Methods

AddAction(IAction)

void AddAction(IAction action)
Parameters
action IAction

OnStateChange(String, IRuleTarget, IRuleProps)

Rule OnStateChange(string name, IRuleTarget target = null, IRuleProps options = null)
Parameters
name System.String
target IRuleTarget
options IRuleProps
Returns

Rule

Back to top Generated by DocFX