Module Values.ApprovalSource

Returns information about a specific approval on a pull request.

Sourcetype nonrec t = {
  1. userArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the user.

    *)
  2. approvalState : ApprovalState.t option;
    (*

    The state of the approval, APPROVE or REVOKE. REVOKE states are not stored.

    *)
}
Sourceval make : ?userArn:??? -> ?approvalState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Arn.t ]) 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