Show / Hide Table of Contents

Interface ICommonConstraintOptions

Properties for governance mechanisms and constraints.

Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICommonConstraintOptions
Syntax (vb)
Public Interface 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

Properties

Description

The description of the constraint.

MessageLanguage

The language code.

Properties

Description

The description of the constraint.

string? Description { get; }
Property Value

string

Remarks

Default: - No description provided

MessageLanguage

The language code.

MessageLanguage? MessageLanguage { get; }
Property Value

MessageLanguage?

Remarks

Configures the language for error messages from service catalog.

Default: - English

Back to top Generated by DocFX