@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:39.787Z") @Stability(value=Deprecated) @Deprecated public interface CdkStageProps 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.*;
import software.amazon.awscdk.services.sns.*;
import software.amazon.awscdk.pipelines.*;
Artifact artifact;
IStage stage;
IStageHost stageHost;
Topic topic;
CdkStageProps cdkStageProps = CdkStageProps.builder()
.cloudAssemblyArtifact(artifact)
.host(stageHost)
.pipelineStage(stage)
.stageName("stageName")
// the properties below are optional
.confirmBroadeningPermissions(false)
.securityNotificationTopic(topic)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CdkStageProps.Builder
Deprecated.
|
static class |
CdkStageProps.Jsii$Proxy
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static CdkStageProps.Builder |
builder()
Deprecated.
|
Artifact |
getCloudAssemblyArtifact()
Deprecated.
|
default Boolean |
getConfirmBroadeningPermissions()
Deprecated.
|
IStageHost |
getHost()
Deprecated.
|
IStage |
getPipelineStage()
Deprecated.
|
default ITopic |
getSecurityNotificationTopic()
Deprecated.
|
String |
getStageName()
Deprecated.
|
@Stability(value=Deprecated) @Deprecated @NotNull Artifact getCloudAssemblyArtifact()
@Stability(value=Deprecated) @Deprecated @NotNull IStageHost getHost()
@Stability(value=Deprecated) @Deprecated @NotNull IStage getPipelineStage()
@Stability(value=Deprecated) @Deprecated @NotNull String getStageName()
@Stability(value=Deprecated) @Deprecated @Nullable default Boolean getConfirmBroadeningPermissions()
Note: Stage level security check can be overriden per application as follows:
stage.addApplication(app, { confirmBroadeningPermissions: false })
Default: false
@Stability(value=Deprecated) @Deprecated @Nullable default ITopic getSecurityNotificationTopic()
Note: The Stage Notification Topic can be overriden per application as follows:
stage.addApplication(app, { securityNotificationTopic: newTopic })
Default: undefined no stage level notification topic
@Stability(value=Deprecated) @Deprecated static CdkStageProps.Builder builder()
CdkStageProps.Builder of CdkStagePropsCopyright © 2022. All rights reserved.