Interface CfnService.MCPServerSplunkAuthorizationConfigProperty

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

@Stability(Stable) public static interface CfnService.MCPServerSplunkAuthorizationConfigProperty extends software.amazon.jsii.JsiiSerializable
MCP server splunk authorization 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.*;
 MCPServerSplunkAuthorizationConfigProperty mCPServerSplunkAuthorizationConfigProperty = MCPServerSplunkAuthorizationConfigProperty.builder()
         .bearerToken(BearerTokenDetailsProperty.builder()
                 .tokenName("tokenName")
                 .tokenValue("tokenValue")
                 // the properties below are optional
                 .authorizationHeader("authorizationHeader")
                 .build())
         .build();
 

See Also: