{-# 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.HoneyCode.Types.VariableValue
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.HoneyCode.Types.VariableValue where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude

-- | The input variables to the app to be used by the InvokeScreenAutomation
-- action request.
--
-- /See:/ 'newVariableValue' smart constructor.
data VariableValue = VariableValue'
  { -- | Raw value of the variable.
    VariableValue -> Text
rawValue :: Prelude.Text
  }
  deriving (VariableValue -> VariableValue -> Bool
(VariableValue -> VariableValue -> Bool)
-> (VariableValue -> VariableValue -> Bool) -> Eq VariableValue
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: VariableValue -> VariableValue -> Bool
$c/= :: VariableValue -> VariableValue -> Bool
== :: VariableValue -> VariableValue -> Bool
$c== :: VariableValue -> VariableValue -> Bool
Prelude.Eq, Int -> VariableValue -> ShowS
[VariableValue] -> ShowS
VariableValue -> String
(Int -> VariableValue -> ShowS)
-> (VariableValue -> String)
-> ([VariableValue] -> ShowS)
-> Show VariableValue
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [VariableValue] -> ShowS
$cshowList :: [VariableValue] -> ShowS
show :: VariableValue -> String
$cshow :: VariableValue -> String
showsPrec :: Int -> VariableValue -> ShowS
$cshowsPrec :: Int -> VariableValue -> ShowS
Prelude.Show, (forall x. VariableValue -> Rep VariableValue x)
-> (forall x. Rep VariableValue x -> VariableValue)
-> Generic VariableValue
forall x. Rep VariableValue x -> VariableValue
forall x. VariableValue -> Rep VariableValue x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep VariableValue x -> VariableValue
$cfrom :: forall x. VariableValue -> Rep VariableValue x
Prelude.Generic)

-- |
-- Create a value of 'VariableValue' 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:
--
-- 'rawValue', 'variableValue_rawValue' - Raw value of the variable.
newVariableValue ::
  -- | 'rawValue'
  Prelude.Text ->
  VariableValue
newVariableValue :: Text -> VariableValue
newVariableValue Text
pRawValue_ =
  VariableValue' :: Text -> VariableValue
VariableValue' {$sel:rawValue:VariableValue' :: Text
rawValue = Text
pRawValue_}

-- | Raw value of the variable.
variableValue_rawValue :: Lens.Lens' VariableValue Prelude.Text
variableValue_rawValue :: (Text -> f Text) -> VariableValue -> f VariableValue
variableValue_rawValue = (VariableValue -> Text)
-> (VariableValue -> Text -> VariableValue)
-> Lens VariableValue VariableValue Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VariableValue' {Text
rawValue :: Text
$sel:rawValue:VariableValue' :: VariableValue -> Text
rawValue} -> Text
rawValue) (\s :: VariableValue
s@VariableValue' {} Text
a -> VariableValue
s {$sel:rawValue:VariableValue' :: Text
rawValue = Text
a} :: VariableValue)

instance Prelude.Hashable VariableValue

instance Prelude.NFData VariableValue

instance Core.ToJSON VariableValue where
  toJSON :: VariableValue -> Value
toJSON VariableValue' {Text
rawValue :: Text
$sel:rawValue:VariableValue' :: VariableValue -> Text
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"rawValue" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
rawValue)]
      )