Class CfnRuleAssertion
A rule assertion.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
AssertDescription
The assertion description.
public string AssertDescription { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated