interface IStage
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.CodePipeline.IStage |
Java | software.amazon.awscdk.services.codepipeline.IStage |
Python | aws_cdk.aws_codepipeline.IStage |
TypeScript (source) | @aws-cdk/aws-codepipeline » IStage |
Obtainable from
Pipeline
.addStage()
, Pipeline
.stage()
, Cdk
.stage()
The abstract interface of a Pipeline Stage that is used by Actions.
Properties
Name | Type | Description |
---|---|---|
actions | IAction [] | The actions belonging to this stage. |
pipeline | IPipeline | |
stage | string | The physical, human-readable name of this Pipeline Stage. |
actions
Type:
IAction
[]
The actions belonging to this stage.
pipeline
Type:
IPipeline
stageName
Type:
string
The physical, human-readable name of this Pipeline Stage.
Methods
Name | Description |
---|---|
add | |
on |
Action(action)
addpublic addAction(action: IAction): void
Parameters
- action
IAction
StateChange(name, target?, options?)
onpublic onStateChange(name: string, target?: IRuleTarget, options?: RuleProps): Rule
Parameters
- name
string
- target
IRule
Target - options
Rule
Props
Returns