Module Values.ApiCallDetailsSource

Provides information about an API operation that an entity invoked for an affected resource.

Sourcetype nonrec t = {
  1. api : string option;
    (*

    The name of the operation that was invoked most recently and produced the finding.

    *)
  2. apiServiceName : string option;
    (*

    The URL of the Amazon Web Services service that provides the operation, for example: s3.amazonaws.com.

    *)
  3. firstSeen : string option;
    (*

    The first date and time, in UTC and extended ISO 8601 format, when any operation was invoked and produced the finding.

    *)
  4. lastSeen : string option;
    (*

    The most recent date and time, in UTC and extended ISO 8601 format, when the specified operation (api) was invoked and produced the finding.

    *)
}
Sourceval make : ?api:??? -> ?apiServiceName:??? -> ?firstSeen:??? -> ?lastSeen:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Timestamp of string ]) 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