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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBot.SessionAttributePropertystatic final classAn implementation forCfnBot.SessionAttributeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The name of the session attribute.- See Also:
-
getValue
The session-specific context information for the session attribute.- See Also:
-
builder
-