PermissionsBroadeningCheckProps
- class aws_cdk.pipelines.PermissionsBroadeningCheckProps(*, stage, notification_topic=None)
 Bases:
objectProperties for a
PermissionsBroadeningCheck.- Parameters:
 - ExampleMetadata:
 infused
Example:
# pipeline: pipelines.CodePipeline stage = MyApplicationStage(self, "MyApplication") pipeline.add_stage(stage, pre=[pipelines.ConfirmPermissionsBroadening("Check", stage=stage)] )
Attributes
- notification_topic
 Topic to send notifications when a human needs to give manual confirmation.
- Default:
 no notification
- stage
 The CDK Stage object to check the stacks of.
This should be the same Stage object you are passing to
addStage().