Interface MemoryAttributes

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
MemoryAttributes.Jsii$Proxy

@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)", date="2026-05-19T19:44:37.155Z") @Stability(Stable) public interface MemoryAttributes extends software.amazon.jsii.JsiiSerializable
Attributes for specifying an imported Memory.

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.*;
 MemoryAttributes memoryAttributes = MemoryAttributes.builder()
         .memoryArn("memoryArn")
         .roleArn("roleArn")
         // the properties below are optional
         .createdAt("createdAt")
         .kmsKeyArn("kmsKeyArn")
         .status("status")
         .updatedAt("updatedAt")
         .build();
 
  • Method Details

    • getMemoryArn

      @Stability(Stable) @NotNull String getMemoryArn()
      The ARN of the memory.
    • getRoleArn

      @Stability(Stable) @NotNull String getRoleArn()
      The ARN of the IAM role associated to the memory.
    • getCreatedAt

      @Stability(Stable) @Nullable default String getCreatedAt()
      The created timestamp of the memory.

      Default: undefined - No created timestamp is provided

    • getKmsKeyArn

      @Stability(Stable) @Nullable default String getKmsKeyArn()
      Optional KMS encryption key associated with this memory.

      Default: undefined - An AWS managed key is used

    • getStatus

      @Stability(Stable) @Nullable default String getStatus()
      The status of the memory.

      Default: undefined - No status is provided

    • getUpdatedAt

      @Stability(Stable) @Nullable default String getUpdatedAt()
      When this memory was last updated.

      Default: undefined - No last updated timestamp is provided

    • builder

      @Stability(Stable) static MemoryAttributes.Builder builder()
      Returns:
      a MemoryAttributes.Builder of MemoryAttributes