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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBot.SessionAttributeProperty
static final class
An implementation forCfnBot.SessionAttributeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The name of the session attribute. -
getValue
The session-specific context information for the session attribute. -
builder
-