interface MCPServerOAuthClientCredentialsConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.MCPServerOAuthClientCredentialsConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_MCPServerOAuthClientCredentialsConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.MCPServerOAuthClientCredentialsConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.MCPServerOAuthClientCredentialsConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » 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/cfn-property-mixins';
declare const exchangeParameters: any;
const mCPServerOAuthClientCredentialsConfigProperty: devopsagent.CfnServicePropsMixin.MCPServerOAuthClientCredentialsConfigProperty = {
clientId: 'clientId',
clientName: 'clientName',
clientSecret: 'clientSecret',
exchangeParameters: exchangeParameters,
exchangeUrl: 'exchangeUrl',
scopes: ['scopes'],
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | OAuth client ID. |
| client | string | User friendly OAuth client name. |
| client | string | OAuth client secret. |
| exchange | any | OAuth token exchange parameters. |
| exchange | string | OAuth token exchange URL. |
| scopes? | string[] | OAuth scopes. |
clientId?
Type:
string
(optional)
OAuth client ID.
clientName?
Type:
string
(optional)
User friendly OAuth client name.
clientSecret?
Type:
string
(optional)
OAuth client secret.
exchangeParameters?
Type:
any
(optional)
OAuth token exchange parameters.
exchangeUrl?
Type:
string
(optional)
OAuth token exchange URL.
scopes?
Type:
string[]
(optional)
OAuth scopes.

.NET
Go
Java
Python
TypeScript