interface InvocationConfiguration
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.InvocationConfiguration |
Go | github.com/aws/aws-cdk-go/awsbedrockagentcorealpha/v2#InvocationConfiguration |
Java | software.amazon.awscdk.services.bedrock.agentcore.alpha.InvocationConfiguration |
Python | aws_cdk.aws_bedrock_agentcore_alpha.InvocationConfiguration |
TypeScript (source) | @aws-cdk/aws-bedrock-agentcore-alpha ยป InvocationConfiguration |
Invocation configuration for self managed memory strategy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as bedrock_agentcore_alpha from '@aws-cdk/aws-bedrock-agentcore-alpha';
import { aws_sns as sns } from 'aws-cdk-lib';
declare const topic: sns.Topic;
const invocationConfiguration: bedrock_agentcore_alpha.InvocationConfiguration = {
s3Location: {
bucketName: 'bucketName',
objectKey: 'objectKey',
// the properties below are optional
objectVersion: 'objectVersion',
},
topic: topic,
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | Location | S3 Location Configuration. |
| topic | ITopic | SNS Topic Configuration. |
s3Location
Type:
Location
S3 Location Configuration.
topic
Type:
ITopic
SNS Topic Configuration.

.NET
Go
Java
Python
TypeScript (