Interface CfnBotPropsMixin.SessionAttributeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBotPropsMixin.SessionAttributeProperty.Jsii$Proxy
- Enclosing class:
CfnBotPropsMixin
@Stability(Stable)
public static interface CfnBotPropsMixin.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.mixins.preview.services.lex.mixins.*;
SessionAttributeProperty sessionAttributeProperty = SessionAttributeProperty.builder()
.key("key")
.value("value")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBotPropsMixin.SessionAttributePropertystatic final classAn implementation forCfnBotPropsMixin.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
-