Deletes a suggester. For more information, see Getting Search Suggestions in the Amazon CloudSearch Developer Guide.
cloudsearch_delete_suggester(DomainName, SuggesterName)[required]
[required] Specifies the name of the suggester you want to delete.
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
)
)
)
svc$delete_suggester( DomainName = "string", SuggesterName = "string" )