@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:05.552Z") @Stability(value=Experimental) public interface StageOptions extends software.amazon.jsii.JsiiSerializable, StageProps
// Example automatically generated from non-compiling source. May contain errors.
ServerDeploymentGroup deploymentGroup;
Pipeline pipeline = Pipeline.Builder.create(this, "MyPipeline")
.pipelineName("MyPipeline")
.build();
// add the source and build Stages to the Pipeline...
Artifact buildOutput = new Artifact();
CodeDeployServerDeployAction deployAction = CodeDeployServerDeployAction.Builder.create()
.actionName("CodeDeploy")
.input(buildOutput)
.deploymentGroup(deploymentGroup)
.build();
pipeline.addStage(StageOptions.builder()
.stageName("Deploy")
.actions(List.of(deployAction))
.build());
| Modifier and Type | Interface and Description |
|---|---|
static class |
StageOptions.Builder
A builder for
StageOptions |
static class |
StageOptions.Jsii$Proxy
An implementation for
StageOptions |
| Modifier and Type | Method and Description |
|---|---|
static StageOptions.Builder |
builder() |
default StagePlacement |
getPlacement() |
getActions, getStageName@Stability(value=Experimental) @Nullable default StagePlacement getPlacement()
@Stability(value=Experimental) static StageOptions.Builder builder()
builder in interface StagePropsStageOptions.Builder of StageOptionsCopyright © 2021. All rights reserved.