interface PlainTextMessageProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Lex.CfnBot.PlainTextMessageProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_PlainTextMessageProperty | 
  Java | software.amazon.awscdk.services.lex.CfnBot.PlainTextMessageProperty | 
  Python | aws_cdk.aws_lex.CfnBot.PlainTextMessageProperty | 
  TypeScript  | aws-cdk-lib » aws_lex » CfnBot » PlainTextMessageProperty | 
Defines an ASCII text message to send to the user.
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-lib';
const plainTextMessageProperty: lex.CfnBot.PlainTextMessageProperty = {
  value: 'value',
};
Properties
| Name | Type | Description | 
|---|---|---|
| value | string | The message to send to the user. | 
value
Type:
string
The message to send to the user.

 .NET
 Go
 Java
 Python
 TypeScript