Module Values.UpdateUserProfileInputSource

Updates the specified user profile in Amazon DataZone.

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

    The identifier of the Amazon DataZone domain in which a user profile is updated.

    *)
  2. userIdentifier : UserIdentifier.t;
    (*

    The identifier of the user whose user profile is to be updated.

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

    The type of the user profile that are to be updated.

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

    The status of the user profile that are to be updated.

    *)
  5. sessionName : UpdateUserProfileInputSessionNameString.t option;
    (*

    The session name for IAM role sessions.

    *)
}
Sourceval context_ : string
Sourceval make : ?type_:??? -> ?sessionName:??? -> domainIdentifier:DomainId.t -> userIdentifier:UserIdentifier.t -> status:UserProfileStatus.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.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