interface MCPServerAuthorizationConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.MCPServerAuthorizationConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_MCPServerAuthorizationConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.MCPServerAuthorizationConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.MCPServerAuthorizationConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » MCPServerAuthorizationConfigProperty |
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 mCPServerAuthorizationConfigProperty: devopsagent.CfnServicePropsMixin.MCPServerAuthorizationConfigProperty = {
apiKey: {
apiKeyHeader: 'apiKeyHeader',
apiKeyName: 'apiKeyName',
apiKeyValue: 'apiKeyValue',
},
oAuthClientCredentials: {
clientId: 'clientId',
clientName: 'clientName',
clientSecret: 'clientSecret',
exchangeParameters: exchangeParameters,
exchangeUrl: 'exchangeUrl',
scopes: ['scopes'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| api | IResolvable | Api | API key authentication details. |
| o | IResolvable | MCPServer | MCP server OAuth client credentials configuration. |
apiKey?
Type:
IResolvable | Api
(optional)
API key authentication details.
oAuthClientCredentials?
Type:
IResolvable | MCPServer
(optional)
MCP server OAuth client credentials configuration.

.NET
Go
Java
Python
TypeScript