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

(deprecated) Attributes for specifying an imported Memory.

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

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

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

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

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

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

Deprecated:

Use the equivalent construct from aws-cdk-lib/aws-bedrockagentcore instead.

Stability:

deprecated

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

(deprecated) The created timestamp of the memory.

Default:

undefined - No created timestamp is provided

Stability:

deprecated

kms_key_arn

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

Default:

undefined - An AWS managed key is used

Stability:

deprecated

memory_arn

(deprecated) The ARN of the memory.

Stability:

deprecated

Attribute:

true

role_arn

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

Stability:

deprecated

Attribute:

true

status

(deprecated) The status of the memory.

Default:

undefined - No status is provided

Stability:

deprecated

updated_at

(deprecated) When this memory was last updated.

Default:

undefined - No last updated timestamp is provided

Stability:

deprecated