Interface CfnMemory.TriggerConditionInputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMemory.TriggerConditionInputProperty.Jsii$Proxy
Enclosing class:
CfnMemory

@Stability(Stable) public static interface CfnMemory.TriggerConditionInputProperty extends software.amazon.jsii.JsiiSerializable
The memory trigger condition input.

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.bedrockagentcore.*;
 TriggerConditionInputProperty triggerConditionInputProperty = TriggerConditionInputProperty.builder()
         .messageBasedTrigger(MessageBasedTriggerInputProperty.builder()
                 .messageCount(123)
                 .build())
         .timeBasedTrigger(TimeBasedTriggerInputProperty.builder()
                 .idleSessionTimeout(123)
                 .build())
         .tokenBasedTrigger(TokenBasedTriggerInputProperty.builder()
                 .tokenCount(123)
                 .build())
         .build();
 

See Also: