paws.analytics (version 0.1.0)

cloudsearch_describe_index_fields: Gets information about the index fields configured for the search domain

Description

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.

Usage

cloudsearch_describe_index_fields(DomainName, FieldNames, Deployed)

Arguments

DomainName

[required] The name of the domain you want to describe.

FieldNames

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

Deployed

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

Request syntax

svc$describe_index_fields(
  DomainName = "string",
  FieldNames = list(
    "string"
  ),
  Deployed = TRUE|FALSE
)