interface DynatraceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DevOpsAgent.CfnAssociation.DynatraceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevopsagent#CfnAssociation_DynatraceConfigurationProperty |
Java | software.amazon.awscdk.services.devopsagent.CfnAssociation.DynatraceConfigurationProperty |
Python | aws_cdk.aws_devopsagent.CfnAssociation.DynatraceConfigurationProperty |
TypeScript | aws-cdk-lib » aws_devopsagent » CfnAssociation » DynatraceConfigurationProperty |
Dynatrace monitoring 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';
const dynatraceConfigurationProperty: devopsagent.CfnAssociation.DynatraceConfigurationProperty = {
envId: 'envId',
// the properties below are optional
enableWebhookUpdates: false,
resources: ['resources'],
};
Properties
| Name | Type | Description |
|---|---|---|
| env | string | Dynatrace environment id. |
| enable | boolean | IResolvable | When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service. |
| resources? | string[] | List of Dynatrace resources to monitor. |
envId
Type:
string
Dynatrace environment id.
enableWebhookUpdates?
Type:
boolean | IResolvable
(optional)
When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.
resources?
Type:
string[]
(optional)
List of Dynatrace resources to monitor.

.NET
Go
Java
Python
TypeScript