interface MCPServerSigV4DetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnService.MCPServerSigV4DetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnService_MCPServerSigV4DetailsProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnService.MCPServerSigV4DetailsProperty |
Python | aws_cdk.aws_devopsagent.CfnService.MCPServerSigV4DetailsProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnService » MCPServerSigV4DetailsProperty |
SigV4-authenticated 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-lib';
const mCPServerSigV4DetailsProperty: devopsagent.CfnService.MCPServerSigV4DetailsProperty = {
authorizationConfig: {
region: 'region',
roleArn: 'roleArn',
service: 'service',
// the properties below are optional
customHeaders: {
customHeadersKey: 'customHeaders',
},
},
endpoint: 'endpoint',
name: 'name',
// the properties below are optional
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| authorization | IResolvable | MCPServer | SigV4 authorization configuration for MCP server. |
| endpoint | string | MCP server endpoint URL. |
| name | string | MCP server name. |
| description? | string | Optional description for the MCP server. |
authorizationConfig
Type:
IResolvable | MCPServer
SigV4 authorization configuration for MCP server.
endpoint
Type:
string
MCP server endpoint URL.
name
Type:
string
MCP server name.
description?
Type:
string
(optional)
Optional description for the MCP server.

.NET
Go
Java
Python
TypeScript