{-# 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.EMRServerless.Types.Configuration
-- 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.EMRServerless.Types.Configuration 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 configuration specification to be used when provisioning an
-- application. A configuration consists of a classification, properties,
-- and optional nested configurations. A classification refers to an
-- application-specific configuration file. Properties are the settings you
-- want to change in that file.
--
-- /See:/ 'newConfiguration' smart constructor.
data Configuration = Configuration'
  { -- | A list of additional configurations to apply within a configuration
    -- object.
    Configuration -> Maybe [Configuration]
configurations :: Prelude.Maybe [Configuration],
    -- | A set of properties specified within a configuration classification.
    Configuration -> Maybe (Sensitive (HashMap Text Text))
properties :: Prelude.Maybe (Data.Sensitive (Prelude.HashMap Prelude.Text Prelude.Text)),
    -- | The classification within a configuration.
    Configuration -> Text
classification :: Prelude.Text
  }
  deriving (Configuration -> Configuration -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Configuration -> Configuration -> Bool
$c/= :: Configuration -> Configuration -> Bool
== :: Configuration -> Configuration -> Bool
$c== :: Configuration -> Configuration -> Bool
Prelude.Eq, Int -> Configuration -> ShowS
[Configuration] -> ShowS
Configuration -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Configuration] -> ShowS
$cshowList :: [Configuration] -> ShowS
show :: Configuration -> String
$cshow :: Configuration -> String
showsPrec :: Int -> Configuration -> ShowS
$cshowsPrec :: Int -> Configuration -> ShowS
Prelude.Show, forall x. Rep Configuration x -> Configuration
forall x. Configuration -> Rep Configuration x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep Configuration x -> Configuration
$cfrom :: forall x. Configuration -> Rep Configuration x
Prelude.Generic)

-- |
-- Create a value of 'Configuration' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'configurations', 'configuration_configurations' - A list of additional configurations to apply within a configuration
-- object.
--
-- 'properties', 'configuration_properties' - A set of properties specified within a configuration classification.
--
-- 'classification', 'configuration_classification' - The classification within a configuration.
newConfiguration ::
  -- | 'classification'
  Prelude.Text ->
  Configuration
newConfiguration :: Text -> Configuration
newConfiguration Text
pClassification_ =
  Configuration'
    { $sel:configurations:Configuration' :: Maybe [Configuration]
configurations = forall a. Maybe a
Prelude.Nothing,
      $sel:properties:Configuration' :: Maybe (Sensitive (HashMap Text Text))
properties = forall a. Maybe a
Prelude.Nothing,
      $sel:classification:Configuration' :: Text
classification = Text
pClassification_
    }

-- | A list of additional configurations to apply within a configuration
-- object.
configuration_configurations :: Lens.Lens' Configuration (Prelude.Maybe [Configuration])
configuration_configurations :: Lens' Configuration (Maybe [Configuration])
configuration_configurations = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Configuration' {Maybe [Configuration]
configurations :: Maybe [Configuration]
$sel:configurations:Configuration' :: Configuration -> Maybe [Configuration]
configurations} -> Maybe [Configuration]
configurations) (\s :: Configuration
s@Configuration' {} Maybe [Configuration]
a -> Configuration
s {$sel:configurations:Configuration' :: Maybe [Configuration]
configurations = Maybe [Configuration]
a} :: Configuration) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | A set of properties specified within a configuration classification.
configuration_properties :: Lens.Lens' Configuration (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
configuration_properties :: Lens' Configuration (Maybe (HashMap Text Text))
configuration_properties = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Configuration' {Maybe (Sensitive (HashMap Text Text))
properties :: Maybe (Sensitive (HashMap Text Text))
$sel:properties:Configuration' :: Configuration -> Maybe (Sensitive (HashMap Text Text))
properties} -> Maybe (Sensitive (HashMap Text Text))
properties) (\s :: Configuration
s@Configuration' {} Maybe (Sensitive (HashMap Text Text))
a -> Configuration
s {$sel:properties:Configuration' :: Maybe (Sensitive (HashMap Text Text))
properties = Maybe (Sensitive (HashMap Text Text))
a} :: Configuration) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping (forall a. Iso' (Sensitive a) a
Data._Sensitive forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced)

-- | The classification within a configuration.
configuration_classification :: Lens.Lens' Configuration Prelude.Text
configuration_classification :: Lens' Configuration Text
configuration_classification = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Configuration' {Text
classification :: Text
$sel:classification:Configuration' :: Configuration -> Text
classification} -> Text
classification) (\s :: Configuration
s@Configuration' {} Text
a -> Configuration
s {$sel:classification:Configuration' :: Text
classification = Text
a} :: Configuration)

instance Data.FromJSON Configuration where
  parseJSON :: Value -> Parser Configuration
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"Configuration"
      ( \Object
x ->
          Maybe [Configuration]
-> Maybe (Sensitive (HashMap Text Text)) -> Text -> Configuration
Configuration'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"configurations" forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty)
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"properties" forall a. Parser (Maybe a) -> a -> Parser a
Data..!= forall a. Monoid a => a
Prelude.mempty)
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser a
Data..: Key
"classification")
      )

instance Prelude.Hashable Configuration where
  hashWithSalt :: Int -> Configuration -> Int
hashWithSalt Int
_salt Configuration' {Maybe [Configuration]
Maybe (Sensitive (HashMap Text Text))
Text
classification :: Text
properties :: Maybe (Sensitive (HashMap Text Text))
configurations :: Maybe [Configuration]
$sel:classification:Configuration' :: Configuration -> Text
$sel:properties:Configuration' :: Configuration -> Maybe (Sensitive (HashMap Text Text))
$sel:configurations:Configuration' :: Configuration -> Maybe [Configuration]
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [Configuration]
configurations
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (Sensitive (HashMap Text Text))
properties
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
classification

instance Prelude.NFData Configuration where
  rnf :: Configuration -> ()
rnf Configuration' {Maybe [Configuration]
Maybe (Sensitive (HashMap Text Text))
Text
classification :: Text
properties :: Maybe (Sensitive (HashMap Text Text))
configurations :: Maybe [Configuration]
$sel:classification:Configuration' :: Configuration -> Text
$sel:properties:Configuration' :: Configuration -> Maybe (Sensitive (HashMap Text Text))
$sel:configurations:Configuration' :: Configuration -> Maybe [Configuration]
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe [Configuration]
configurations
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (Sensitive (HashMap Text Text))
properties
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
classification

instance Data.ToJSON Configuration where
  toJSON :: Configuration -> Value
toJSON Configuration' {Maybe [Configuration]
Maybe (Sensitive (HashMap Text Text))
Text
classification :: Text
properties :: Maybe (Sensitive (HashMap Text Text))
configurations :: Maybe [Configuration]
$sel:classification:Configuration' :: Configuration -> Text
$sel:properties:Configuration' :: Configuration -> Maybe (Sensitive (HashMap Text Text))
$sel:configurations:Configuration' :: Configuration -> Maybe [Configuration]
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"configurations" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=)
              forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Configuration]
configurations,
            (Key
"properties" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Sensitive (HashMap Text Text))
properties,
            forall a. a -> Maybe a
Prelude.Just
              (Key
"classification" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= Text
classification)
          ]
      )