interface CfnServiceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DevOpsAgent.CfnServiceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevopsagent#CfnServiceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.devopsagent.CfnServiceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_devopsagent.CfnServiceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devopsagent » CfnServiceMixinProps |
Properties for CfnServicePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devopsagent-service.html
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 cfnServiceMixinProps: devopsagent.CfnServiceMixinProps = {
serviceDetails: {
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',
},
},
serviceType: 'serviceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| service | IResolvable | Service | Service-specific configuration details. |
| service | string | The type of service being registered. |
serviceDetails?
Type:
IResolvable | Service
(optional)
Service-specific configuration details.
serviceType?
Type:
string
(optional)
The type of service being registered.

.NET
Go
Java
Python
TypeScript