Module Values.UserProfileSummarySource

The details of the user profile.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
    (*

    The ID of the Amazon DataZone domain of the user profile.

    *)
  2. id : UserProfileId.t option;
    (*

    The ID of the user profile.

    *)
  3. type_ : UserProfileType.t option;
    (*

    The type of the user profile.

    *)
  4. status : UserProfileStatus.t option;
    (*

    The status of the user profile.

    *)
  5. details : UserProfileDetails.t option;
    (*

    The details of the user profile.

    *)
}
Sourceval make : ?domainId:??? -> ?id:??? -> ?type_:??? -> ?status:??? -> ?details:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.t | `Structure of (string * [> `Structure of (string * [> `String of String_.t ]) list ]) list ]) 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