interface CustomPayloadProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.CustomPayloadProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_CustomPayloadProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.CustomPayloadProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.CustomPayloadProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » CustomPayloadProperty |
A custom response string that Amazon Lex sends to your application.
You define the content and structure the string.
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 customPayloadProperty: lex_mixins.CfnBotPropsMixin.CustomPayloadProperty = {
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| value? | string | The string that is sent to your application. |
value?
Type:
string
(optional)
The string that is sent to your application.

.NET
Go
Java
Python
TypeScript