Struct aws_sdk_cloudsearch::types::AnalysisSchemeStatus
source · #[non_exhaustive]pub struct AnalysisSchemeStatus {
pub options: Option<AnalysisScheme>,
pub status: Option<OptionStatus>,
}Expand description
The status and configuration of an AnalysisScheme.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.options: Option<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.
status: Option<OptionStatus>The status of domain configuration option.
Implementations§
source§impl AnalysisSchemeStatus
impl AnalysisSchemeStatus
sourcepub fn options(&self) -> Option<&AnalysisScheme>
pub fn options(&self) -> Option<&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.
sourcepub fn status(&self) -> Option<&OptionStatus>
pub fn status(&self) -> Option<&OptionStatus>
The status of domain configuration option.
source§impl AnalysisSchemeStatus
impl AnalysisSchemeStatus
sourcepub fn builder() -> AnalysisSchemeStatusBuilder
pub fn builder() -> AnalysisSchemeStatusBuilder
Creates a new builder-style object to manufacture AnalysisSchemeStatus.
Trait Implementations§
source§impl Clone for AnalysisSchemeStatus
impl Clone for AnalysisSchemeStatus
source§fn clone(&self) -> AnalysisSchemeStatus
fn clone(&self) -> AnalysisSchemeStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AnalysisSchemeStatus
impl Debug for AnalysisSchemeStatus
source§impl PartialEq for AnalysisSchemeStatus
impl PartialEq for AnalysisSchemeStatus
source§fn eq(&self, other: &AnalysisSchemeStatus) -> bool
fn eq(&self, other: &AnalysisSchemeStatus) -> bool
self and other values to be equal, and is used
by ==.