{-# 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.IoT.Types.AssetPropertyValue
-- 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.IoT.Types.AssetPropertyValue where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.IoT.Types.AssetPropertyTimestamp
import Amazonka.IoT.Types.AssetPropertyVariant
import qualified Amazonka.Prelude as Prelude

-- | An asset property value entry containing the following information.
--
-- /See:/ 'newAssetPropertyValue' smart constructor.
data AssetPropertyValue = AssetPropertyValue'
  { -- | Optional. A string that describes the quality of the value. Accepts
    -- substitution templates. Must be @GOOD@, @BAD@, or @UNCERTAIN@.
    AssetPropertyValue -> Maybe Text
quality :: Prelude.Maybe Prelude.Text,
    -- | The value of the asset property.
    AssetPropertyValue -> AssetPropertyVariant
value :: AssetPropertyVariant,
    -- | The asset property value timestamp.
    AssetPropertyValue -> AssetPropertyTimestamp
timestamp :: AssetPropertyTimestamp
  }
  deriving (AssetPropertyValue -> AssetPropertyValue -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AssetPropertyValue -> AssetPropertyValue -> Bool
$c/= :: AssetPropertyValue -> AssetPropertyValue -> Bool
== :: AssetPropertyValue -> AssetPropertyValue -> Bool
$c== :: AssetPropertyValue -> AssetPropertyValue -> Bool
Prelude.Eq, ReadPrec [AssetPropertyValue]
ReadPrec AssetPropertyValue
Int -> ReadS AssetPropertyValue
ReadS [AssetPropertyValue]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AssetPropertyValue]
$creadListPrec :: ReadPrec [AssetPropertyValue]
readPrec :: ReadPrec AssetPropertyValue
$creadPrec :: ReadPrec AssetPropertyValue
readList :: ReadS [AssetPropertyValue]
$creadList :: ReadS [AssetPropertyValue]
readsPrec :: Int -> ReadS AssetPropertyValue
$creadsPrec :: Int -> ReadS AssetPropertyValue
Prelude.Read, Int -> AssetPropertyValue -> ShowS
[AssetPropertyValue] -> ShowS
AssetPropertyValue -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AssetPropertyValue] -> ShowS
$cshowList :: [AssetPropertyValue] -> ShowS
show :: AssetPropertyValue -> String
$cshow :: AssetPropertyValue -> String
showsPrec :: Int -> AssetPropertyValue -> ShowS
$cshowsPrec :: Int -> AssetPropertyValue -> ShowS
Prelude.Show, forall x. Rep AssetPropertyValue x -> AssetPropertyValue
forall x. AssetPropertyValue -> Rep AssetPropertyValue x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AssetPropertyValue x -> AssetPropertyValue
$cfrom :: forall x. AssetPropertyValue -> Rep AssetPropertyValue x
Prelude.Generic)

-- |
-- Create a value of 'AssetPropertyValue' 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:
--
-- 'quality', 'assetPropertyValue_quality' - Optional. A string that describes the quality of the value. Accepts
-- substitution templates. Must be @GOOD@, @BAD@, or @UNCERTAIN@.
--
-- 'value', 'assetPropertyValue_value' - The value of the asset property.
--
-- 'timestamp', 'assetPropertyValue_timestamp' - The asset property value timestamp.
newAssetPropertyValue ::
  -- | 'value'
  AssetPropertyVariant ->
  -- | 'timestamp'
  AssetPropertyTimestamp ->
  AssetPropertyValue
newAssetPropertyValue :: AssetPropertyVariant
-> AssetPropertyTimestamp -> AssetPropertyValue
newAssetPropertyValue AssetPropertyVariant
pValue_ AssetPropertyTimestamp
pTimestamp_ =
  AssetPropertyValue'
    { $sel:quality:AssetPropertyValue' :: Maybe Text
quality = forall a. Maybe a
Prelude.Nothing,
      $sel:value:AssetPropertyValue' :: AssetPropertyVariant
value = AssetPropertyVariant
pValue_,
      $sel:timestamp:AssetPropertyValue' :: AssetPropertyTimestamp
timestamp = AssetPropertyTimestamp
pTimestamp_
    }

-- | Optional. A string that describes the quality of the value. Accepts
-- substitution templates. Must be @GOOD@, @BAD@, or @UNCERTAIN@.
assetPropertyValue_quality :: Lens.Lens' AssetPropertyValue (Prelude.Maybe Prelude.Text)
assetPropertyValue_quality :: Lens' AssetPropertyValue (Maybe Text)
assetPropertyValue_quality = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AssetPropertyValue' {Maybe Text
quality :: Maybe Text
$sel:quality:AssetPropertyValue' :: AssetPropertyValue -> Maybe Text
quality} -> Maybe Text
quality) (\s :: AssetPropertyValue
s@AssetPropertyValue' {} Maybe Text
a -> AssetPropertyValue
s {$sel:quality:AssetPropertyValue' :: Maybe Text
quality = Maybe Text
a} :: AssetPropertyValue)

