@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-28T21:34:31.004Z")
@Deprecated
public interface BaseStageOptions
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 java.lang.Boolean |
getConfirmBroadeningPermissions()
Deprecated.
|
default ITopic |
getSecurityNotificationTopic()
Deprecated.
|
@Deprecated default java.lang.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
@Deprecated default ITopic getSecurityNotificationTopic()
Default: undefined no notification topic for security check manual approval action
@Deprecated static BaseStageOptions.Builder builder()
BaseStageOptions.Builder
of BaseStageOptions