interface McpTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BedrockAgentCore.Mixins.CfnGatewayTargetPropsMixin.McpTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrockagentcore/mixins#CfnGatewayTargetPropsMixin_McpTargetConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrockagentcore.mixins.CfnGatewayTargetPropsMixin.McpTargetConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrockagentcore.mixins.CfnGatewayTargetPropsMixin.McpTargetConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrockagentcore » mixins » CfnGatewayTargetPropsMixin » McpTargetConfigurationProperty |
The MCP target configuration for the gateway target.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrockagentcore_mixins } from '@aws-cdk/mixins-preview/aws-bedrockagentcore';
declare const schemaDefinitionProperty_: bedrockagentcore_mixins.CfnGatewayTargetPropsMixin.SchemaDefinitionProperty;
const mcpTargetConfigurationProperty: bedrockagentcore_mixins.CfnGatewayTargetPropsMixin.McpTargetConfigurationProperty = {
lambda: {
lambdaArn: 'lambdaArn',
toolSchema: {
inlinePayload: [{
description: 'description',
inputSchema: {
description: 'description',
items: schemaDefinitionProperty_,
properties: {
propertiesKey: schemaDefinitionProperty_,
},
required: ['required'],
type: 'type',
},
name: 'name',
outputSchema: {
description: 'description',
items: schemaDefinitionProperty_,
properties: {
propertiesKey: schemaDefinitionProperty_,
},
required: ['required'],
type: 'type',
},
}],
s3: {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
},
},
},
mcpServer: {
endpoint: 'endpoint',
},
openApiSchema: {
inlinePayload: 'inlinePayload',
s3: {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
},
},
smithyModel: {
inlinePayload: 'inlinePayload',
s3: {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| lambda? | IResolvable | Mcp | The Lambda MCP configuration for the gateway target. |
| mcp | IResolvable | Mcp | |
| open | IResolvable | Api | The OpenApi schema for the gateway target MCP configuration. |
| smithy | IResolvable | Api | The target configuration for the Smithy model target. |
lambda?
Type:
IResolvable | Mcp
(optional)
The Lambda MCP configuration for the gateway target.
mcpServer?
Type:
IResolvable | Mcp
(optional)
openApiSchema?
Type:
IResolvable | Api
(optional)
The OpenApi schema for the gateway target MCP configuration.
smithyModel?
Type:
IResolvable | Api
(optional)
The target configuration for the Smithy model target.

.NET
Go
Java
Python
TypeScript