-- | The value of the asset property.
assetPropertyValue_value :: Lens.Lens' AssetPropertyValue AssetPropertyVariant
assetPropertyValue_value :: Lens' AssetPropertyValue AssetPropertyVariant
assetPropertyValue_value = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AssetPropertyValue' {AssetPropertyVariant
value :: AssetPropertyVariant
$sel:value:AssetPropertyValue' :: AssetPropertyValue -> AssetPropertyVariant
value} -> AssetPropertyVariant
value) (\s :: AssetPropertyValue
s@AssetPropertyValue' {} AssetPropertyVariant
a -> AssetPropertyValue
s {$sel:value:AssetPropertyValue' :: AssetPropertyVariant
value = AssetPropertyVariant
a} :: AssetPropertyValue)

-- | The asset property value timestamp.
assetPropertyValue_timestamp :: Lens.Lens' AssetPropertyValue AssetPropertyTimestamp
assetPropertyValue_timestamp :: Lens' AssetPropertyValue AssetPropertyTimestamp
assetPropertyValue_timestamp = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AssetPropertyValue' {AssetPropertyTimestamp
timestamp :: AssetPropertyTimestamp
$sel:timestamp:AssetPropertyValue' :: AssetPropertyValue -> AssetPropertyTimestamp
timestamp} -> AssetPropertyTimestamp
timestamp) (\s :: AssetPropertyValue
s@AssetPropertyValue' {} AssetPropertyTimestamp
a -> AssetPropertyValue
s {$sel:timestamp:AssetPropertyValue' :: AssetPropertyTimestamp
timestamp = AssetPropertyTimestamp
a} :: AssetPropertyValue)

instance Data.FromJSON AssetPropertyValue where
  parseJSON :: Value -> Parser AssetPropertyValue
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"AssetPropertyValue"
      ( \Object
x ->
          Maybe Text
-> AssetPropertyVariant
-> AssetPropertyTimestamp
-> AssetPropertyValue
AssetPropertyValue'
            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
"quality")
            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
"value")
            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
"timestamp")
      )

instance Prelude.Hashable AssetPropertyValue where
  hashWithSalt :: Int -> AssetPropertyValue -> Int
hashWithSalt Int
_salt AssetPropertyValue' {Maybe Text
AssetPropertyTimestamp
AssetPropertyVariant
timestamp :: AssetPropertyTimestamp
value :: AssetPropertyVariant
quality :: Maybe Text
$sel:timestamp:AssetPropertyValue' :: AssetPropertyValue -> AssetPropertyTimestamp
$sel:value:AssetPropertyValue' :: AssetPropertyValue -> AssetPropertyVariant
$sel:quality:AssetPropertyValue' :: AssetPropertyValue -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
quality
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` AssetPropertyVariant
value
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` AssetPropertyTimestamp
timestamp

instance Prelude.NFData AssetPropertyValue where
  rnf :: AssetPropertyValue -> ()
rnf AssetPropertyValue' {Maybe Text
AssetPropertyTimestamp
AssetPropertyVariant
timestamp :: AssetPropertyTimestamp
value :: AssetPropertyVariant
quality :: Maybe Text
$sel:timestamp:AssetPropertyValue' :: AssetPropertyValue -> AssetPropertyTimestamp
$sel:value:AssetPropertyValue' :: AssetPropertyValue -> AssetPropertyVariant
$sel:quality:AssetPropertyValue' :: AssetPropertyValue -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
quality
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf AssetPropertyVariant
value
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf AssetPropertyTimestamp
timestamp

instance Data.ToJSON AssetPropertyValue where
  toJSON :: AssetPropertyValue -> Value
toJSON AssetPropertyValue' {Maybe Text
AssetPropertyTimestamp
AssetPropertyVariant
timestamp :: AssetPropertyTimestamp
value :: AssetPropertyVariant
quality :: Maybe Text
$sel:timestamp:AssetPropertyValue' :: AssetPropertyValue -> AssetPropertyTimestamp
$sel:value:AssetPropertyValue' :: AssetPropertyValue -> AssetPropertyVariant
$sel:quality:AssetPropertyValue' :: AssetPropertyValue -> Maybe Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"quality" 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 Text
quality,
            forall a. a -> Maybe a
Prelude.Just (Key
"value" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= AssetPropertyVariant
value),
            forall a. a -> Maybe a
Prelude.Just (Key
"timestamp" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..= AssetPropertyTimestamp
timestamp)
          ]
      )