Interface CfnHarness.HarnessManagedMemoryConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHarness.HarnessManagedMemoryConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnHarness
@Stability(Stable)
public static interface CfnHarness.HarnessManagedMemoryConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration for managed memory.
The harness creates and manages a memory resource in the customer's account.
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.*;
HarnessManagedMemoryConfigurationProperty harnessManagedMemoryConfigurationProperty = HarnessManagedMemoryConfigurationProperty.builder()
.arn("arn")
.encryptionKeyArn("encryptionKeyArn")
.eventExpiryDuration(123)
.strategies(List.of("strategies"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHarness.HarnessManagedMemoryConfigurationPropertystatic final classAn implementation forCfnHarness.HarnessManagedMemoryConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArn
The ARN of the managed memory resource.Read-only, populated by the service.
- See Also:
-
getEncryptionKeyArn
Customer-managed KMS key ARN.Defaults to AWS-owned key. Not updatable after creation.
- See Also:
-
getEventExpiryDuration
Event retention in days.Defaults to 30.
- See Also:
-
getStrategies
Strategy types to enable.Defaults to [SEMANTIC, SUMMARIZATION].
- See Also:
-
builder
-