@Stability(value=Stable)
public static interface CfnPipeline.StageDeclarationProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.codepipeline.*;
Object configuration;
StageDeclarationProperty stageDeclarationProperty = StageDeclarationProperty.builder()
.actions(List.of(ActionDeclarationProperty.builder()
.actionTypeId(ActionTypeIdProperty.builder()
.category("category")
.owner("owner")
.provider("provider")
.version("version")
.build())
.name("name")
// the properties below are optional
.configuration(configuration)
.inputArtifacts(List.of(InputArtifactProperty.builder()
.name("name")
.build()))
.namespace("namespace")
.outputArtifacts(List.of(OutputArtifactProperty.builder()
.name("name")
.build()))
.region("region")
.roleArn("roleArn")
.runOrder(123)
.build()))
.name("name")
// the properties below are optional
.blockers(List.of(BlockerDeclarationProperty.builder()
.name("name")
.type("type")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPipeline.StageDeclarationProperty.Builder
A builder for
CfnPipeline.StageDeclarationProperty |
static class |
CfnPipeline.StageDeclarationProperty.Jsii$Proxy
An implementation for
CfnPipeline.StageDeclarationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPipeline.StageDeclarationProperty.Builder |
builder() |
Object |
getActions()
The actions included in a stage.
|
default Object |
getBlockers()
Reserved for future use.
|
String |
getName()
The name of the stage.
|
@Stability(value=Stable) @NotNull Object getActions()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default Object getBlockers()
@Stability(value=Stable) static CfnPipeline.StageDeclarationProperty.Builder builder()
Copyright © 2023. All rights reserved.