Module Values.FindingActionSource

Provides information about an action that occurred for a resource and produced a policy finding.

Sourcetype nonrec t = {
  1. actionType : FindingActionType.t option;
    (*

    The type of action that occurred for the affected resource. This value is typically AWS_API_CALL, which indicates that an entity invoked an API operation for the resource.

    *)
  2. apiCallDetails : ApiCallDetails.t option;
    (*

    The invocation details of the API operation that an entity invoked for the affected resource, if the value for the actionType property is AWS_API_CALL.

    *)
}
Sourceval make : ?actionType:??? -> ?apiCallDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `String of string | `Timestamp of string ]) 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