@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.940Z") @Stability(value=Stable) public interface PermissionsBroadeningCheckProps extends software.amazon.jsii.JsiiSerializable
Example:
CodePipeline pipeline;
MyApplicationStage stage = new MyApplicationStage(this, "MyApplication");
pipeline.addStage(stage, AddStageOpts.builder()
.pre(List.of(
ConfirmPermissionsBroadening.Builder.create("Check").stage(stage).build()))
.build());
| Modifier and Type | Interface and Description |
|---|---|
static class |
PermissionsBroadeningCheckProps.Builder
A builder for
PermissionsBroadeningCheckProps |
static class |
PermissionsBroadeningCheckProps.Jsii$Proxy
An implementation for
PermissionsBroadeningCheckProps |
| Modifier and Type | Method and Description |
|---|---|
static PermissionsBroadeningCheckProps.Builder |
builder() |
default ITopic |
getNotificationTopic()
Topic to send notifications when a human needs to give manual confirmation.
|
Stage |
getStage()
The CDK Stage object to check the stacks of.
|
@Stability(value=Stable) @NotNull Stage getStage()
This should be the same Stage object you are passing to addStage().
@Stability(value=Stable) @Nullable default ITopic getNotificationTopic()
Default: - no notification
@Stability(value=Stable) static PermissionsBroadeningCheckProps.Builder builder()
Copyright © 2022. All rights reserved.