Interface DevOpsGuruNewAnomalyAssociation.MetricQuery

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

@Stability(Experimental) public static interface DevOpsGuruNewAnomalyAssociation.MetricQuery extends software.amazon.jsii.JsiiSerializable
(experimental) Type definition for MetricQuery.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.devopsguru.events.*;
 MetricQuery metricQuery = MetricQuery.builder()
         .groupBy(GroupBy.builder()
                 .dimensions(List.of("dimensions"))
                 .group(List.of("group"))
                 .build())
         .metric(List.of("metric"))
         .build();
 
  • Method Details