Show / Hide Table of Contents

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages.html

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages.html#cfn-codepipeline-pipeline-stages-actions

Blockers

Reserved for future use.

virtual object Blockers { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages.html#cfn-codepipeline-pipeline-stages-blockers

Name

The name of the stage.

string Name { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codepipeline-pipeline-stages.html#cfn-codepipeline-pipeline-stages-name

Back to top Generated by DocFX