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
Dynatrace monitoring configuration.

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: