Show / Hide Table of Contents

Class PermissionsBroadeningCheckProps

Properties for a PermissionsBroadeningCheck.

Inheritance
object
PermissionsBroadeningCheckProps
Implements
IPermissionsBroadeningCheckProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 PermissionsBroadeningCheck.

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

ITopic

Remarks

Default: - no notification

Stage

The CDK Stage object to check the stacks of.

public Stage Stage { get; set; }
Property Value

Stage

Remarks

This should be the same Stage object you are passing to addStage().

Implements

IPermissionsBroadeningCheckProps
Back to top Generated by DocFX