aws-cdk-lib.pipelines.PermissionsBroadeningCheckProps

interface PermissionsBroadeningCheckProps

LanguageType name
.NETAmazon.CDK.Pipelines.PermissionsBroadeningCheckProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/pipelines#PermissionsBroadeningCheckProps
Javasoftware.amazon.awscdk.pipelines.PermissionsBroadeningCheckProps
Pythonaws_cdk.pipelines.PermissionsBroadeningCheckProps
TypeScript (source)aws-cdk-lib » pipelines » PermissionsBroadeningCheckProps

Properties for a PermissionsBroadeningCheck.

Example

declare const pipeline: pipelines.CodePipeline;
const stage = new MyApplicationStage(this, 'MyApplication');
pipeline.addStage(stage, {
  pre: [
    new pipelines.ConfirmPermissionsBroadening('Check', { stage }),
  ],
});

Properties

NameTypeDescription
stageStageThe CDK Stage object to check the stacks of.
notificationTopic?ITopicTopic to send notifications when a human needs to give manual confirmation.

stage

Type: Stage

The CDK Stage object to check the stacks of.

This should be the same Stage object you are passing to addStage().


notificationTopic?

Type: ITopic (optional, default: no notification)

Topic to send notifications when a human needs to give manual confirmation.