MemoryAttributes

class aws_cdk.aws_bedrock_agentcore_alpha.MemoryAttributes(*, memory_arn, role_arn, created_at=None, kms_key_arn=None, status=None, updated_at=None)

Bases: object

(experimental) Attributes for specifying an imported Memory.

Parameters:
  • memory_arn (str) – (experimental) The ARN of the memory.

  • role_arn (str) – (experimental) The ARN of the IAM role associated to the memory.

  • created_at (Optional[str]) – (experimental) The created timestamp of the memory. Default: undefined - No created timestamp is provided

  • kms_key_arn (Optional[str]) – (experimental) Optional KMS encryption key associated with this memory. Default: undefined - An AWS managed key is used

  • status (Optional[str]) – (experimental) The status of the memory. Default: undefined - No status is provided

  • updated_at (Optional[str]) – (experimental) When this memory was last updated. Default: undefined - No last updated timestamp is provided

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_bedrock_agentcore_alpha as bedrock_agentcore_alpha

memory_attributes = bedrock_agentcore_alpha.MemoryAttributes(
    memory_arn="memoryArn",
    role_arn="roleArn",

    # the properties below are optional
    created_at="createdAt",
    kms_key_arn="kmsKeyArn",
    status="status",
    updated_at="updatedAt"
)

Attributes

created_at

(experimental) The created timestamp of the memory.

Default:

undefined - No created timestamp is provided

Stability:

experimental

kms_key_arn

(experimental) Optional KMS encryption key associated with this memory.

Default:

undefined - An AWS managed key is used

Stability:

experimental

memory_arn

(experimental) The ARN of the memory.

Stability:

experimental

Attribute:

true

role_arn

(experimental) The ARN of the IAM role associated to the memory.

Stability:

experimental

Attribute:

true

status

(experimental) The status of the memory.

Default:

undefined - No status is provided

Stability:

experimental

updated_at

(experimental) When this memory was last updated.

Default:

undefined - No last updated timestamp is provided

Stability:

experimental