Show / Hide Table of Contents

Class CfnRuleAssertion

A rule assertion.

Inheritance
object
CfnRuleAssertion
Implements
ICfnRuleAssertion
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnRuleAssertion : ICfnRuleAssertion
Syntax (vb)
Public Class CfnRuleAssertion Implements ICfnRuleAssertion
Remarks

ExampleMetadata: fixture=_generated

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"
            };

Synopsis

Constructors

CfnRuleAssertion()

A rule assertion.

Properties

Assert

The assertion.

AssertDescription

The assertion description.

Constructors

CfnRuleAssertion()

A rule assertion.

public CfnRuleAssertion()
Remarks

ExampleMetadata: fixture=_generated

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"
            };

Properties

Assert

The assertion.

public ICfnConditionExpression Assert { get; set; }
Property Value

ICfnConditionExpression

Remarks

ExampleMetadata: fixture=_generated

AssertDescription

The assertion description.

public string AssertDescription { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

ICfnRuleAssertion
Back to top Generated by DocFX