Interface CfnMemory.ISelfManagedConfigurationProperty
The self managed configuration.
Namespace: Amazon.CDK.AWS.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnMemory.ISelfManagedConfigurationProperty
Syntax (vb)
Public Interface CfnMemory.ISelfManagedConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.BedrockAgentCore;
var selfManagedConfigurationProperty = new SelfManagedConfigurationProperty {
HistoricalContextWindowSize = 123,
InvocationConfiguration = new InvocationConfigurationInputProperty {
PayloadDeliveryBucketName = "payloadDeliveryBucketName",
TopicArn = "topicArn"
},
TriggerConditions = new [] { new TriggerConditionInputProperty {
MessageBasedTrigger = new MessageBasedTriggerInputProperty {
MessageCount = 123
},
TimeBasedTrigger = new TimeBasedTriggerInputProperty {
IdleSessionTimeout = 123
},
TokenBasedTrigger = new TokenBasedTriggerInputProperty {
TokenCount = 123
}
} }
};
Synopsis
Properties
| HistoricalContextWindowSize | The memory configuration for self managed. |
| InvocationConfiguration | The self managed configuration. |
| TriggerConditions | The self managed configuration. |
Properties
HistoricalContextWindowSize
The memory configuration for self managed.
double? HistoricalContextWindowSize { get; }
Property Value
Remarks
InvocationConfiguration
The self managed configuration.
object? InvocationConfiguration { get; }
Property Value
Remarks
TriggerConditions
The self managed configuration.
object? TriggerConditions { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnMemory.ITriggerConditionInputProperty)[]