{-# 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.OpenSearch.Types.CompatibleVersionsMap -- 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.OpenSearch.Types.CompatibleVersionsMap 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 -- | A map of OpenSearch or Elasticsearch versions and the versions you can -- upgrade them to. -- -- /See:/ 'newCompatibleVersionsMap' smart constructor. data CompatibleVersionsMap = CompatibleVersionsMap' { -- | The current version that the OpenSearch Service domain is running. sourceVersion :: Prelude.Maybe Prelude.Text, -- | The possible versions that you can upgrade the domain to. targetVersions :: Prelude.Maybe [Prelude.Text] } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CompatibleVersionsMap' 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: -- -- 'sourceVersion', 'compatibleVersionsMap_sourceVersion' - The current version that the OpenSearch Service domain is running. -- -- 'targetVersions', 'compatibleVersionsMap_targetVersions' - The possible versions that you can upgrade the domain to. newCompatibleVersionsMap :: CompatibleVersionsMap newCompatibleVersionsMap = CompatibleVersionsMap' { sourceVersion = Prelude.Nothing, targetVersions = Prelude.Nothing } -- | The current version that the OpenSearch Service domain is running. compatibleVersionsMap_sourceVersion :: Lens.Lens' CompatibleVersionsMap (Prelude.Maybe Prelude.Text) compatibleVersionsMap_sourceVersion = Lens.lens (\CompatibleVersionsMap' {sourceVersion} -> sourceVersion) (\s@CompatibleVersionsMap' {} a -> s {sourceVersion = a} :: CompatibleVersionsMap) -- | The possible versions that you can upgrade the domain to. compatibleVersionsMap_targetVersions :: Lens.Lens' CompatibleVersionsMap (Prelude.Maybe [Prelude.Text]) compatibleVersionsMap_targetVersions = Lens.lens (\CompatibleVersionsMap' {targetVersions} -> targetVersions) (\s@CompatibleVersionsMap' {} a -> s {targetVersions = a} :: CompatibleVersionsMap) Prelude.. Lens.mapping Lens.coerced instance Data.FromJSON CompatibleVersionsMap where parseJSON = Data.withObject "CompatibleVersionsMap" ( \x -> CompatibleVersionsMap' Prelude.<$> (x Data..:? "SourceVersion") Prelude.<*> ( x Data..:? "TargetVersions" Data..!= Prelude.mempty ) ) instance Prelude.Hashable CompatibleVersionsMap where hashWithSalt _salt CompatibleVersionsMap' {..} = _salt `Prelude.hashWithSalt` sourceVersion `Prelude.hashWithSalt` targetVersions instance Prelude.NFData CompatibleVersionsMap where rnf CompatibleVersionsMap' {..} = Prelude.rnf sourceVersion `Prelude.seq` Prelude.rnf targetVersions