interface PlainTextMessageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.PlainTextMessageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_PlainTextMessageProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.PlainTextMessageProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.PlainTextMessageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
const plainTextMessageProperty: lex_mixins.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