Interface IPermissionsBroadeningCheckProps
Properties for a PermissionsBroadeningCheck.
Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IPermissionsBroadeningCheckProps
Syntax (vb)
Public Interface IPermissionsBroadeningCheckProps
Remarks
ExampleMetadata: infused
Examples
CodePipeline pipeline;
var stage = new MyApplicationStage(this, "MyApplication");
pipeline.AddStage(stage, new AddStageOpts {
Pre = new [] { new ConfirmPermissionsBroadening("Check", new PermissionsBroadeningCheckProps { Stage = stage }) }
});
Synopsis
Properties
| NotificationTopic | Topic to send notifications when a human needs to give manual confirmation. |
| Stage | The CDK Stage object to check the stacks of. |
Properties
NotificationTopic
Topic to send notifications when a human needs to give manual confirmation.
ITopic? NotificationTopic { get; }
Property Value
Remarks
Default: - no notification
Stage
The CDK Stage object to check the stacks of.
Stage Stage { get; }
Property Value
Remarks
This should be the same Stage object you are passing to addStage().