Module Values.UpdateRootDomainUnitOwnerInputSource

Updates the owner of the root domain unit.

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

    The ID of the domain where the root domain unit owner is to be updated.

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

    The current owner of the root domain unit.

    *)
  3. newOwner : String_.t;
    (*

    The new owner of the root domain unit.

    *)
  4. clientToken : ClientToken.t option;
    (*

    A unique, case-sensitive identifier to ensure idempotency of the request. This field is automatically populated if not provided.

    *)
}
Sourceval context_ : string
Sourceval make : ?clientToken:??? -> domainIdentifier:DomainId.t -> currentOwner:UserIdentifier.t -> newOwner:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure 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