Interface CfnService.MCPServerOAuthClientCredentialsConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnService.MCPServerOAuthClientCredentialsConfigProperty.Jsii$Proxy
Enclosing class:
CfnService

@Stability(Stable) public static interface CfnService.MCPServerOAuthClientCredentialsConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.devopsagent.*;
 Object exchangeParameters;
 MCPServerOAuthClientCredentialsConfigProperty mCPServerOAuthClientCredentialsConfigProperty = MCPServerOAuthClientCredentialsConfigProperty.builder()
         .clientId("clientId")
         .clientSecret("clientSecret")
         .exchangeUrl("exchangeUrl")
         // the properties below are optional
         .clientName("clientName")
         .exchangeParameters(exchangeParameters)
         .scopes(List.of("scopes"))
         .build();
 

See Also: