Module Values.GetApprovalTeamResponseApproverSource

Contains details for an approver.

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

    ID for the approver.

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

    Timestamp when the approver responded to an approval team invitation.

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

    ID for the user.

    *)
  4. primaryIdentitySourceArn : String_.t option;
    (*

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

    *)
  5. primaryIdentityStatus : IdentityStatus.t option;
    (*

    Status for the identity source. For example, if an approver has accepted a team invitation with a user authentication method managed by the identity source.

    *)
  6. lastActivity : ApproverLastActivity.t option;
    (*

    Last Activity performed by the approver.

    *)
  7. lastActivityTime : IsoTimestamp.t option;
    (*

    Timestamp when the approver last responded to an operation or invitation request.

    *)
  8. pendingBaselineSessionArn : SessionArn.t option;
    (*

    Amazon Resource Name (ARN) for the pending baseline session.

    *)
  9. mfaMethods : MfaMethods.t option;
    (*

    Multi-factor authentication configuration for the approver

    *)
}
Sourceval make : ?approverId:??? -> ?responseTime:??? -> ?primaryIdentityId:??? -> ?primaryIdentitySourceArn:??? -> ?primaryIdentityStatus:??? -> ?lastActivity:??? -> ?lastActivityTime:??? -> ?pendingBaselineSessionArn:??? -> ?mfaMethods:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string ]) list ] list | `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