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.84.0 (build 5404dcf)",
date="2023-06-19T16:30:49.836Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forPermissionsBroadeningCheckProps
static final class
An 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
-