MemoryAttributes

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

Bases: object

Attributes for specifying an imported Memory.

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

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

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

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

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

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

ExampleMetadata:

fixture=_generated

Example:

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

memory_attributes = bedrockagentcore.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

The created timestamp of the memory.

Default:

undefined - No created timestamp is provided

kms_key_arn

Optional KMS encryption key associated with this memory.

Default:

undefined - An AWS managed key is used

memory_arn

The ARN of the memory.

Attribute:

true

role_arn

The ARN of the IAM role associated to the memory.

Attribute:

true

status

The status of the memory.

Default:

undefined - No status is provided

updated_at

When this memory was last updated.

Default:

undefined - No last updated timestamp is provided