Module Values.CreateUserProfileInputSource

Creates a 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 created.

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

    The identifier of the user for which the user profile is created.

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

    The user type of the user for which the user profile is created.

    *)
  4. sessionName : CreateUserProfileInputSessionNameString.t option;
    (*

    The session name for IAM role sessions.

    *)
  5. clientToken : String_.t option;
    (*

    A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?userType:??? -> ?sessionName:??? -> ?clientToken:??? -> domainIdentifier:DomainId.t -> userIdentifier:UserIdentifier.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