{-# 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.ElasticSearch.Types.AdvancedOptionsStatus -- 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.ElasticSearch.Types.AdvancedOptionsStatus where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.ElasticSearch.Types.OptionStatus import qualified Amazonka.Prelude as Prelude -- | Status of the advanced options for the specified Elasticsearch domain. -- Currently, the following advanced options are available: -- -- - Option to allow references to indices in an HTTP request body. Must -- be @false@ when configuring access to individual sub-resources. By -- default, the value is @true@. See -- -- for more information. -- - Option to specify the percentage of heap space that is allocated to -- field data. By default, this setting is unbounded. -- -- For more information, see -- . -- -- /See:/ 'newAdvancedOptionsStatus' smart constructor. data AdvancedOptionsStatus = AdvancedOptionsStatus' { -- | Specifies the status of advanced options for the specified Elasticsearch -- domain. options :: Prelude.HashMap Prelude.Text Prelude.Text, -- | Specifies the status of @OptionStatus@ for advanced options for the -- specified Elasticsearch domain. status :: OptionStatus } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AdvancedOptionsStatus' 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: -- -- 'options', 'advancedOptionsStatus_options' - Specifies the status of advanced options for the specified Elasticsearch -- domain. -- -- 'status', 'advancedOptionsStatus_status' - Specifies the status of @OptionStatus@ for advanced options for the -- specified Elasticsearch domain. newAdvancedOptionsStatus :: -- | 'status' OptionStatus -> AdvancedOptionsStatus newAdvancedOptionsStatus pStatus_ = AdvancedOptionsStatus' { options = Prelude.mempty, status = pStatus_ } -- | Specifies the status of advanced options for the specified Elasticsearch -- domain. advancedOptionsStatus_options :: Lens.Lens' AdvancedOptionsStatus (Prelude.HashMap Prelude.Text Prelude.Text) advancedOptionsStatus_options = Lens.lens (\AdvancedOptionsStatus' {options} -> options) (\s@AdvancedOptionsStatus' {} a -> s {options = a} :: AdvancedOptionsStatus) Prelude.. Lens.coerced -- | Specifies the status of @OptionStatus@ for advanced options for the -- specified Elasticsearch domain. advancedOptionsStatus_status :: Lens.Lens' AdvancedOptionsStatus OptionStatus advancedOptionsStatus_status = Lens.lens (\AdvancedOptionsStatus' {status} -> status) (\s@AdvancedOptionsStatus' {} a -> s {status = a} :: AdvancedOptionsStatus) instance Data.FromJSON AdvancedOptionsStatus where parseJSON = Data.withObject "AdvancedOptionsStatus" ( \x -> AdvancedOptionsStatus' Prelude.<$> (x Data..:? "Options" Data..!= Prelude.mempty) Prelude.<*> (x Data..: "Status") ) instance Prelude.Hashable AdvancedOptionsStatus where hashWithSalt _salt AdvancedOptionsStatus' {..} = _salt `Prelude.hashWithSalt` options `Prelude.hashWithSalt` status instance Prelude.NFData AdvancedOptionsStatus where rnf AdvancedOptionsStatus' {..} = Prelude.rnf options `Prelude.seq` Prelude.rnf status