Package software.amazon.awscdk.pipelines
Interface PermissionsBroadeningCheckProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PermissionsBroadeningCheckProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:33.639Z")
@Stability(Stable)
public interface PermissionsBroadeningCheckProps
extends software.amazon.jsii.JsiiSerializable
Properties for a
PermissionsBroadeningCheck.
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());
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forPermissionsBroadeningCheckPropsstatic final classAn implementation forPermissionsBroadeningCheckProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStage
The CDK Stage object to check the stacks of.This should be the same Stage object you are passing to
addStage(). -
getNotificationTopic
Topic to send notifications when a human needs to give manual confirmation.Default: - no notification
-
builder
-