interface MCPServerDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.MCPServerDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_MCPServerDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.MCPServerDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.MCPServerDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » MCPServerDetailsProperty |
MCP server configuration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from '@aws-cdk/cfn-property-mixins';
declare const exchangeParameters: any;
const mCPServerDetailsProperty: devopsagent.CfnServicePropsMixin.MCPServerDetailsProperty = {
authorizationConfig: {
apiKey: {
apiKeyHeader: 'apiKeyHeader',
apiKeyName: 'apiKeyName',
apiKeyValue: 'apiKeyValue',
},
oAuthClientCredentials: {
clientId: 'clientId',
clientName: 'clientName',
clientSecret: 'clientSecret',
exchangeParameters: exchangeParameters,
exchangeUrl: 'exchangeUrl',
scopes: ['scopes'],
},
},
description: 'description',
endpoint: 'endpoint',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | IResolvable | MCPServer | MCP server authorization configuration. |
| description? | string | Optional description for the MCP server. |
| endpoint? | string | MCP server endpoint URL. |
| name? | string | MCP server name. |
authorizationConfig?
Type:
IResolvable | MCPServer
(optional)
MCP server authorization configuration.
description?
Type:
string
(optional)
Optional description for the MCP server.
endpoint?
Type:
string
(optional)
MCP server endpoint URL.
name?
Type:
string
(optional)
MCP server name.

.NET
Go
Java
Python
TypeScript