Class PermissionsBroadeningCheckProps
Properties for a PermissionsBroadeningCheck.
Implements
Inherited Members
Namespace: Amazon.CDK.Pipelines
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PermissionsBroadeningCheckProps : IPermissionsBroadeningCheckProps
Syntax (vb)
Public Class PermissionsBroadeningCheckProps Implements 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
Constructors
| PermissionsBroadeningCheckProps() | Properties for a |
Properties
| NotificationTopic | Topic to send notifications when a human needs to give manual confirmation. |
| Stage | The CDK Stage object to check the stacks of. |
Constructors
PermissionsBroadeningCheckProps()
Properties for a PermissionsBroadeningCheck.
public PermissionsBroadeningCheckProps()
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 }) }
});
Properties
NotificationTopic
Topic to send notifications when a human needs to give manual confirmation.
public ITopic? NotificationTopic { get; set; }
Property Value
Remarks
Default: - no notification
Stage
The CDK Stage object to check the stacks of.
public Stage Stage { get; set; }
Property Value
Remarks
This should be the same Stage object you are passing to addStage().