Interface CfnServiceMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnServiceMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:58.066Z") @Stability(Stable) public interface CfnServiceMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnServicePropsMixin.

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;
 CfnServiceMixinProps cfnServiceMixinProps = CfnServiceMixinProps.builder()
         .serviceDetails(ServiceDetailsProperty.builder()
                 .dynatrace(DynatraceServiceDetailsProperty.builder()
                         .accountUrn("accountUrn")
                         .authorizationConfig(DynatraceAuthorizationConfigProperty.builder()
                                 .oAuthClientCredentials(OAuthClientDetailsProperty.builder()
                                         .clientId("clientId")
                                         .clientName("clientName")
                                         .clientSecret("clientSecret")
                                         .exchangeParameters(exchangeParameters)
                                         .build())
                                 .build())
                         .build())
                 .gitLab(GitLabDetailsProperty.builder()
                         .groupId("groupId")
                         .targetUrl("targetUrl")
                         .tokenType("tokenType")
                         .tokenValue("tokenValue")
                         .build())
                 .mcpServer(MCPServerDetailsProperty.builder()
                         .authorizationConfig(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())
                         .description("description")
                         .endpoint("endpoint")
                         .name("name")
                         .build())
                 .mcpServerNewRelic(NewRelicServiceDetailsProperty.builder()
                         .authorizationConfig(NewRelicAuthorizationConfigProperty.builder()
                                 .apiKey(NewRelicApiKeyConfigProperty.builder()
                                         .accountId("accountId")
                                         .alertPolicyIds(List.of("alertPolicyIds"))
                                         .apiKey("apiKey")
                                         .applicationIds(List.of("applicationIds"))
                                         .entityGuids(List.of("entityGuids"))
                                         .region("region")
                                         .build())
                                 .build())
                         .build())
                 .mcpServerSplunk(MCPServerSplunkDetailsProperty.builder()
                         .authorizationConfig(MCPServerSplunkAuthorizationConfigProperty.builder()
                                 .bearerToken(BearerTokenDetailsProperty.builder()
                                         .authorizationHeader("authorizationHeader")
                                         .tokenName("tokenName")
                                         .tokenValue("tokenValue")
                                         .build())
                                 .build())
                         .description("description")
                         .endpoint("endpoint")
                         .name("name")
                         .build())
                 .serviceNow(ServiceNowServiceDetailsProperty.builder()
                         .authorizationConfig(ServiceNowAuthorizationConfigProperty.builder()
                                 .oAuthClientCredentials(OAuthClientDetailsProperty.builder()
                                         .clientId("clientId")
                                         .clientName("clientName")
                                         .clientSecret("clientSecret")
                                         .exchangeParameters(exchangeParameters)
                                         .build())
                                 .build())
                         .instanceUrl("instanceUrl")
                         .build())
                 .build())
         .serviceType("serviceType")
         .build();
 

See Also: