{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.CloudSearch.Types.IntOptions -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.CloudSearch.Types.IntOptions where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude -- | Options for a 64-bit signed integer field. Present if @IndexFieldType@ -- specifies the field is of type @int@. All options are enabled by -- default. -- -- /See:/ 'newIntOptions' smart constructor. data IntOptions = IntOptions' { -- | A value to use for the field if the field isn\'t specified for a -- document. This can be important if you are using the field in an -- expression and that field is not present in every document. defaultValue :: Prelude.Maybe Prelude.Integer, -- | Whether facet information can be returned for the field. facetEnabled :: Prelude.Maybe Prelude.Bool, -- | Whether the contents of the field can be returned in the search results. returnEnabled :: Prelude.Maybe Prelude.Bool, -- | Whether the contents of the field are searchable. searchEnabled :: Prelude.Maybe Prelude.Bool, -- | Whether the field can be used to sort the search results. sortEnabled :: Prelude.Maybe Prelude.Bool, -- | The name of the source field to map to the field. sourceField :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'IntOptions' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'defaultValue', 'intOptions_defaultValue' - A value to use for the field if the field isn\'t specified for a -- document. This can be important if you are using the field in an -- expression and that field is not present in every document. -- -- 'facetEnabled', 'intOptions_facetEnabled' - Whether facet information can be returned for the field. -- -- 'returnEnabled', 'intOptions_returnEnabled' - Whether the contents of the field can be returned in the search results. -- -- 'searchEnabled', 'intOptions_searchEnabled' - Whether the contents of the field are searchable. -- -- 'sortEnabled', 'intOptions_sortEnabled' - Whether the field can be used to sort the search results. -- -- 'sourceField', 'intOptions_sourceField' - The name of the source field to map to the field. newIntOptions :: IntOptions newIntOptions = IntOptions' { defaultValue = Prelude.Nothing, facetEnabled = Prelude.Nothing, returnEnabled = Prelude.Nothing, searchEnabled = Prelude.Nothing, sortEnabled = Prelude.Nothing, sourceField = Prelude.Nothing } -- | A value to use for the field if the field isn\'t specified for a -- document. This can be important if you are using the field in an -- expression and that field is not present in every document. intOptions_defaultValue :: Lens.Lens' IntOptions (Prelude.Maybe Prelude.Integer) intOptions_defaultValue = Lens.lens (\IntOptions' {defaultValue} -> defaultValue) (\s@IntOptions' {} a -> s {defaultValue = a} :: IntOptions) -- | Whether facet information can be returned for the field. intOptions_facetEnabled :: Lens.Lens' IntOptions (Prelude.Maybe Prelude.Bool) intOptions_facetEnabled = Lens.lens (\IntOptions' {facetEnabled} -> facetEnabled) (\s@IntOptions' {} a -> s {facetEnabled = a} :: IntOptions) -- | Whether the contents of the field can be returned in the search results. intOptions_returnEnabled :: Lens.Lens' IntOptions (Prelude.Maybe Prelude.Bool) intOptions_returnEnabled = Lens.lens (\IntOptions' {returnEnabled} -> returnEnabled) (\s@IntOptions' {} a -> s {returnEnabled = a} :: IntOptions) -- | Whether the contents of the field are searchable. intOptions_searchEnabled :: Lens.Lens' IntOptions (Prelude.Maybe Prelude.Bool) intOptions_searchEnabled = Lens.lens (\IntOptions' {searchEnabled} -> searchEnabled) (\s@IntOptions' {} a -> s {searchEnabled = a} :: IntOptions) -- | Whether the field can be used to sort the search results. intOptions_sortEnabled :: Lens.Lens' IntOptions (Prelude.Maybe Prelude.Bool) intOptions_sortEnabled = Lens.lens (\IntOptions' {sortEnabled} -> sortEnabled) (\s@IntOptions' {} a -> s {sortEnabled = a} :: IntOptions) -- | The name of the source field to map to the field. intOptions_sourceField :: Lens.Lens' IntOptions (Prelude.Maybe Prelude.Text) intOptions_sourceField = Lens.lens (\IntOptions' {sourceField} -> sourceField) (\s@IntOptions' {} a -> s {sourceField = a} :: IntOptions) instance Data.FromXML IntOptions where parseXML x = IntOptions' Prelude.<$> (x Data..@? "DefaultValue") Prelude.<*> (x Data..@? "FacetEnabled") Prelude.<*> (x Data..@? "ReturnEnabled") Prelude.<*> (x Data..@? "SearchEnabled") Prelude.<*> (x Data..@? "SortEnabled") Prelude.<*> (x Data..@? "SourceField") instance Prelude.Hashable IntOptions where hashWithSalt _salt IntOptions' {..} = _salt `Prelude.hashWithSalt` defaultValue `Prelude.hashWithSalt` facetEnabled `Prelude.hashWithSalt` returnEnabled `Prelude.hashWithSalt` searchEnabled `Prelude.hashWithSalt` sortEnabled `Prelude.hashWithSalt` sourceField instance Prelude.NFData IntOptions where rnf IntOptions' {..} = Prelude.rnf defaultValue `Prelude.seq` Prelude.rnf facetEnabled `Prelude.seq` Prelude.rnf returnEnabled `Prelude.seq` Prelude.rnf searchEnabled `Prelude.seq` Prelude.rnf sortEnabled `Prelude.seq` Prelude.rnf sourceField instance Data.ToQuery IntOptions where toQuery IntOptions' {..} = Prelude.mconcat [ "DefaultValue" Data.=: defaultValue, "FacetEnabled" Data.=: facetEnabled, "ReturnEnabled" Data.=: returnEnabled, "SearchEnabled" Data.=: searchEnabled, "SortEnabled" Data.=: sortEnabled, "SourceField" Data.=: sourceField ]