interface PlainTextMessageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.PlainTextMessageProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_PlainTextMessageProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.PlainTextMessageProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.PlainTextMessageProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » 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/cfn-property-mixins';
const plainTextMessageProperty: lex.CfnBotPropsMixin.PlainTextMessageProperty = {
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| value? | string | The message to send to the user. |
value?
Type:
string
(optional)
The message to send to the user.

.NET
Go
Java
Python
TypeScript