@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:39.778Z") @Stability(value=Deprecated) @Deprecated public interface BaseStageOptions 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.sns.*;
import software.amazon.awscdk.pipelines.*;
Topic topic;
BaseStageOptions baseStageOptions = BaseStageOptions.builder()
.confirmBroadeningPermissions(false)
.securityNotificationTopic(topic)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
BaseStageOptions.Builder
Deprecated.
|
static class |
BaseStageOptions.Jsii$Proxy
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static BaseStageOptions.Builder |
builder()
Deprecated.
|
default Boolean |
getConfirmBroadeningPermissions()
Deprecated.
|
default ITopic |
getSecurityNotificationTopic()
Deprecated.
|
@Stability(value=Deprecated) @Deprecated @Nullable default Boolean getConfirmBroadeningPermissions()
If the stage is configured with confirmBroadeningPermissions enabled, you can use this
property to override the stage configuration. For example, Pipeline Stage
"Prod" has confirmBroadeningPermissions enabled, with applications "A", "B", "C". All three
applications will run a security check, but if we want to disable the one for "C",
we run stage.addApplication(C, { confirmBroadeningPermissions: false }) to override the pipeline
stage behavior.
Adds 1 to the run order space.
Default: false
@Stability(value=Deprecated) @Deprecated @Nullable default ITopic getSecurityNotificationTopic()
Default: undefined no notification topic for security check manual approval action
@Stability(value=Deprecated) @Deprecated static BaseStageOptions.Builder builder()
BaseStageOptions.Builder of BaseStageOptionsCopyright © 2022. All rights reserved.