Module Values.GetSessionResponseApproverResponseSource

Contains details for an approver response in an approval session.

Sourcetype nonrec t = {
  1. approverId : ParticipantId.t option;
    (*

    ID for the approver.

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

    Amazon Resource Name (ARN) for the identity source. The identity source manages the user authentication for approvers.

    *)
  3. identityId : IdentityId.t option;
    (*

    ID for the identity source. The identity source manages the user authentication for approvers.

    *)
  4. response : SessionResponse.t option;
    (*

    Response to the operation request.

    *)
  5. responseTime : IsoTimestamp.t option;
    (*

    Timestamp when a approver responded to the operation request.

    *)
}
Sourceval make : ?approverId:??? -> ?identitySourceArn:??? -> ?identityId:??? -> ?response:??? -> ?responseTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ParticipantId.t | `Timestamp of IsoTimestamp.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