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: