interface McpLambdaTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.McpLambdaTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_McpLambdaTargetConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.McpLambdaTargetConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.McpLambdaTargetConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » McpLambdaTargetConfigurationProperty |
The Lambda target configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from 'aws-cdk-lib';
declare const schemaDefinitionProperty_: bedrockagentcore.CfnGatewayTarget.SchemaDefinitionProperty;
const mcpLambdaTargetConfigurationProperty: bedrockagentcore.CfnGatewayTarget.McpLambdaTargetConfigurationProperty = {
lambdaArn: 'lambdaArn',
toolSchema: {
inlinePayload: [{
description: 'description',
inputSchema: {
type: 'type',
// the properties below are optional
description: 'description',
items: schemaDefinitionProperty_,
properties: {
propertiesKey: schemaDefinitionProperty_,
},
required: ['required'],
},
name: 'name',
// the properties below are optional
outputSchema: {
type: 'type',
// the properties below are optional
description: 'description',
items: schemaDefinitionProperty_,
properties: {
propertiesKey: schemaDefinitionProperty_,
},
required: ['required'],
},
}],
s3: {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| lambda | string | The ARN of the Lambda target configuration. |
| tool | IResolvable | Tool | The tool schema configuration for the gateway target MCP configuration for Lambda. |
lambdaArn
Type:
string
The ARN of the Lambda target configuration.
toolSchema
Type:
IResolvable | Tool
The tool schema configuration for the gateway target MCP configuration for Lambda.

.NET
Go
Java
Python
TypeScript