Gets information about the index fields configured for the search domain.
Can be limited to specific fields by name. By default, shows all fields and includes any pending changes to the configuration. Set the Deployed option to true to show the active configuration and exclude pending changes. For more information,
see Getting Domain Information in the Amazon CloudSearch Developer Guide.
example
Use a bare-bones client and the command you need to make an API call.
Gets information about the index fields configured for the search domain. Can be limited to specific fields by name. By default, shows all fields and includes any pending changes to the configuration. Set the
Deployed
option totrue
to show the active configuration and exclude pending changes. For more information, see Getting Domain Information in the Amazon CloudSearch Developer Guide.Use a bare-bones client and the command you need to make an API call.
import { CloudSearchClient, DescribeIndexFieldsCommand } from "@aws-sdk/client-cloudsearch"; // ES Modules import // const { CloudSearchClient, DescribeIndexFieldsCommand } = require("@aws-sdk/client-cloudsearch"); // CommonJS import const client = new CloudSearchClient(config); const command = new DescribeIndexFieldsCommand(input); const response = await client.send(command);
DescribeIndexFieldsCommandInput for command's
input
shape.DescribeIndexFieldsCommandOutput for command's
response
shape.config for CloudSearchClient's
config
shape.