Interface CfnBot.OutputContextProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBot.OutputContextProperty.Jsii$Proxy
- Enclosing class:
CfnBot
@Stability(Stable)
public static interface CfnBot.OutputContextProperty
extends software.amazon.jsii.JsiiSerializable
Describes a session context that is activated when an intent is fulfilled.
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.*; OutputContextProperty outputContextProperty = OutputContextProperty.builder() .name("name") .timeToLiveInSeconds(123) .turnsToLive(123) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBot.OutputContextProperty
static final class
An implementation forCfnBot.OutputContextProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the output context.- See Also:
-
getTimeToLiveInSeconds
The amount of time, in seconds, that the output context should remain active.The time is figured from the first time the context is sent to the user.
- See Also:
-
getTurnsToLive
The number of conversation turns that the output context should remain active.The number of turns is counted from the first time that the context is sent to the user.
- See Also:
-
builder
-