MemoryStrategyCommonProps

class aws_cdk.aws_bedrock_agentcore_alpha.MemoryStrategyCommonProps(*, name, description=None)

Bases: object

(experimental) Configuration parameters common for any memory strategy.

Parameters:
  • name (str) – (experimental) The name for the strategy.

  • description (Optional[str]) – (experimental) The description of the strategy. Default: No description

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_strategy_common_props = bedrock_agentcore_alpha.MemoryStrategyCommonProps(
    name="name",

    # the properties below are optional
    description="description"
)

Attributes

description

(experimental) The description of the strategy.

Default:

No description

Stability:

experimental

Required:
  • No

name

(experimental) The name for the strategy.

Stability:

experimental

Required:
  • Yes