Interface ICfnRuleAssertion
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
AssertDescription
The assertion description.
string AssertDescription { get; }