interface CustomPayloadProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.CustomPayloadProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_CustomPayloadProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.CustomPayloadProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.CustomPayloadProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » 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 { aws_lex as lex } from '@aws-cdk/cfn-property-mixins';
const customPayloadProperty: lex.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