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.LiteralArrayOptions

Description

 
Synopsis

Documentation

data LiteralArrayOptions Source #

Options for a field that contains an array of literal strings. Present if IndexFieldType specifies the field is of type literal-array. All options are enabled by default.

See: newLiteralArrayOptions smart constructor.

Constructors

LiteralArrayOptions' 

Fields

Instances

Instances details
Eq LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

Read LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

Show LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

Generic LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

Associated Types

type Rep LiteralArrayOptions :: Type -> Type #

NFData LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

Methods

rnf :: LiteralArrayOptions -> () #

Hashable LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

ToQuery LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

FromXML LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

type Rep LiteralArrayOptions Source # 
Instance details

Defined in Amazonka.CloudSearch.Types.LiteralArrayOptions

type Rep LiteralArrayOptions = D1 ('MetaData "LiteralArrayOptions" "Amazonka.CloudSearch.Types.LiteralArrayOptions" "libZSservicesZSamazonka-cloudsearchZSamazonka-cloudsearch" 'False) (C1 ('MetaCons "LiteralArrayOptions'" '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 Text))))))

newLiteralArrayOptions :: LiteralArrayOptions Source #

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

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

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

$sel:searchEnabled:LiteralArrayOptions', literalArrayOptions_searchEnabled - Whether the contents of the field are searchable.

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

literalArrayOptions_sourceFields :: Lens' LiteralArrayOptions (Maybe Text) Source #

A list of source fields to map to the field.

literalArrayOptions_returnEnabled :: Lens' LiteralArrayOptions (Maybe Bool) Source #

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

literalArrayOptions_facetEnabled :: Lens' LiteralArrayOptions (Maybe Bool) Source #

Whether facet information can be returned for the field.

literalArrayOptions_searchEnabled :: Lens' LiteralArrayOptions (Maybe Bool) Source #

Whether the contents of the field are searchable.

literalArrayOptions_defaultValue :: Lens' LiteralArrayOptions (Maybe Text) Source #

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