Interface CfnPipeline.IStageDeclarationProperty
Represents information about a stage and its definition.
Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.AWS.CodePipeline.dll
Syntax (csharp)
public interface IStageDeclarationProperty
Syntax (vb)
Public Interface IStageDeclarationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.CodePipeline;
var configuration;
StageDeclarationProperty stageDeclarationProperty = new StageDeclarationProperty {
Actions = new [] { new ActionDeclarationProperty {
ActionTypeId = new ActionTypeIdProperty {
Category = "category",
Owner = "owner",
Provider = "provider",
Version = "version"
},
Name = "name",
// the properties below are optional
Configuration = configuration,
InputArtifacts = new [] { new InputArtifactProperty {
Name = "name"
} },
Namespace = "namespace",
OutputArtifacts = new [] { new OutputArtifactProperty {
Name = "name"
} },
Region = "region",
RoleArn = "roleArn",
RunOrder = 123
} },
Name = "name",
// the properties below are optional
Blockers = new [] { new BlockerDeclarationProperty {
Name = "name",
Type = "type"
} }
};
Synopsis
Properties
Actions | The actions included in a stage. |
Blockers | Reserved for future use. |
Name | The name of the stage. |
Properties
Actions
The actions included in a stage.
object Actions { get; }
Property Value
System.Object
Remarks
Blockers
Reserved for future use.
virtual object Blockers { get; }
Property Value
System.Object
Remarks
Name
The name of the stage.
string Name { get; }
Property Value
System.String