Class IndexField
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<IndexField.Builder,
IndexField>
Configuration information for a field in the index, including its name, type, and options. The supported options
depend on the IndexFieldType
.
- See Also:
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionstatic IndexField.Builder
builder()
final DateArrayOptions
Returns the value of the DateArrayOptions property for this object.final DateOptions
Returns the value of the DateOptions property for this object.final DoubleArrayOptions
Returns the value of the DoubleArrayOptions property for this object.final DoubleOptions
Returns the value of the DoubleOptions property for this object.final boolean
final boolean
equalsBySdkFields
(Object obj) Indicates whether some other object is "equal to" this one by SDK fields.final <T> Optional
<T> getValueForField
(String fieldName, Class<T> clazz) final int
hashCode()
final String
A string that represents the name of an index field.final IndexFieldType
Returns the value of the IndexFieldType property for this object.final String
Returns the value of the IndexFieldType property for this object.final IntArrayOptions
Returns the value of the IntArrayOptions property for this object.final IntOptions
Returns the value of the IntOptions property for this object.final LatLonOptions
Returns the value of the LatLonOptions property for this object.final LiteralArrayOptions
Returns the value of the LiteralArrayOptions property for this object.final LiteralOptions
Returns the value of the LiteralOptions property for this object.static Class
<? extends IndexField.Builder> final TextArrayOptions
Returns the value of the TextArrayOptions property for this object.final TextOptions
Returns the value of the TextOptions property for this object.Take this object and create a builder that contains all of the current property values of this object.final String
toString()
Returns a string representation of this object.Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
Method Details
-
indexFieldName
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
.- Returns:
- 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
.
-
indexFieldType
Returns the value of the IndexFieldType property for this object.If the service returns an enum value that is not available in the current SDK version,
indexFieldType
will returnIndexFieldType.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromindexFieldTypeAsString()
.- Returns:
- The value of the IndexFieldType property for this object.
- See Also:
-
indexFieldTypeAsString
Returns the value of the IndexFieldType property for this object.If the service returns an enum value that is not available in the current SDK version,
indexFieldType
will returnIndexFieldType.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromindexFieldTypeAsString()
.- Returns:
- The value of the IndexFieldType property for this object.
- See Also:
-
intOptions
Returns the value of the IntOptions property for this object.- Returns:
- The value of the IntOptions property for this object.
-
doubleOptions
Returns the value of the DoubleOptions property for this object.- Returns:
- The value of the DoubleOptions property for this object.
-
literalOptions
Returns the value of the LiteralOptions property for this object.- Returns:
- The value of the LiteralOptions property for this object.
-
textOptions
Returns the value of the TextOptions property for this object.- Returns:
- The value of the TextOptions property for this object.
-
dateOptions
Returns the value of the DateOptions property for this object.- Returns:
- The value of the DateOptions property for this object.
-
latLonOptions
Returns the value of the LatLonOptions property for this object.- Returns:
- The value of the LatLonOptions property for this object.
-
intArrayOptions
Returns the value of the IntArrayOptions property for this object.- Returns:
- The value of the IntArrayOptions property for this object.
-
doubleArrayOptions
Returns the value of the DoubleArrayOptions property for this object.- Returns:
- The value of the DoubleArrayOptions property for this object.
-
literalArrayOptions
Returns the value of the LiteralArrayOptions property for this object.- Returns:
- The value of the LiteralArrayOptions property for this object.
-
textArrayOptions
Returns the value of the TextArrayOptions property for this object.- Returns:
- The value of the TextArrayOptions property for this object.
-
dateArrayOptions
Returns the value of the DateArrayOptions property for this object.- Returns:
- The value of the DateArrayOptions property for this object.
-
toBuilder
Description copied from interface:ToCopyableBuilder
Take this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilder
in interfaceToCopyableBuilder<IndexField.Builder,
IndexField> - Returns:
- a builder for type T
-
builder
-
serializableBuilderClass
-
hashCode
-
equals
-
equalsBySdkFields
Description copied from interface:SdkPojo
Indicates whether some other object is "equal to" this one by SDK fields. An SDK field is a modeled, non-inherited field in anSdkPojo
class, and is generated based on a service model.If an
SdkPojo
class does not have any inherited fields,equalsBySdkFields
andequals
are essentially the same.- Specified by:
equalsBySdkFields
in interfaceSdkPojo
- Parameters:
obj
- the object to be compared with- Returns:
- true if the other object equals to this object by sdk fields, false otherwise.
-
toString
-
getValueForField
-
sdkFields
-
sdkFieldNameToField
- Specified by:
sdkFieldNameToField
in interfaceSdkPojo
- Returns:
- The mapping between the field name and its corresponding field.
-