interface MCPServerOAuthClientCredentialsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnService.MCPServerOAuthClientCredentialsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnService_MCPServerOAuthClientCredentialsConfigProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnService.MCPServerOAuthClientCredentialsConfigProperty |
Python | aws_cdk.aws_devopsagent.CfnService.MCPServerOAuthClientCredentialsConfigProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnService » MCPServerOAuthClientCredentialsConfigProperty |
MCP server OAuth client credentials 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';
declare const exchangeParameters: any;
const mCPServerOAuthClientCredentialsConfigProperty: devopsagent.CfnService.MCPServerOAuthClientCredentialsConfigProperty = {
clientId: 'clientId',
clientSecret: 'clientSecret',
exchangeUrl: 'exchangeUrl',
// the properties below are optional
clientName: 'clientName',
exchangeParameters: exchangeParameters,
scopes: ['scopes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | OAuth client ID. |
| client | string | OAuth client secret. |
| exchange | string | OAuth token exchange URL. |
| client | string | User friendly OAuth client name. |
| exchange | any | OAuth token exchange parameters. |
| scopes? | string[] | OAuth scopes. |
clientId
Type:
string
OAuth client ID.
clientSecret
Type:
string
OAuth client secret.
exchangeUrl
Type:
string
OAuth token exchange URL.
clientName?
Type:
string
(optional)
User friendly OAuth client name.
exchangeParameters?
Type:
any
(optional)
OAuth token exchange parameters.
scopes?
Type:
string[]
(optional)
OAuth scopes.

.NET
Go
Java
Python
TypeScript