Class CfnBot.ConditionProperty
Provides an expression that evaluates to true or false.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Lex
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBot.ConditionProperty : CfnBot.IConditionProperty
Syntax (vb)
Public Class CfnBot.ConditionProperty Implements CfnBot.IConditionProperty
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-condition.html
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.AWS.Lex;
var conditionProperty = new ConditionProperty {
ExpressionString = "expressionString"
};
Synopsis
Constructors
ConditionProperty() | Provides an expression that evaluates to true or false. |
Properties
ExpressionString | The expression string that is evaluated. |
Constructors
ConditionProperty()
Provides an expression that evaluates to true or false.
public ConditionProperty()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-condition.html
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.AWS.Lex;
var conditionProperty = new ConditionProperty {
ExpressionString = "expressionString"
};
Properties
ExpressionString
The expression string that is evaluated.
public string ExpressionString { get; set; }