Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DescribeIndexFieldsRequest

import type { DescribeIndexFieldsRequest } from "https://aws-api.deno.dev/v0.3/services/cloudsearch.ts?docs=full";

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.

interface DescribeIndexFieldsRequest {
Deployed?: boolean | null;
DomainName: string;
FieldNames?: string[] | null;
}

§Properties

§
Deployed?: boolean | null
[src]

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

§
DomainName: string
[src]

The name of the domain you want to describe.

§
FieldNames?: string[] | null
[src]

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