Describe Analysis Schemes
cloudsearch_describe_analysis_schemes | R Documentation |
Gets the analysis schemes configured for a domain¶
Description¶
Gets the analysis schemes configured for a domain. An analysis scheme
defines language-specific text processing options for a text
field.
Can be limited to specific analysis schemes by name. By default, shows
all analysis schemes 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 Configuring Analysis Schemes in the Amazon
CloudSearch Developer Guide.
Usage¶
Arguments¶
DomainName
[required] The name of the domain you want to describe.
AnalysisSchemeNames
The analysis schemes you want to describe.
Deployed
Whether to display the deployed configuration (
true
) or include any pending changes (false
). Defaults tofalse
.
Value¶
A list with the following syntax:
list(
AnalysisSchemes = list(
list(
Options = list(
AnalysisSchemeName = "string",
AnalysisSchemeLanguage = "ar"|"bg"|"ca"|"cs"|"da"|"de"|"el"|"en"|"es"|"eu"|"fa"|"fi"|"fr"|"ga"|"gl"|"he"|"hi"|"hu"|"hy"|"id"|"it"|"ja"|"ko"|"lv"|"mul"|"nl"|"no"|"pt"|"ro"|"ru"|"sv"|"th"|"tr"|"zh-Hans"|"zh-Hant",
AnalysisOptions = list(
Synonyms = "string",
Stopwords = "string",
StemmingDictionary = "string",
JapaneseTokenizationDictionary = "string",
AlgorithmicStemming = "none"|"minimal"|"light"|"full"
)
),
Status = list(
CreationDate = as.POSIXct(
"2015-01-01"
),
UpdateDate = as.POSIXct(
"2015-01-01"
),
UpdateVersion = 123,
State = "RequiresIndexDocuments"|"Processing"|"Active"|"FailedToValidate",
PendingDeletion = TRUE|FALSE
)
)
)
)