Table of Contents

Class CfnRuleAssertion

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

A rule assertion.

public class CfnRuleAssertion : ICfnRuleAssertion
Inheritance
CfnRuleAssertion
Implements
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK;

            ICfnConditionExpression cfnConditionExpression;
            var cfnRuleAssertion = new CfnRuleAssertion {
                Assert = cfnConditionExpression,
                AssertDescription = "assertDescription"
            };

Remarks

ExampleMetadata: fixture=_generated

Constructors

CfnRuleAssertion()

public CfnRuleAssertion()

Properties

Assert

The assertion.

public ICfnConditionExpression Assert { get; set; }

Property Value

ICfnConditionExpression

AssertDescription

The assertion description.

public string AssertDescription { get; set; }

Property Value

string