Module Values.RemoveEntityOwnerInputSource

Removes an owner from an entity.

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

    The ID of the domain where you want to remove an owner from an entity.

    *)
  2. entityType : DataZoneEntityType.t;
    (*

    The type of the entity from which you want to remove an owner.

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

    The ID of the entity from which you want to remove an owner.

    *)
  4. owner : OwnerProperties.t;
    (*

    The owner that you want to remove from an entity.

    *)
  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 : ?clientToken:??? -> domainIdentifier:DomainId.t -> entityType:DataZoneEntityType.t -> entityIdentifier:String_.t -> owner:OwnerProperties.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.t | `Structure of (string * [> `Structure of (string * [> `String of UserIdentifier.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