Module Values.DescribeIndexFieldsRequestSource

Container for the parameters to the DescribeIndexFields operation. Specifies the name of the domain you want to describe. To restrict the response to particular index fields, specify the names of the index fields you want to describe. To show the active configuration and exclude any pending changes, set the Deployed option to true.

Sourcetype nonrec t = {
  1. domainName : DomainName.t;
    (*

    The name of the domain you want to describe.

    *)
  2. fieldNames : DynamicFieldNameList.t option;
    (*

    A list of the index fields you want to describe. If not specified, information is returned for all configured index fields.

    *)
  3. deployed : Boolean.t option;
    (*

    Whether to display the deployed configuration (true) or include any pending changes (false). Defaults to false.

    *)
}
Sourceval context_ : string
Sourceval make : ?fieldNames:??? -> ?deployed:??? -> domainName:DomainName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of DynamicFieldName.t ] list | `String of DomainName.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