interface SessionAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.SessionAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_SessionAttributeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.SessionAttributeProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.SessionAttributeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » SessionAttributeProperty |
A key/value pair representing session-specific context information.
It contains application information passed between Amazon Lex V2 and a client application.
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 sessionAttributeProperty: lex.CfnBotPropsMixin.SessionAttributeProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The name of the session attribute. |
| value? | string | The session-specific context information for the session attribute. |
key?
Type:
string
(optional)
The name of the session attribute.
value?
Type:
string
(optional)
The session-specific context information for the session attribute.

.NET
Go
Java
Python
TypeScript