interface TriggerConditionInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnMemory.TriggerConditionInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnMemory_TriggerConditionInputProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnMemory.TriggerConditionInputProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnMemory.TriggerConditionInputProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnMemory » TriggerConditionInputProperty |
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 { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
const triggerConditionInputProperty: bedrockagentcore.CfnMemory.TriggerConditionInputProperty = {
messageBasedTrigger: {
messageCount: 123,
},
timeBasedTrigger: {
idleSessionTimeout: 123,
},
tokenBasedTrigger: {
tokenCount: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| message | IResolvable | Message | The memory trigger condition input for the message based trigger. |
| time | IResolvable | Time | The memory trigger condition input. |
| token | IResolvable | Token | The trigger condition information for a token based trigger. |
messageBasedTrigger?
Type:
IResolvable | Message
(optional)
The memory trigger condition input for the message based trigger.
timeBasedTrigger?
Type:
IResolvable | Time
(optional)
The memory trigger condition input.
tokenBasedTrigger?
Type:
IResolvable | Token
(optional)
The trigger condition information for a token based trigger.

.NET
Go
Java
Python
TypeScript