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: