Table of Contents

Interface ICfnRuleAssertion

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

A rule assertion.

public interface ICfnRuleAssertion

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

Properties

Assert

The assertion.

ICfnConditionExpression Assert { get; }

Property Value

ICfnConditionExpression

AssertDescription

The assertion description.

string AssertDescription { get; }

Property Value

string