PermissionsBroadeningCheckProps

class aws_cdk.pipelines.PermissionsBroadeningCheckProps(*, stage, notification_topic=None)

Bases: object

Properties for a PermissionsBroadeningCheck.

Parameters:
  • stage (Stage) – The CDK Stage object to check the stacks of. This should be the same Stage object you are passing to addStage().

  • notification_topic (Optional[ITopic]) – Topic to send notifications when a human needs to give manual confirmation. Default: - no notification

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().