Module Values.ResourceResultSource

Provides comprehensive details about an Amazon Web Services resource and its associated security findings.

Sourcetype nonrec t = {
  1. resourceGuid : NonEmptyString.t option;
    (*

    The global identifier used to identify a resource.

    *)
  2. resourceId : NonEmptyString.t option;
    (*

    The unique identifier for a resource.

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

    The Amazon Web Services account that owns the resource.

    *)
  4. region : NonEmptyString.t option;
    (*

    The Amazon Web Services Region where the resource is located.

    *)
  5. resourceCategory : ResourceCategory.t option;
    (*

    The grouping where the resource belongs.

    *)
  6. resourceType : NonEmptyString.t option;
    (*

    The type of resource.

    *)
  7. resourceName : NonEmptyString.t option;
    (*

    The name of the resource.

    *)
  8. resourceCreationTimeDt : NonEmptyString.t option;
    (*

    The time when the resource was created.

    *)
  9. resourceDetailCaptureTimeDt : NonEmptyString.t option;
    (*

    The timestamp when information about the resource was captured.

    *)
  10. findingsSummary : ResourceFindingsSummaryList.t option;
    (*

    An aggregated view of security findings associated with a resource.

    *)
  11. resourceTags : ResourceTagList.t option;
    (*

    The key-value pairs associated with a resource.

    *)
  12. resourceConfig : ResourceConfig.t option;
    (*

    The configuration details of a resource.

    *)
}
Sourceval make : ?resourceGuid:??? -> ?resourceId:??? -> ?accountId:??? -> ?region:??? -> ?resourceCategory:??? -> ?resourceType:??? -> ?resourceName:??? -> ?resourceCreationTimeDt:??? -> ?resourceDetailCaptureTimeDt:??? -> ?findingsSummary:??? -> ?resourceTags:??? -> ?resourceConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Integer of Integer.t | `String of NonEmptyString.t | `Structure of (string * [> `Integer of Integer.t ]) list ]) list ] list | `String of NonEmptyString.t | `Structure of 'a 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