interface DynatraceServiceDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnService.DynatraceServiceDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnService_DynatraceServiceDetailsProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnService.DynatraceServiceDetailsProperty |
Python | aws_cdk.aws_devopsagent.CfnService.DynatraceServiceDetailsProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnService » DynatraceServiceDetailsProperty |
Dynatrace service configuration.
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-lib';
declare const exchangeParameters: any;
const dynatraceServiceDetailsProperty: devopsagent.CfnService.DynatraceServiceDetailsProperty = {
accountUrn: 'accountUrn',
// the properties below are optional
authorizationConfig: {
oAuthClientCredentials: {
clientId: 'clientId',
clientSecret: 'clientSecret',
// the properties below are optional
clientName: 'clientName',
exchangeParameters: exchangeParameters,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string | Dynatrace resource account URN. |
| authorization | IResolvable | Dynatrace | Dynatrace OAuth authorization configuration. |
accountUrn
Type:
string
Dynatrace resource account URN.
authorizationConfig?
Type:
IResolvable | Dynatrace
(optional)
Dynatrace OAuth authorization configuration.

.NET
Go
Java
Python
TypeScript