interface ServiceDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServicePropsMixin.ServiceDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServicePropsMixin_ServiceDetailsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServicePropsMixin.ServiceDetailsProperty |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServicePropsMixin.ServiceDetailsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServicePropsMixin » ServiceDetailsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devopsagent as devopsagent } from '@aws-cdk/cfn-property-mixins';
declare const exchangeParameters: any;
const serviceDetailsProperty: devopsagent.CfnServicePropsMixin.ServiceDetailsProperty = {
dynatrace: {
accountUrn: 'accountUrn',
authorizationConfig: {
oAuthClientCredentials: {
clientId: 'clientId',
clientName: 'clientName',
clientSecret: 'clientSecret',
exchangeParameters: exchangeParameters,
},
},
},
gitLab: {
groupId: 'groupId',
targetUrl: 'targetUrl',
tokenType: 'tokenType',
tokenValue: 'tokenValue',
},
mcpServer: {
authorizationConfig: {
apiKey: {
apiKeyHeader: 'apiKeyHeader',
apiKeyName: 'apiKeyName',
apiKeyValue: 'apiKeyValue',
},
oAuthClientCredentials: {
clientId: 'clientId',
clientName: 'clientName',
clientSecret: 'clientSecret',
exchangeParameters: exchangeParameters,
exchangeUrl: 'exchangeUrl',
scopes: ['scopes'],
},
},
description: 'description',
endpoint: 'endpoint',
name: 'name',
},
mcpServerNewRelic: {
authorizationConfig: {
apiKey: {
accountId: 'accountId',
alertPolicyIds: ['alertPolicyIds'],
apiKey: 'apiKey',
applicationIds: ['applicationIds'],
entityGuids: ['entityGuids'],
region: 'region',
},
},
},
mcpServerSplunk: {
authorizationConfig: {
bearerToken: {
authorizationHeader: 'authorizationHeader',
tokenName: 'tokenName',
tokenValue: 'tokenValue',
},
},
description: 'description',
endpoint: 'endpoint',
name: 'name',
},
serviceNow: {
authorizationConfig: {
oAuthClientCredentials: {
clientId: 'clientId',
clientName: 'clientName',
clientSecret: 'clientSecret',
exchangeParameters: exchangeParameters,
},
},
instanceUrl: 'instanceUrl',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| dynatrace? | IResolvable | Dynatrace | Dynatrace service configuration. |
| git | IResolvable | Git | GitLab service configuration. |
| mcp | IResolvable | MCPServer | MCP server configuration. |
| mcp | IResolvable | New | New Relic service configuration. |
| mcp | IResolvable | MCPServer | Splunk MCP server configuration. |
| service | IResolvable | Service | ServiceNow service configuration. |
dynatrace?
Type:
IResolvable | Dynatrace
(optional)
Dynatrace service configuration.
gitLab?
Type:
IResolvable | Git
(optional)
GitLab service configuration.
mcpServer?
Type:
IResolvable | MCPServer
(optional)
MCP server configuration.
mcpServerNewRelic?
Type:
IResolvable | New
(optional)
New Relic service configuration.
mcpServerSplunk?
Type:
IResolvable | MCPServer
(optional)
Splunk MCP server configuration.
serviceNow?
Type:
IResolvable | Service
(optional)
ServiceNow service configuration.

.NET
Go
Java
Python
TypeScript