Interface CfnServicePropsMixin.MCPServerSplunkDetailsProperty

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

@Stability(Stable) public static interface CfnServicePropsMixin.MCPServerSplunkDetailsProperty extends software.amazon.jsii.JsiiSerializable
Splunk MCP server 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.*;
 MCPServerSplunkDetailsProperty mCPServerSplunkDetailsProperty = MCPServerSplunkDetailsProperty.builder()
         .authorizationConfig(MCPServerSplunkAuthorizationConfigProperty.builder()
                 .bearerToken(BearerTokenDetailsProperty.builder()
                         .authorizationHeader("authorizationHeader")
                         .tokenName("tokenName")
                         .tokenValue("tokenValue")
                         .build())
                 .build())
         .description("description")
         .endpoint("endpoint")
         .name("name")
         .build();
 

See Also: