Delete Suggester
cloudsearch_delete_suggester | R Documentation |
Deletes a suggester¶
Description¶
Deletes a suggester. For more information, see Getting Search Suggestions in the Amazon CloudSearch Developer Guide.
Usage¶
Arguments¶
DomainName
[required]
SuggesterName
[required] Specifies the name of the suggester you want to delete.
Value¶
A list with the following syntax:
list(
Suggester = list(
Options = list(
SuggesterName = "string",
DocumentSuggesterOptions = list(
SourceField = "string",
FuzzyMatching = "none"|"low"|"high",
SortExpression = "string"
)
),
Status = list(
CreationDate = as.POSIXct(
"2015-01-01"
),
UpdateDate = as.POSIXct(
"2015-01-01"
),
UpdateVersion = 123,
State = "RequiresIndexDocuments"|"Processing"|"Active"|"FailedToValidate",
PendingDeletion = TRUE|FALSE
)
)
)