Struct aws_sdk_cloudsearch::model::LiteralArrayOptions
source · #[non_exhaustive]pub struct LiteralArrayOptions { /* private fields */ }Expand description
Options for a field that contains an array of literal strings. Present if IndexFieldType specifies the field is of type literal-array. All options are enabled by default.
Implementations§
source§impl LiteralArrayOptions
impl LiteralArrayOptions
sourcepub fn default_value(&self) -> Option<&str>
pub fn default_value(&self) -> Option<&str>
A value to use for the field if the field isn’t specified for a document.
sourcepub fn source_fields(&self) -> Option<&str>
pub fn source_fields(&self) -> Option<&str>
A list of source fields to map to the field.
sourcepub fn facet_enabled(&self) -> Option<bool>
pub fn facet_enabled(&self) -> Option<bool>
Whether facet information can be returned for the field.
sourcepub fn search_enabled(&self) -> Option<bool>
pub fn search_enabled(&self) -> Option<bool>
Whether the contents of the field are searchable.
sourcepub fn return_enabled(&self) -> Option<bool>
pub fn return_enabled(&self) -> Option<bool>
Whether the contents of the field can be returned in the search results.
source§impl LiteralArrayOptions
impl LiteralArrayOptions
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture LiteralArrayOptions.
Trait Implementations§
source§impl Clone for LiteralArrayOptions
impl Clone for LiteralArrayOptions
source§fn clone(&self) -> LiteralArrayOptions
fn clone(&self) -> LiteralArrayOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for LiteralArrayOptions
impl Debug for LiteralArrayOptions
source§impl PartialEq<LiteralArrayOptions> for LiteralArrayOptions
impl PartialEq<LiteralArrayOptions> for LiteralArrayOptions
source§fn eq(&self, other: &LiteralArrayOptions) -> bool
fn eq(&self, other: &LiteralArrayOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.