interface PermissionsBroadeningCheckProps
Language | Type name |
---|---|
.NET | Amazon.CDK.Pipelines.PermissionsBroadeningCheckProps |
Java | software.amazon.awscdk.pipelines.PermissionsBroadeningCheckProps |
Python | aws_cdk.pipelines.PermissionsBroadeningCheckProps |
TypeScript (source) | @aws-cdk/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
Name | Type | Description |
---|---|---|
stage | Stage | The CDK Stage object to check the stacks of. |
notification | ITopic | Topic 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.