Module Values.CreateDomainUnitInputSource

Creates a domain unit in Amazon DataZone.

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

    The ID of the domain where you want to crate a domain unit.

    *)
  2. name : DomainUnitName.t;
    (*

    The name of the domain unit.

    *)
  3. parentDomainUnitIdentifier : DomainUnitId.t;
    (*

    The ID of the parent domain unit.

    *)
  4. description : DomainUnitDescription.t option;
    (*

    The description of the domain unit.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?clientToken:??? -> domainIdentifier:DomainId.t -> name:DomainUnitName.t -> parentDomainUnitIdentifier:DomainUnitId.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