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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnServicePropsMixin.MCPServerAuthorizationConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiKey
API key authentication details.Returns union: either
IResolvableorCfnServicePropsMixin.ApiKeyDetailsProperty- See Also:
-
getOAuthClientCredentials
MCP server OAuth client credentials configuration.Returns union: either
IResolvableorCfnServicePropsMixin.MCPServerOAuthClientCredentialsConfigProperty- See Also:
-
builder
@Stability(Stable) static CfnServicePropsMixin.MCPServerAuthorizationConfigProperty.Builder builder()
-