Show / Hide Table of Contents

Interface IStageOptions

Inherited Members
IStageProps.StageName
IStageProps.Actions
IStageProps.TransitionDisabledReason
IStageProps.TransitionToEnabled
Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.AWS.CodePipeline.dll
Syntax (csharp)
public interface IStageOptions : IStageProps
Syntax (vb)
Public Interface IStageOptions
    Inherits IStageProps
Remarks

ExampleMetadata: infused

Examples
using Amazon.CDK.AWS.StepFunctions;


Pipeline pipeline = new Pipeline(this, "MyPipeline");
Artifact inputArtifact = new Artifact();
Pass startState = new Pass(this, "StartState");
StateMachine simpleStateMachine = new StateMachine(this, "SimpleStateMachine", new StateMachineProps {
    Definition = startState
});
StepFunctionInvokeAction stepFunctionAction = new StepFunctionInvokeAction(new StepFunctionsInvokeActionProps {
    ActionName = "Invoke",
    StateMachine = simpleStateMachine,
    StateMachineInput = StateMachineInput.FilePath(inputArtifact.AtPath("assets/input.json"))
});
pipeline.AddStage(new StageOptions {
    StageName = "StepFunctions",
    Actions = new [] { stepFunctionAction }
});

Synopsis

Properties

Placement

Properties

Placement

virtual IStagePlacement Placement { get; }
Property Value

IStagePlacement

Back to top Generated by DocFX