Module Values.UserSource

The user on the Amazon Chime account.

Sourcetype nonrec t = {
  1. userId : String_.t option;
    (*

    The user ID.

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

    The Amazon Chime account ID.

    *)
  3. primaryEmail : EmailAddress.t option;
    (*

    The primary email address of the user.

    *)
  4. primaryProvisionedNumber : SensitiveString.t option;
    (*

    The primary phone number associated with the user.

    *)
  5. displayName : SensitiveString.t option;
    (*

    The display name of the user.

    *)
  6. licenseType : License.t option;
    (*

    The license type for the user.

    *)
  7. userType : UserType.t option;
    (*

    The user type.

    *)
  8. userRegistrationStatus : RegistrationStatus.t option;
    (*

    The user registration status.

    *)
  9. userInvitationStatus : InviteStatus.t option;
    (*

    The user invite status.

    *)
  10. registeredOn : Iso8601Timestamp.t option;
    (*

    Date and time when the user is registered, in ISO 8601 format.

    *)
  11. invitedOn : Iso8601Timestamp.t option;
    (*

    Date and time when the user is invited to the Amazon Chime account, in ISO 8601 format.

    *)
  12. alexaForBusinessMetadata : AlexaForBusinessMetadata.t option;
    (*

    The Alexa for Business metadata.

    *)
  13. personalPIN : String_.t option;
    (*

    The user's personal meeting PIN.

    *)
}
Sourceval make : ?userId:??? -> ?accountId:??? -> ?primaryEmail:??? -> ?primaryProvisionedNumber:??? -> ?displayName:??? -> ?licenseType:??? -> ?userType:??? -> ?userRegistrationStatus:??? -> ?userInvitationStatus:??? -> ?registeredOn:??? -> ?invitedOn:??? -> ?alexaForBusinessMetadata:??? -> ?personalPIN:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Boolean of Boolean.t | `String of SensitiveString.t ]) list | `Timestamp of Iso8601Timestamp.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