InvocationConfiguration

class aws_cdk.aws_bedrock_agentcore_alpha.InvocationConfiguration(*, s3_location, topic)

Bases: object

(experimental) Invocation configuration for self managed memory strategy.

Parameters:
  • s3_location (Union[Location, Dict[str, Any]]) – (experimental) S3 Location Configuration.

  • topic (ITopic) – (experimental) SNS Topic Configuration.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk.aws_s3 import Location
# 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
from aws_cdk import aws_sns as sns

# topic: sns.Topic

invocation_configuration = bedrock_agentcore_alpha.InvocationConfiguration(
    s3_location=Location(
        bucket_name="bucketName",
        object_key="objectKey",

        # the properties below are optional
        object_version="objectVersion"
    ),
    topic=topic
)

Attributes

s3_location

(experimental) S3 Location Configuration.

Stability:

experimental

topic

(experimental) SNS Topic Configuration.

Stability:

experimental