Class: Aws::CloudSearch::Types::DefineAnalysisSchemeRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudSearch::Types::DefineAnalysisSchemeRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudsearch/types.rb
Overview
Container for the parameters to the ‘DefineAnalysisScheme` operation. Specifies the name of the domain you want to update and the analysis scheme configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#analysis_scheme ⇒ Types::AnalysisScheme
Configuration information for an analysis scheme.
-
#domain_name ⇒ String
A string that represents the name of a domain.
Instance Attribute Details
#analysis_scheme ⇒ Types::AnalysisScheme
Configuration information for an analysis scheme. Each analysis scheme has a unique name and specifies the language of the text to be processed. The following options can be configured for an analysis scheme: ‘Synonyms`, `Stopwords`, `StemmingDictionary`, `JapaneseTokenizationDictionary` and `AlgorithmicStemming`.
361 362 363 364 365 366 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 361 class DefineAnalysisSchemeRequest < Struct.new( :domain_name, :analysis_scheme) SENSITIVE = [] include Aws::Structure end |
#domain_name ⇒ String
A string that represents the name of a domain. Domain names are unique across the domains owned by an account within an AWS region. Domain names start with a letter or number and can contain the following characters: a-z (lowercase), 0-9, and - (hyphen).
361 362 363 364 365 366 |
# File 'lib/aws-sdk-cloudsearch/types.rb', line 361 class DefineAnalysisSchemeRequest < Struct.new( :domain_name, :analysis_scheme) SENSITIVE = [] include Aws::Structure end |