Module Values.DeleteAccessControlConfigurationRequestSource

Deletes an access control configuration that you created for your documents in an index. This includes user and group access information for your documents. This is useful for user context filtering, where search results are filtered based on the user or their group access to documents.

Sourcetype nonrec t = {
  1. indexId : IndexId.t;
    (*

    The identifier of the index for an access control configuration.

    *)
  2. id : AccessControlConfigurationId.t;
    (*

    The identifier of the access control configuration you want to delete.

    *)
}
Sourceval context_ : string
Sourceval make : indexId:IndexId.t -> id:AccessControlConfigurationId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IndexId.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