Module Values.ResourceSource

Details about the resource involved in a finding.

Sourcetype nonrec t = {
  1. details : ResourceDetails.t option;
    (*

    An object that contains details about the resource involved in a finding.

    *)
  2. id : ResourceId.t option;
    (*

    The ID of the resource.

    *)
  3. tags : Tags.t option;
    (*

    The tags attached to the resource.

    *)
  4. type_ : Type.t option;
    (*

    The type of resource.

    *)
}
Sourceval make : ?details:??? -> ?id:??? -> ?tags:??? -> ?type_:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ResourceId.t | `Structure of (string * [> `Structure of (string * [> `List of [> `String of ImageTag.t ] list | `Long of InUseCount.t | `String of Arch.t | `Timestamp of Date.t ]) list ]) 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