Module Values.JobMemberSource

The details for a job member.

Sourcetype nonrec t = {
  1. farmId : FarmId.t option;
    (*

    The farm ID.

    *)
  2. queueId : QueueId.t option;
    (*

    The queue ID.

    *)
  3. jobId : JobId.t option;
    (*

    The job ID.

    *)
  4. principalId : IdentityCenterPrincipalId.t option;
    (*

    The principal ID of the job member.

    *)
  5. principalType : PrincipalType.t option;
    (*

    The principal type of the job member.

    *)
  6. identityStoreId : IdentityStoreId.t option;
    (*

    The identity store ID.

    *)
  7. membershipLevel : MembershipLevel.t option;
    (*

    The job member's membership level.

    *)
}
Sourceval make : ?farmId:??? -> ?queueId:??? -> ?jobId:??? -> ?principalId:??? -> ?principalType:??? -> ?identityStoreId:??? -> ?membershipLevel:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FarmId.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