libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CloudSearch.Types.IntArrayOptions

Description

 
Synopsis

Documentation

data IntArrayOptions Source #

Options for a field that contains an array of 64-bit signed integers. Present if IndexFieldType specifies the field is of type int-array. All options are enabled by default.

See: newIntArrayOptions smart constructor.

Constructors

IntArrayOptions' 

Fields

Instances

Instances details
Eq IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

Read IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

Show IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

Generic IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

Associated Types

type Rep IntArrayOptions :: Type -> Type #

NFData IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

Methods

rnf :: IntArrayOptions -> () #

Hashable IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

ToQuery IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

FromXML IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

type Rep IntArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.IntArrayOptions

type Rep IntArrayOptions = D1 ('MetaData "IntArrayOptions" "Amazonka.CloudSearch.Types.IntArrayOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "IntArrayOptions'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "sourceFields") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "returnEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "facetEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: (S1 ('MetaSel ('Just "searchEnabled") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Integer))))))

newIntArrayOptions :: IntArrayOptions Source #

Create a value of IntArrayOptions 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:sourceFields:IntArrayOptions', intArrayOptions_sourceFields - A list of source fields to map to the field.

$sel:returnEnabled:IntArrayOptions', intArrayOptions_returnEnabled - Whether the contents of the field can be returned in the search results.

$sel:facetEnabled:IntArrayOptions', intArrayOptions_facetEnabled - Whether facet information can be returned for the field.

$sel:searchEnabled:IntArrayOptions', intArrayOptions_searchEnabled - Whether the contents of the field are searchable.

$sel:defaultValue:IntArrayOptions', intArrayOptions_defaultValue - A value to use for the field if the field isn't specified for a document.

intArrayOptions_sourceFields :: Lens' IntArrayOptions (Maybe Text) Source #

A list of source fields to map to the field.

intArrayOptions_returnEnabled :: Lens' IntArrayOptions (Maybe Bool) Source #

Whether the contents of the field can be returned in the search results.

intArrayOptions_facetEnabled :: Lens' IntArrayOptions (Maybe Bool) Source #

Whether facet information can be returned for the field.

intArrayOptions_searchEnabled :: Lens' IntArrayOptions (Maybe Bool) Source #

Whether the contents of the field are searchable.

intArrayOptions_defaultValue :: Lens' IntArrayOptions (Maybe Integer) Source #

A value to use for the field if the field isn't specified for a document.