Interface CfnServicePropsMixin.MCPServerOAuthClientCredentialsConfigProperty

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

@Stability(Stable) public static interface CfnServicePropsMixin.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.cfnpropertymixins.services.devopsagent.*;
 Object exchangeParameters;
 MCPServerOAuthClientCredentialsConfigProperty mCPServerOAuthClientCredentialsConfigProperty = MCPServerOAuthClientCredentialsConfigProperty.builder()
         .clientId("clientId")
         .clientName("clientName")
         .clientSecret("clientSecret")
         .exchangeParameters(exchangeParameters)
         .exchangeUrl("exchangeUrl")
         .scopes(List.of("scopes"))
         .build();
 

See Also: