[−][src]Struct rusoto_cloudsearch::IndexField
Configuration information for a field in the index, including its name, type, and options. The supported options depend on the IndexFieldType
.
Fields
date_array_options: Option<DateArrayOptions>
date_options: Option<DateOptions>
double_array_options: Option<DoubleArrayOptions>
double_options: Option<DoubleOptions>
index_field_name: String
A string that represents the name of an index field. CloudSearch supports regular index fields as well as dynamic fields. A dynamic field's name defines a pattern that begins or ends with a wildcard. Any document fields that don't map to a regular index field but do match a dynamic field's pattern are configured with the dynamic field's indexing options.
Regular field names begin with a letter and can contain the following characters: a-z (lowercase), 0-9, and _ (underscore). Dynamic field names must begin or end with a wildcard (*). The wildcard can also be the only character in a dynamic field name. Multiple wildcards, and wildcards embedded within a string are not supported.
The name score
is reserved and cannot be used as a field name. To reference a document's ID, you can use the name _id
.
index_field_type: String
int_array_options: Option<IntArrayOptions>
int_options: Option<IntOptions>
lat_lon_options: Option<LatLonOptions>
literal_array_options: Option<LiteralArrayOptions>
literal_options: Option<LiteralOptions>
text_array_options: Option<TextArrayOptions>
text_options: Option<TextOptions>
Trait Implementations
impl PartialEq<IndexField> for IndexField
[src]
fn eq(&self, other: &IndexField) -> bool
[src]
fn ne(&self, other: &IndexField) -> bool
[src]
impl Default for IndexField
[src]
fn default() -> IndexField
[src]
impl Clone for IndexField
[src]
fn clone(&self) -> IndexField
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for IndexField
[src]
Auto Trait Implementations
impl Send for IndexField
impl Sync for IndexField
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self