@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:51.760Z")
@Deprecated
public interface CdkStageProps
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 java.lang.Boolean |
getConfirmBroadeningPermissions()
Deprecated.
|
IStageHost |
getHost()
Deprecated.
|
IStage |
getPipelineStage()
Deprecated.
|
default ITopic |
getSecurityNotificationTopic()
Deprecated.
|
java.lang.String |
getStageName()
Deprecated.
|
@Deprecated Artifact getCloudAssemblyArtifact()
@Deprecated IStageHost getHost()
@Deprecated IStage getPipelineStage()
@Deprecated java.lang.String getStageName()
@Deprecated default java.lang.Boolean getConfirmBroadeningPermissions()
Note: Stage level security check can be overriden per application as follows:
stage.addApplication(app, { confirmBroadeningPermissions: false })
Default: false
@Deprecated 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
@Deprecated static CdkStageProps.Builder builder()
CdkStageProps.Builder
of CdkStageProps