Interface CfnMemory.SelfManagedConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMemory.SelfManagedConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnMemory
@Stability(Stable)
public static interface CfnMemory.SelfManagedConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
The self managed configuration.
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.*;
SelfManagedConfigurationProperty selfManagedConfigurationProperty = SelfManagedConfigurationProperty.builder()
.historicalContextWindowSize(123)
.invocationConfiguration(InvocationConfigurationInputProperty.builder()
.payloadDeliveryBucketName("payloadDeliveryBucketName")
.topicArn("topicArn")
.build())
.triggerConditions(List.of(TriggerConditionInputProperty.builder()
.messageBasedTrigger(MessageBasedTriggerInputProperty.builder()
.messageCount(123)
.build())
.timeBasedTrigger(TimeBasedTriggerInputProperty.builder()
.idleSessionTimeout(123)
.build())
.tokenBasedTrigger(TokenBasedTriggerInputProperty.builder()
.tokenCount(123)
.build())
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMemory.SelfManagedConfigurationPropertystatic final classAn implementation forCfnMemory.SelfManagedConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe memory configuration for self managed.default ObjectThe self managed configuration.default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnMemory.TriggerConditionInputProperty>Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHistoricalContextWindowSize
The memory configuration for self managed.- See Also:
-
getInvocationConfiguration
The self managed configuration.Returns union: either
IResolvableorCfnMemory.InvocationConfigurationInputProperty- See Also:
-
getTriggerConditions
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnMemory.TriggerConditionInputProperty>- See Also:
-
builder
-