Module Values.ExternalMetricStatusSource

Describes Compute Optimizer's integration status with your chosen external metric provider. For example, Datadog.

Sourcetype nonrec t = {
  1. statusCode : ExternalMetricStatusCode.t option;
    (*

    The status code for Compute Optimizer's integration with an external metrics provider.

    *)
  2. statusReason : ExternalMetricStatusReason.t option;
    (*

    The reason for Compute Optimizer's integration status with your external metric provider.

    *)
}
Sourceval make : ?statusCode:??? -> ?statusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ExternalMetricStatusReason.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t