Interface CfnServicePropsMixin.MCPServerAuthorizationConfigProperty

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

@Stability(Stable) public static interface CfnServicePropsMixin.MCPServerAuthorizationConfigProperty extends software.amazon.jsii.JsiiSerializable
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;
 MCPServerAuthorizationConfigProperty mCPServerAuthorizationConfigProperty = MCPServerAuthorizationConfigProperty.builder()
         .apiKey(ApiKeyDetailsProperty.builder()
                 .apiKeyHeader("apiKeyHeader")
                 .apiKeyName("apiKeyName")
                 .apiKeyValue("apiKeyValue")
                 .build())
         .oAuthClientCredentials(MCPServerOAuthClientCredentialsConfigProperty.builder()
                 .clientId("clientId")
                 .clientName("clientName")
                 .clientSecret("clientSecret")
                 .exchangeParameters(exchangeParameters)
                 .exchangeUrl("exchangeUrl")
                 .scopes(List.of("scopes"))
                 .build())
         .build();
 

See Also: