Module Values.InsightResourceDetailSource

Returns information about the resource being evaluated.

Sourcetype nonrec t = {
  1. insightStatus : InsightStatus.t option;
    (*

    An object containing more detail on the status of the insight resource.

    *)
  2. kubernetesResourceUri : String_.t option;
    (*

    The Kubernetes resource URI if applicable.

    *)
  3. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) if applicable.

    *)
}
Sourceval make : ?insightStatus:??? -> ?kubernetesResourceUri:??? -> ?arn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list ]) 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