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