interface McpServerTargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnGatewayTarget.McpServerTargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnGatewayTarget_McpServerTargetConfigurationProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnGatewayTarget.McpServerTargetConfigurationProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnGatewayTarget.McpServerTargetConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnGatewayTarget » McpServerTargetConfigurationProperty |
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';
const mcpServerTargetConfigurationProperty: bedrockagentcore.CfnGatewayTarget.McpServerTargetConfigurationProperty = {
endpoint: 'endpoint',
// the properties below are optional
listingMode: 'listingMode',
mcpToolSchema: {
inlinePayload: 'inlinePayload',
s3: {
bucketOwnerAccountId: 'bucketOwnerAccountId',
uri: 'uri',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| endpoint | string | |
| listing | string | |
| mcp | IResolvable | Mcp |
endpoint
Type:
string
listingMode?
Type:
string
(optional)
mcpToolSchema?
Type:
IResolvable | Mcp
(optional)

.NET
Go
Java
Python
TypeScript