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

.NET
Go
Java
Python
TypeScript