interface DynatraceConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsAgent.Mixins.CfnAssociationPropsMixin.DynatraceConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsagent/mixins#CfnAssociationPropsMixin_DynatraceConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.devopsagent.mixins.CfnAssociationPropsMixin.DynatraceConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_devopsagent.mixins.CfnAssociationPropsMixin.DynatraceConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_devopsagent » mixins » CfnAssociationPropsMixin » DynatraceConfigurationProperty |
Configuration for Dynatrace monitoring integration.
Defines the Dynatrace environment ID, list of resources to monitor, and webhook update settings required for the Agent Space to access metrics, traces, and logs from Dynatrace.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as devopsagent_mixins } from '@aws-cdk/mixins-preview/aws-devopsagent';
const dynatraceConfigurationProperty: devopsagent_mixins.CfnAssociationPropsMixin.DynatraceConfigurationProperty = {
enableWebhookUpdates: false,
envId: 'envId',
resources: ['resources'],
};
Properties
| Name | Type | Description |
|---|---|---|
| enable | boolean | IResolvable | When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service. |
| env | string | Dynatrace environment id. |
| resources? | string[] | List of Dynatrace resources to monitor. |
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.
envId?
Type:
string
(optional)
Dynatrace environment id.
resources?
Type:
string[]
(optional)
List of Dynatrace resources to monitor.

.NET
Go
Java
Python
TypeScript