Struct aws_sdk_cloudsearch::model::TextArrayOptions [−][src]
#[non_exhaustive]pub struct TextArrayOptions {
pub default_value: Option<String>,
pub source_fields: Option<String>,
pub return_enabled: Option<bool>,
pub highlight_enabled: Option<bool>,
pub analysis_scheme: Option<String>,
}Expand description
Options for a field that contains an array of text strings. Present if IndexFieldType specifies the field is of type text-array. A text-array field is always searchable. All options are enabled by default.
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.default_value: Option<String>A value to use for the field if the field isn’t specified for a document.
source_fields: Option<String>A list of source fields to map to the field.
return_enabled: Option<bool>Whether the contents of the field can be returned in the search results.
highlight_enabled: Option<bool>Whether highlights can be returned for the field.
analysis_scheme: Option<String>The name of an analysis scheme for a text-array field.
Implementations
A value to use for the field if the field isn’t specified for a document.
A list of source fields to map to the field.
Whether the contents of the field can be returned in the search results.
Whether highlights can be returned for the field.
The name of an analysis scheme for a text-array field.
Creates a new builder-style object to manufacture TextArrayOptions
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for TextArrayOptions
impl Send for TextArrayOptions
impl Sync for TextArrayOptions
impl Unpin for TextArrayOptions
impl UnwindSafe for TextArrayOptions
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more