{-# 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 #-}
module Amazonka.DeviceFarm.Types.Sample where
import qualified Amazonka.Core as Core
import Amazonka.DeviceFarm.Types.SampleType
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data Sample = Sample'
{
Sample -> Maybe Text
arn :: Prelude.Maybe Prelude.Text,
Sample -> Maybe Text
url :: Prelude.Maybe Prelude.Text,
Sample -> Maybe SampleType
type' :: Prelude.Maybe SampleType
}
deriving (Sample -> Sample -> Bool
(Sample -> Sample -> Bool)
-> (Sample -> Sample -> Bool) -> Eq Sample
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: Sample -> Sample -> Bool
$c/= :: Sample -> Sample -> Bool
== :: Sample -> Sample -> Bool
$c== :: Sample -> Sample -> Bool
Prelude.Eq, ReadPrec [Sample]
ReadPrec Sample
Int -> ReadS Sample
ReadS [Sample]
(Int -> ReadS Sample)
-> ReadS [Sample]
-> ReadPrec Sample
-> ReadPrec [Sample]
-> Read Sample
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [Sample]
$creadListPrec :: ReadPrec [Sample]
readPrec :: ReadPrec Sample
$creadPrec :: ReadPrec Sample
readList :: ReadS [Sample]
$creadList :: ReadS [Sample]
readsPrec :: Int -> ReadS Sample
$creadsPrec :: Int -> ReadS Sample
Prelude.Read, Int -> Sample -> ShowS
[Sample] -> ShowS
Sample -> String
(Int -> Sample -> ShowS)
-> (Sample -> String) -> ([Sample] -> ShowS) -> Show Sample
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [Sample] -> ShowS
$cshowList :: [Sample] -> ShowS
show :: Sample -> String
$cshow :: Sample -> String
showsPrec :: Int -> Sample -> ShowS
$cshowsPrec :: Int -> Sample -> ShowS
Prelude.Show, (forall x. Sample -> Rep Sample x)
-> (forall x. Rep Sample x -> Sample) -> Generic Sample
forall x. Rep Sample x -> Sample
forall x. Sample -> Rep Sample x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep Sample x -> Sample
$cfrom :: forall x. Sample -> Rep Sample x
Prelude.Generic)
newSample ::
Sample
newSample :: Sample
newSample =
Sample' :: Maybe Text -> Maybe Text -> Maybe SampleType -> Sample
Sample'
{ $sel:arn:Sample' :: Maybe Text
arn = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:url:Sample' :: Maybe Text
url = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:type':Sample' :: Maybe SampleType
type' = Maybe SampleType
forall a. Maybe a
Prelude.Nothing
}
sample_arn :: Lens.Lens' Sample (Prelude.Maybe Prelude.Text)
sample_arn :: (Maybe Text -> f (Maybe Text)) -> Sample -> f Sample
sample_arn = (Sample -> Maybe Text)
-> (Sample -> Maybe Text -> Sample)
-> Lens Sample Sample (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Sample' {Maybe Text
arn :: Maybe Text
$sel:arn:Sample' :: Sample -> Maybe Text
arn} -> Maybe Text
arn) (\s :: Sample
s@Sample' {} Maybe Text
a -> Sample
s {$sel:arn:Sample' :: Maybe Text
arn = Maybe Text
a} :: Sample)
sample_url :: Lens.Lens' Sample (Prelude.Maybe Prelude.Text)
sample_url :: (Maybe Text -> f (Maybe Text)) -> Sample -> f Sample
sample_url = (Sample -> Maybe Text)
-> (Sample -> Maybe Text -> Sample)
-> Lens Sample Sample (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Sample' {Maybe Text
url :: Maybe Text
$sel:url:Sample' :: Sample -> Maybe Text
url} -> Maybe Text
url) (\s :: Sample
s@Sample' {} Maybe Text
a -> Sample
s {$sel:url:Sample' :: Maybe Text
url = Maybe Text
a} :: Sample)
sample_type :: Lens.Lens' Sample (Prelude.Maybe SampleType)
sample_type :: (Maybe SampleType -> f (Maybe SampleType)) -> Sample -> f Sample
sample_type = (Sample -> Maybe SampleType)
-> (Sample -> Maybe SampleType -> Sample)
-> Lens Sample Sample (Maybe SampleType) (Maybe SampleType)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\Sample' {Maybe SampleType
type' :: Maybe SampleType
$sel:type':Sample' :: Sample -> Maybe SampleType
type'} -> Maybe SampleType
type') (\s :: Sample
s@Sample' {} Maybe SampleType
a -> Sample
s {$sel:type':Sample' :: Maybe SampleType
type' = Maybe SampleType
a} :: Sample)
instance Core.FromJSON Sample where
parseJSON :: Value -> Parser Sample
parseJSON =
String -> (Object -> Parser Sample) -> Value -> Parser Sample
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
String
"Sample"
( \Object
x ->
Maybe Text -> Maybe Text -> Maybe SampleType -> Sample
Sample'
(Maybe Text -> Maybe Text -> Maybe SampleType -> Sample)
-> Parser (Maybe Text)
-> Parser (Maybe Text -> Maybe SampleType -> Sample)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"arn")
Parser (Maybe Text -> Maybe SampleType -> Sample)
-> Parser (Maybe Text) -> Parser (Maybe SampleType -> Sample)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe Text)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"url")
Parser (Maybe SampleType -> Sample)
-> Parser (Maybe SampleType) -> Parser Sample
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser (Maybe SampleType)
forall a. FromJSON a => Object -> Text -> Parser (Maybe a)
Core..:? Text
"type")
)
instance Prelude.Hashable Sample
instance Prelude.NFData Sample