Interface CfnAssociation.DynatraceConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAssociation.DynatraceConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnAssociation

@Stability(Stable) public static interface CfnAssociation.DynatraceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.devopsagent.*;
 DynatraceConfigurationProperty dynatraceConfigurationProperty = DynatraceConfigurationProperty.builder()
         .envId("envId")
         // the properties below are optional
         .enableWebhookUpdates(false)
         .resources(List.of("resources"))
         .build();
 

See Also: