Interface CfnServicePropsMixin.ServiceDetailsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServicePropsMixin.ServiceDetailsProperty.Jsii$Proxy
- Enclosing class:
CfnServicePropsMixin
// 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;
ServiceDetailsProperty serviceDetailsProperty = ServiceDetailsProperty.builder()
.azureIdentity(AzureIdentityServiceDetailsProperty.builder()
.clientId("clientId")
.tenantId("tenantId")
.webIdentityRoleArn("webIdentityRoleArn")
.webIdentityTokenAudiences(List.of("webIdentityTokenAudiences"))
.build())
.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())
.mcpServerSigV4(MCPServerSigV4DetailsProperty.builder()
.authorizationConfig(MCPServerSigV4AuthorizationConfigProperty.builder()
.customHeaders(Map.of(
"customHeadersKey", "customHeaders"))
.region("region")
.roleArn("roleArn")
.service("service")
.build())
.description("description")
.endpoint("endpoint")
.name("name")
.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())
.pagerDuty(PagerDutyDetailsProperty.builder()
.authorizationConfig(PagerDutyAuthorizationConfigProperty.builder()
.oAuthClientCredentials(OAuthClientDetailsProperty.builder()
.clientId("clientId")
.clientName("clientName")
.clientSecret("clientSecret")
.exchangeParameters(exchangeParameters)
.build())
.build())
.scopes(List.of("scopes"))
.build())
.serviceNow(ServiceNowServiceDetailsProperty.builder()
.authorizationConfig(ServiceNowAuthorizationConfigProperty.builder()
.oAuthClientCredentials(OAuthClientDetailsProperty.builder()
.clientId("clientId")
.clientName("clientName")
.clientSecret("clientSecret")
.exchangeParameters(exchangeParameters)
.build())
.build())
.instanceUrl("instanceUrl")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServicePropsMixin.ServiceDetailsPropertystatic final classAn implementation forCfnServicePropsMixin.ServiceDetailsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectAzure Identity service configuration for federated identity.default ObjectDynatrace service configuration.default ObjectGitLab service configuration.default ObjectMCP server configuration.default ObjectNew Relic service configuration.default ObjectSigV4-authenticated MCP server configuration.default ObjectSplunk MCP server configuration.default ObjectPagerDuty service configuration.default ObjectServiceNow service configuration.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAzureIdentity
Azure Identity service configuration for federated identity.Returns union: either
IResolvableorCfnServicePropsMixin.AzureIdentityServiceDetailsProperty- See Also:
-
getDynatrace
Dynatrace service configuration.Returns union: either
IResolvableorCfnServicePropsMixin.DynatraceServiceDetailsProperty- See Also:
-
getGitLab
GitLab service configuration.Returns union: either
IResolvableorCfnServicePropsMixin.GitLabDetailsProperty- See Also:
-
getMcpServer
MCP server configuration.Returns union: either
IResolvableorCfnServicePropsMixin.MCPServerDetailsProperty- See Also:
-
getMcpServerNewRelic
New Relic service configuration.Returns union: either
IResolvableorCfnServicePropsMixin.NewRelicServiceDetailsProperty- See Also:
-
getMcpServerSigV4
SigV4-authenticated MCP server configuration.Returns union: either
IResolvableorCfnServicePropsMixin.MCPServerSigV4DetailsProperty- See Also:
-
getMcpServerSplunk
Splunk MCP server configuration.Returns union: either
IResolvableorCfnServicePropsMixin.MCPServerSplunkDetailsProperty- See Also:
-
getPagerDuty
PagerDuty service configuration.Returns union: either
IResolvableorCfnServicePropsMixin.PagerDutyDetailsProperty- See Also:
-
getServiceNow
ServiceNow service configuration.Returns union: either
IResolvableorCfnServicePropsMixin.ServiceNowServiceDetailsProperty- See Also:
-
builder
-