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
Pipeline
The abstract interface of a Pipeline Stage that is used by Actions.
IPipeline Pipeline { get; }
Property Value
StageName
The physical, human-readable name of this Pipeline Stage.
string StageName { get; }
Property Value
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