Module Values.ResourceV2Source

Contains information about the Amazon Web Services resource that is associated with the GuardDuty finding.

Sourcetype nonrec t = {
  1. uid : String_.t option;
    (*

    The unique identifier of the resource.

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

    The name of the resource.

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

    The Amazon Web Services account ID to which the resource belongs.

    *)
  4. resourceType : FindingResourceType.t option;
    (*

    The type of the Amazon Web Services resource.

    *)
  5. region : String_.t option;
    (*

    The Amazon Web Services Region where the resource belongs.

    *)
  6. service : String_.t option;
    (*

    The Amazon Web Services service of the resource.

    *)
  7. cloudPartition : String_.t option;
    (*

    The cloud partition within the Amazon Web Services Region to which the resource belongs.

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

    Contains information about the tags associated with the resource.

    *)
  9. data : ResourceData.t option;
    (*

    Contains information about the Amazon Web Services resource associated with the activity that prompted GuardDuty to generate a finding.

    *)
}
Sourceval make : ?uid:??? -> ?name:??? -> ?accountId:??? -> ?resourceType:??? -> ?region:??? -> ?service:??? -> ?cloudPartition:??? -> ?tags:??? -> ?data:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of Timestamp.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