Interface CfnAssociationPropsMixin.DynatraceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAssociationPropsMixin.DynatraceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnAssociationPropsMixin
@Stability(Stable)
public static interface CfnAssociationPropsMixin.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.cfnpropertymixins.services.devopsagent.*;
DynatraceConfigurationProperty dynatraceConfigurationProperty = DynatraceConfigurationProperty.builder()
.enableWebhookUpdates(false)
.envId("envId")
.resources(List.of("resources"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAssociationPropsMixin.DynatraceConfigurationPropertystatic final classAn implementation forCfnAssociationPropsMixin.DynatraceConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnableWebhookUpdates
When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.Returns union: either
BooleanorIResolvable- See Also:
-
getEnvId
Dynatrace environment id.- See Also:
-
getResources
List of Dynatrace resources to monitor.- See Also:
-
builder
-