interface ConditionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.ConditionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_ConditionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.ConditionProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.ConditionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » ConditionProperty |
Provides an expression that evaluates to true or false.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-condition.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lex as lex } from '@aws-cdk/cfn-property-mixins';
const conditionProperty: lex.CfnBotPropsMixin.ConditionProperty = {
expressionString: 'expressionString',
};
Properties
| Name | Type | Description |
|---|---|---|
| expression | string | The expression string that is evaluated. |
expressionString?
Type:
string
(optional)
The expression string that is evaluated.

.NET
Go
Java
Python
TypeScript