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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMemory.TriggerConditionInputPropertystatic final classAn implementation forCfnMemory.TriggerConditionInputProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMessageBasedTrigger
The memory trigger condition input for the message based trigger.Returns union: either
IResolvableorCfnMemory.MessageBasedTriggerInputProperty- See Also:
-
getTimeBasedTrigger
The memory trigger condition input.Returns union: either
IResolvableorCfnMemory.TimeBasedTriggerInputProperty- See Also:
-
getTokenBasedTrigger
The trigger condition information for a token based trigger.Returns union: either
IResolvableorCfnMemory.TokenBasedTriggerInputProperty- See Also:
-
builder
-