Interface CfnBot.SessionAttributeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBot.SessionAttributeProperty.Jsii$Proxy
Enclosing class:
CfnBot

@Stability(Stable) public static interface CfnBot.SessionAttributeProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.lex.*;
 SessionAttributeProperty sessionAttributeProperty = SessionAttributeProperty.builder()
         .key("key")
         // the properties below are optional
         .value("value")
         .build();