Show / Hide Table of Contents

Class CommonConstraintOptions

Properties for governance mechanisms and constraints.

Inheritance
System.Object
CommonConstraintOptions
Implements
ICommonConstraintOptions
Namespace: Amazon.CDK.AWS.ServiceCatalog
Assembly: Amazon.CDK.AWS.ServiceCatalog.dll
Syntax (csharp)
public class CommonConstraintOptions : Object, ICommonConstraintOptions
Syntax (vb)
Public Class CommonConstraintOptions
    Inherits Object
    Implements ICommonConstraintOptions
Remarks

ExampleMetadata: infused

Examples
using Amazon.CDK.AWS.SNS;

Portfolio portfolio;
CloudFormationProduct product;


var topic1 = new Topic(this, "Topic1");
portfolio.NotifyOnStackEvents(product, topic1);

var topic2 = new Topic(this, "Topic2");
portfolio.NotifyOnStackEvents(product, topic2, new CommonConstraintOptions {
    Description = "description for topic2"
});

Synopsis

Constructors

CommonConstraintOptions()

Properties

Description

The description of the constraint.

MessageLanguage

The language code.

Constructors

CommonConstraintOptions()

public CommonConstraintOptions()

Properties

Description

The description of the constraint.

public string Description { get; set; }
Property Value

System.String

Remarks

Default: - No description provided

MessageLanguage

The language code.

public Nullable<MessageLanguage> MessageLanguage { get; set; }
Property Value

System.Nullable<MessageLanguage>

Remarks

Configures the language for error messages from service catalog.

Default: - English

Implements

ICommonConstraintOptions
Back to top Generated by DocFX