MetricQueryType🔗
Definition🔗
package com.grafana.foundation.cloudwatch.MetricQueryType;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonValue;
@JsonFormat(shape = JsonFormat.Shape.OBJECT)
public enum MetricQueryType {
    SEARCH(0),
    INSIGHTS(1);
    private final Integer value;
    private MetricQueryType(Integer value) {
        this.value = value;
    }
    @JsonValue
    public Integer Value() {
        return value;
    }
}