@Stability(value=Stable)
public static interface CfnBot.OutputContextProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnBot.OutputContextProperty.Builder
A builder for
CfnBot.OutputContextProperty |
static class |
CfnBot.OutputContextProperty.Jsii$Proxy
An implementation for
CfnBot.OutputContextProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnBot.OutputContextProperty.Builder |
builder() |
String |
getName()
The name of the output context.
|
Number |
getTimeToLiveInSeconds()
The amount of time, in seconds, that the output context should remain active.
|
Number |
getTurnsToLive()
The number of conversation turns that the output context should remain active.
|
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Number getTimeToLiveInSeconds()
The time is figured from the first time the context is sent to the user.
@Stability(value=Stable) @NotNull Number getTurnsToLive()
The number of turns is counted from the first time that the context is sent to the user.
@Stability(value=Stable) static CfnBot.OutputContextProperty.Builder builder()
Copyright © 2022. All rights reserved.