| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.CloudSearch.Types.DoubleArrayOptions
Description
Synopsis
- data DoubleArrayOptions = DoubleArrayOptions' {}
- newDoubleArrayOptions :: DoubleArrayOptions
- doubleArrayOptions_defaultValue :: Lens' DoubleArrayOptions (Maybe Double)
- doubleArrayOptions_facetEnabled :: Lens' DoubleArrayOptions (Maybe Bool)
- doubleArrayOptions_returnEnabled :: Lens' DoubleArrayOptions (Maybe Bool)
- doubleArrayOptions_searchEnabled :: Lens' DoubleArrayOptions (Maybe Bool)
- doubleArrayOptions_sourceFields :: Lens' DoubleArrayOptions (Maybe Text)
Documentation
data DoubleArrayOptions Source #
Options for a field that contains an array of double-precision 64-bit
floating point values. Present if IndexFieldType specifies the field
is of type double-array. All options are enabled by default.
See: newDoubleArrayOptions smart constructor.
Constructors
| DoubleArrayOptions' | |
Fields
| |
Instances
newDoubleArrayOptions :: DoubleArrayOptions Source #
Create a value of DoubleArrayOptions with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:defaultValue:DoubleArrayOptions', doubleArrayOptions_defaultValue - A value to use for the field if the field isn't specified for a
document.
$sel:facetEnabled:DoubleArrayOptions', doubleArrayOptions_facetEnabled - Whether facet information can be returned for the field.
$sel:returnEnabled:DoubleArrayOptions', doubleArrayOptions_returnEnabled - Whether the contents of the field can be returned in the search results.
$sel:searchEnabled:DoubleArrayOptions', doubleArrayOptions_searchEnabled - Whether the contents of the field are searchable.
$sel:sourceFields:DoubleArrayOptions', doubleArrayOptions_sourceFields - A list of source fields to map to the field.
doubleArrayOptions_defaultValue :: Lens' DoubleArrayOptions (Maybe Double) Source #
A value to use for the field if the field isn't specified for a document.
doubleArrayOptions_facetEnabled :: Lens' DoubleArrayOptions (Maybe Bool) Source #
Whether facet information can be returned for the field.
doubleArrayOptions_returnEnabled :: Lens' DoubleArrayOptions (Maybe Bool) Source #
Whether the contents of the field can be returned in the search results.
doubleArrayOptions_searchEnabled :: Lens' DoubleArrayOptions (Maybe Bool) Source #
Whether the contents of the field are searchable.
doubleArrayOptions_sourceFields :: Lens' DoubleArrayOptions (Maybe Text) Source #
A list of source fields to map to the field.