{-# 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.ElasticsearchClusterConfig -- 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.ElasticsearchClusterConfig 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.ColdStorageOptions import Amazonka.ElasticSearch.Types.ESPartitionInstanceType import Amazonka.ElasticSearch.Types.ESWarmPartitionInstanceType import Amazonka.ElasticSearch.Types.ZoneAwarenessConfig import qualified Amazonka.Prelude as Prelude -- | Specifies the configuration for the domain cluster, such as the type and -- number of instances. -- -- /See:/ 'newElasticsearchClusterConfig' smart constructor. data ElasticsearchClusterConfig = ElasticsearchClusterConfig' { -- | Specifies the @ColdStorageOptions@ config for Elasticsearch Domain coldStorageOptions :: Prelude.Maybe ColdStorageOptions, -- | Total number of dedicated master nodes, active and on standby, for the -- cluster. dedicatedMasterCount :: Prelude.Maybe Prelude.Int, -- | A boolean value to indicate whether a dedicated master node is enabled. -- See -- -- for more information. dedicatedMasterEnabled :: Prelude.Maybe Prelude.Bool, -- | The instance type for a dedicated master node. dedicatedMasterType :: Prelude.Maybe ESPartitionInstanceType, -- | The number of instances in the specified domain cluster. instanceCount :: Prelude.Maybe Prelude.Int, -- | The instance type for an Elasticsearch cluster. UltraWarm instance types -- are not supported for data instances. instanceType :: Prelude.Maybe ESPartitionInstanceType, -- | The number of warm nodes in the cluster. warmCount :: Prelude.Maybe Prelude.Int, -- | True to enable warm storage. warmEnabled :: Prelude.Maybe Prelude.Bool, -- | The instance type for the Elasticsearch cluster\'s warm nodes. warmType :: Prelude.Maybe ESWarmPartitionInstanceType, -- | Specifies the zone awareness configuration for a domain when zone -- awareness is enabled. zoneAwarenessConfig :: Prelude.Maybe ZoneAwarenessConfig, -- | A boolean value to indicate whether zone awareness is enabled. See -- -- for more information. zoneAwarenessEnabled :: Prelude.Maybe Prelude.Bool } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ElasticsearchClusterConfig' 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: -- -- 'coldStorageOptions', 'elasticsearchClusterConfig_coldStorageOptions' - Specifies the @ColdStorageOptions@ config for Elasticsearch Domain -- -- 'dedicatedMasterCount', 'elasticsearchClusterConfig_dedicatedMasterCount' - Total number of dedicated master nodes, active and on standby, for the -- cluster. -- -- 'dedicatedMasterEnabled', 'elasticsearchClusterConfig_dedicatedMasterEnabled' - A boolean value to indicate whether a dedicated master node is enabled. -- See -- -- for more information. -- -- 'dedicatedMasterType', 'elasticsearchClusterConfig_dedicatedMasterType' - The instance type for a dedicated master node. -- -- 'instanceCount', 'elasticsearchClusterConfig_instanceCount' - The number of instances in the specified domain cluster. -- -- 'instanceType', 'elasticsearchClusterConfig_instanceType' - The instance type for an Elasticsearch cluster. UltraWarm instance types -- are not supported for data instances. -- -- 'warmCount', 'elasticsearchClusterConfig_warmCount' - The number of warm nodes in the cluster. -- -- 'warmEnabled', 'elasticsearchClusterConfig_warmEnabled' - True to enable warm storage. -- -- 'warmType', 'elasticsearchClusterConfig_warmType' - The instance type for the Elasticsearch cluster\'s warm nodes. -- -- 'zoneAwarenessConfig', 'elasticsearchClusterConfig_zoneAwarenessConfig' - Specifies the zone awareness configuration for a domain when zone -- awareness is enabled. -- -- 'zoneAwarenessEnabled', 'elasticsearchClusterConfig_zoneAwarenessEnabled' - A boolean value to indicate whether zone awareness is enabled. See -- -- for more information. newElasticsearchClusterConfig :: ElasticsearchClusterConfig newElasticsearchClusterConfig = ElasticsearchClusterConfig' { coldStorageOptions = Prelude.Nothing, dedicatedMasterCount = Prelude.Nothing, dedicatedMasterEnabled = Prelude.Nothing, dedicatedMasterType = Prelude.Nothing, instanceCount = Prelude.Nothing, instanceType = Prelude.Nothing, warmCount = Prelude.Nothing, warmEnabled = Prelude.Nothing, warmType = Prelude.Nothing, zoneAwarenessConfig = Prelude.Nothing, zoneAwarenessEnabled = Prelude.Nothing } -- | Specifies the @ColdStorageOptions@ config for Elasticsearch Domain elasticsearchClusterConfig_coldStorageOptions :: Lens.Lens' ElasticsearchClusterConfig (Prelude.Maybe ColdStorageOptions) elasticsearchClusterConfig_coldStorageOptions = Lens.lens (\ElasticsearchClusterConfig' {coldStorageOptions} -> coldStorageOptions) (\s@ElasticsearchClusterConfig' {} a -> s {coldStorageOptions = a} :: ElasticsearchClusterConfig) -- | Total number of dedicated master nodes, active and on standby, for the -- cluster. elasticsearchClusterConfig_dedicatedMasterCount :: Lens.Lens' ElasticsearchClusterConfig (Prelude.Maybe Prelude.Int) elasticsearchClusterConfig_dedicatedMasterCount = Lens.lens (\ElasticsearchClusterConfig' {dedicatedMasterCount} -> dedicatedMasterCount) (\s@ElasticsearchClusterConfig' {} a -> s {dedicatedMasterCount = a} :: ElasticsearchClusterConfig) -- | A boolean value to indicate whether a dedicated master node is enabled. -- See -- -- for more information. elasticsearchClusterConfig_dedicatedMasterEnabled :: Lens.Lens' ElasticsearchClusterConfig (Prelude.Maybe Prelude.Bool) elasticsearchClusterConfig_dedicatedMasterEnabled = Lens.lens (\ElasticsearchClusterConfig' {dedicatedMasterEnabled} -> dedicatedMasterEnabled) (\s@ElasticsearchClusterConfig' {} a -> s {dedicatedMasterEnabled = a} :: ElasticsearchClusterConfig) -- | The instance type for a dedicated master node. elasticsearchClusterConfig_dedicatedMasterType :: Lens.Lens' ElasticsearchClusterConfig (Prelude.Maybe ESPartitionInstanceType) elasticsearchClusterConfig_dedicatedMasterType = Lens.lens (\ElasticsearchClusterConfig' {dedicatedMasterType} -> dedicatedMasterType) (\s@ElasticsearchClusterConfig' {} a -> s {dedicatedMasterType = a} :: ElasticsearchClusterConfig) -- | The number of instances in the specified domain cluster. elasticsearchClusterConfig_instanceCount :: Lens.Lens' ElasticsearchClusterConfig (Prelude.Maybe Prelude.Int) elasticsearchClusterConfig_instanceCount = Lens.lens (\ElasticsearchClusterConfig' {instanceCount} -> instanceCount) (\s@ElasticsearchClusterConfig' {} a -> s {instanceCount = a} :: ElasticsearchClusterConfig) -- | The instance type for an Elasticsearch cluster. UltraWarm instance types -- are not supported for data instances. elasticsearchClusterConfig_instanceType :: Lens.Lens' ElasticsearchClusterConfig (Prelude.Maybe ESPartitionInstanceType) elasticsearchClusterConfig_instanceType = Lens.lens (\ElasticsearchClusterConfig' {instanceType} -> instanceType) (\s@ElasticsearchClusterConfig' {} a -> s {instanceType = a} :: ElasticsearchClusterConfig) -- | The number of warm nodes in the cluster. elasticsearchClusterConfig_warmCount :: Lens.Lens' ElasticsearchClusterConfig (Prelude.Maybe Prelude.Int) elasticsearchClusterConfig_warmCount = Lens.lens (\ElasticsearchClusterConfig' {warmCount} -> warmCount) (\s@ElasticsearchClusterConfig' {} a -> s {warmCount = a} :: ElasticsearchClusterConfig) -- | True to enable warm storage. elasticsearchClusterConfig_warmEnabled :: Lens.Lens' ElasticsearchClusterConfig (Prelude.Maybe Prelude.Bool) elasticsearchClusterConfig_warmEnabled = Lens.lens (\ElasticsearchClusterConfig' {warmEnabled} -> warmEnabled) (\s@ElasticsearchClusterConfig' {} a -> s {warmEnabled = a} :: ElasticsearchClusterConfig) -- | The instance type for the Elasticsearch cluster\'s warm nodes. elasticsearchClusterConfig_warmType :: Lens.Lens' ElasticsearchClusterConfig (Prelude.Maybe ESWarmPartitionInstanceType) elasticsearchClusterConfig_warmType = Lens.lens (\ElasticsearchClusterConfig' {warmType} -> warmType) (\s@ElasticsearchClusterConfig' {} a -> s {warmType = a} :: ElasticsearchClusterConfig) -- | Specifies the zone awareness configuration for a domain when zone -- awareness is enabled. elasticsearchClusterConfig_zoneAwarenessConfig :: Lens.Lens' ElasticsearchClusterConfig (Prelude.Maybe ZoneAwarenessConfig) elasticsearchClusterConfig_zoneAwarenessConfig = Lens.lens (\ElasticsearchClusterConfig' {zoneAwarenessConfig} -> zoneAwarenessConfig) (\s@ElasticsearchClusterConfig' {} a -> s {zoneAwarenessConfig = a} :: ElasticsearchClusterConfig) -- | A boolean value to indicate whether zone awareness is enabled. See -- -- for more information. elasticsearchClusterConfig_zoneAwarenessEnabled :: Lens.Lens' ElasticsearchClusterConfig (Prelude.Maybe Prelude.Bool) elasticsearchClusterConfig_zoneAwarenessEnabled = Lens.lens (\ElasticsearchClusterConfig' {zoneAwarenessEnabled} -> zoneAwarenessEnabled) (\s@ElasticsearchClusterConfig' {} a -> s {zoneAwarenessEnabled = a} :: ElasticsearchClusterConfig) instance Data.FromJSON ElasticsearchClusterConfig where parseJSON = Data.withObject "ElasticsearchClusterConfig" ( \x -> ElasticsearchClusterConfig' Prelude.<$> (x Data..:? "ColdStorageOptions") Prelude.<*> (x Data..:? "DedicatedMasterCount") Prelude.<*> (x Data..:? "DedicatedMasterEnabled") Prelude.<*> (x Data..:? "DedicatedMasterType") Prelude.<*> (x Data..:? "InstanceCount") Prelude.<*> (x Data..:? "InstanceType") Prelude.<*> (x Data..:? "WarmCount") Prelude.<*> (x Data..:? "WarmEnabled") Prelude.<*> (x Data..:? "WarmType") Prelude.<*> (x Data..:? "ZoneAwarenessConfig") Prelude.<*> (x Data..:? "ZoneAwarenessEnabled") ) instance Prelude.Hashable ElasticsearchClusterConfig where hashWithSalt _salt ElasticsearchClusterConfig' {..} = _salt `Prelude.hashWithSalt` coldStorageOptions `Prelude.hashWithSalt` dedicatedMasterCount `Prelude.hashWithSalt` dedicatedMasterEnabled `Prelude.hashWithSalt` dedicatedMasterType `Prelude.hashWithSalt` instanceCount `Prelude.hashWithSalt` instanceType `Prelude.hashWithSalt` warmCount `Prelude.hashWithSalt` warmEnabled `Prelude.hashWithSalt` warmType `Prelude.hashWithSalt` zoneAwarenessConfig `Prelude.hashWithSalt` zoneAwarenessEnabled instance Prelude.NFData ElasticsearchClusterConfig where rnf ElasticsearchClusterConfig' {..} = Prelude.rnf coldStorageOptions `Prelude.seq` Prelude.rnf dedicatedMasterCount `Prelude.seq` Prelude.rnf dedicatedMasterEnabled `Prelude.seq` Prelude.rnf dedicatedMasterType `Prelude.seq` Prelude.rnf instanceCount `Prelude.seq` Prelude.rnf instanceType `Prelude.seq` Prelude.rnf warmCount `Prelude.seq` Prelude.rnf warmEnabled `Prelude.seq` Prelude.rnf warmType `Prelude.seq` Prelude.rnf zoneAwarenessConfig `Prelude.seq` Prelude.rnf zoneAwarenessEnabled instance Data.ToJSON ElasticsearchClusterConfig where toJSON ElasticsearchClusterConfig' {..} = Data.object ( Prelude.catMaybes [ ("ColdStorageOptions" Data..=) Prelude.<$> coldStorageOptions, ("DedicatedMasterCount" Data..=) Prelude.<$> dedicatedMasterCount, ("DedicatedMasterEnabled" Data..=) Prelude.<$> dedicatedMasterEnabled, ("DedicatedMasterType" Data..=) Prelude.<$> dedicatedMasterType, ("InstanceCount" Data..=) Prelude.<$> instanceCount, ("InstanceType" Data..=) Prelude.<$> instanceType, ("WarmCount" Data..=) Prelude.<$> warmCount, ("WarmEnabled" Data..=) Prelude.<$> warmEnabled, ("WarmType" Data..=) Prelude.<$> warmType, ("ZoneAwarenessConfig" Data..=) Prelude.<$> zoneAwarenessConfig, ("ZoneAwarenessEnabled" Data..=) Prelude.<$> zoneAwarenessEnabled ] )