{-# 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.AppMesh.Types.VirtualGatewayRef where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data VirtualGatewayRef = VirtualGatewayRef'
{
VirtualGatewayRef -> Text
arn :: Prelude.Text,
VirtualGatewayRef -> POSIX
createdAt :: Core.POSIX,
VirtualGatewayRef -> POSIX
lastUpdatedAt :: Core.POSIX,
VirtualGatewayRef -> Text
meshName :: Prelude.Text,
VirtualGatewayRef -> Text
meshOwner :: Prelude.Text,
VirtualGatewayRef -> Text
resourceOwner :: Prelude.Text,
VirtualGatewayRef -> Integer
version :: Prelude.Integer,
VirtualGatewayRef -> Text
virtualGatewayName :: Prelude.Text
}
deriving (VirtualGatewayRef -> VirtualGatewayRef -> Bool
(VirtualGatewayRef -> VirtualGatewayRef -> Bool)
-> (VirtualGatewayRef -> VirtualGatewayRef -> Bool)
-> Eq VirtualGatewayRef
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: VirtualGatewayRef -> VirtualGatewayRef -> Bool
$c/= :: VirtualGatewayRef -> VirtualGatewayRef -> Bool
== :: VirtualGatewayRef -> VirtualGatewayRef -> Bool
$c== :: VirtualGatewayRef -> VirtualGatewayRef -> Bool
Prelude.Eq, ReadPrec [VirtualGatewayRef]
ReadPrec VirtualGatewayRef
Int -> ReadS VirtualGatewayRef
ReadS [VirtualGatewayRef]
(Int -> ReadS VirtualGatewayRef)
-> ReadS [VirtualGatewayRef]
-> ReadPrec VirtualGatewayRef
-> ReadPrec [VirtualGatewayRef]
-> Read VirtualGatewayRef
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [VirtualGatewayRef]
$creadListPrec :: ReadPrec [VirtualGatewayRef]
readPrec :: ReadPrec VirtualGatewayRef
$creadPrec :: ReadPrec VirtualGatewayRef
readList :: ReadS [VirtualGatewayRef]
$creadList :: ReadS [VirtualGatewayRef]
readsPrec :: Int -> ReadS VirtualGatewayRef
$creadsPrec :: Int -> ReadS VirtualGatewayRef
Prelude.Read, Int -> VirtualGatewayRef -> ShowS
[VirtualGatewayRef] -> ShowS
VirtualGatewayRef -> String
(Int -> VirtualGatewayRef -> ShowS)
-> (VirtualGatewayRef -> String)
-> ([VirtualGatewayRef] -> ShowS)
-> Show VirtualGatewayRef
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [VirtualGatewayRef] -> ShowS
$cshowList :: [VirtualGatewayRef] -> ShowS
show :: VirtualGatewayRef -> String
$cshow :: VirtualGatewayRef -> String
showsPrec :: Int -> VirtualGatewayRef -> ShowS
$cshowsPrec :: Int -> VirtualGatewayRef -> ShowS
Prelude.Show, (forall x. VirtualGatewayRef -> Rep VirtualGatewayRef x)
-> (forall x. Rep VirtualGatewayRef x -> VirtualGatewayRef)
-> Generic VirtualGatewayRef
forall x. Rep VirtualGatewayRef x -> VirtualGatewayRef
forall x. VirtualGatewayRef -> Rep VirtualGatewayRef x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep VirtualGatewayRef x -> VirtualGatewayRef
$cfrom :: forall x. VirtualGatewayRef -> Rep VirtualGatewayRef x
Prelude.Generic)
newVirtualGatewayRef ::
Prelude.Text ->
Prelude.UTCTime ->
Prelude.UTCTime ->
Prelude.Text ->
Prelude.Text ->
Prelude.Text ->
Prelude.Integer ->
Prelude.Text ->
VirtualGatewayRef
newVirtualGatewayRef :: Text
-> UTCTime
-> UTCTime
-> Text
-> Text
-> Text
-> Integer
-> Text
-> VirtualGatewayRef
newVirtualGatewayRef
Text
pArn_
UTCTime
pCreatedAt_
UTCTime
pLastUpdatedAt_
Text
pMeshName_
Text
pMeshOwner_
Text
pResourceOwner_
Integer
pVersion_
Text
pVirtualGatewayName_ =
VirtualGatewayRef' :: Text
-> POSIX
-> POSIX
-> Text
-> Text
-> Text
-> Integer
-> Text
-> VirtualGatewayRef
VirtualGatewayRef'
{ $sel:arn:VirtualGatewayRef' :: Text
arn = Text
pArn_,
$sel:createdAt:VirtualGatewayRef' :: POSIX
createdAt = Tagged UTCTime (Identity UTCTime) -> Tagged POSIX (Identity POSIX)
forall (a :: Format). Iso' (Time a) UTCTime
Core._Time (Tagged UTCTime (Identity UTCTime)
-> Tagged POSIX (Identity POSIX))
-> UTCTime -> POSIX
forall t b. AReview t b -> b -> t
Lens.# UTCTime
pCreatedAt_,
$sel:lastUpdatedAt:VirtualGatewayRef' :: POSIX
lastUpdatedAt = Tagged UTCTime (Identity UTCTime) -> Tagged POSIX (Identity POSIX)
forall (a :: Format). Iso' (Time a) UTCTime
Core._Time (Tagged UTCTime (Identity UTCTime)
-> Tagged POSIX (Identity POSIX))
-> UTCTime -> POSIX
forall t b. AReview t b -> b -> t
Lens.# UTCTime
pLastUpdatedAt_,
$sel:meshName:VirtualGatewayRef' :: Text
meshName = Text
pMeshName_,
$sel:meshOwner:VirtualGatewayRef' :: Text
meshOwner = Text
pMeshOwner_,
$sel:resourceOwner:VirtualGatewayRef' :: Text
resourceOwner = Text
pResourceOwner_,
$sel:version:VirtualGatewayRef' :: Integer
version = Integer
pVersion_,
$sel:virtualGatewayName:VirtualGatewayRef' :: Text
virtualGatewayName = Text
pVirtualGatewayName_
}
virtualGatewayRef_arn :: Lens.Lens' VirtualGatewayRef Prelude.Text
virtualGatewayRef_arn :: (Text -> f Text) -> VirtualGatewayRef -> f VirtualGatewayRef
virtualGatewayRef_arn = (VirtualGatewayRef -> Text)
-> (VirtualGatewayRef -> Text -> VirtualGatewayRef)
-> Lens VirtualGatewayRef VirtualGatewayRef Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VirtualGatewayRef' {Text
arn :: Text
$sel:arn:VirtualGatewayRef' :: VirtualGatewayRef -> Text
arn} -> Text
arn) (\s :: VirtualGatewayRef
s@VirtualGatewayRef' {} Text
a -> VirtualGatewayRef
s {$sel:arn:VirtualGatewayRef' :: Text
arn = Text
a} :: VirtualGatewayRef)
virtualGatewayRef_createdAt :: Lens.Lens' VirtualGatewayRef Prelude.UTCTime
virtualGatewayRef_createdAt :: (UTCTime -> f UTCTime) -> VirtualGatewayRef -> f VirtualGatewayRef
virtualGatewayRef_createdAt = (VirtualGatewayRef -> POSIX)
-> (VirtualGatewayRef -> POSIX -> VirtualGatewayRef)
-> Lens VirtualGatewayRef VirtualGatewayRef POSIX POSIX
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VirtualGatewayRef' {POSIX
createdAt :: POSIX
$sel:createdAt:VirtualGatewayRef' :: VirtualGatewayRef -> POSIX
createdAt} -> POSIX
createdAt) (\s :: VirtualGatewayRef
s@VirtualGatewayRef' {} POSIX
a -> VirtualGatewayRef
s {$sel:createdAt:VirtualGatewayRef' :: POSIX
createdAt = POSIX
a} :: VirtualGatewayRef) ((POSIX -> f POSIX) -> VirtualGatewayRef -> f VirtualGatewayRef)
-> ((UTCTime -> f UTCTime) -> POSIX -> f POSIX)
-> (UTCTime -> f UTCTime)
-> VirtualGatewayRef
-> f VirtualGatewayRef
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (UTCTime -> f UTCTime) -> POSIX -> f POSIX
forall (a :: Format). Iso' (Time a) UTCTime
Core._Time
virtualGatewayRef_lastUpdatedAt :: Lens.Lens' VirtualGatewayRef Prelude.UTCTime
virtualGatewayRef_lastUpdatedAt :: (UTCTime -> f UTCTime) -> VirtualGatewayRef -> f VirtualGatewayRef
virtualGatewayRef_lastUpdatedAt = (VirtualGatewayRef -> POSIX)
-> (VirtualGatewayRef -> POSIX -> VirtualGatewayRef)
-> Lens VirtualGatewayRef VirtualGatewayRef POSIX POSIX
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VirtualGatewayRef' {POSIX
lastUpdatedAt :: POSIX
$sel:lastUpdatedAt:VirtualGatewayRef' :: VirtualGatewayRef -> POSIX
lastUpdatedAt} -> POSIX
lastUpdatedAt) (\s :: VirtualGatewayRef
s@VirtualGatewayRef' {} POSIX
a -> VirtualGatewayRef
s {$sel:lastUpdatedAt:VirtualGatewayRef' :: POSIX
lastUpdatedAt = POSIX
a} :: VirtualGatewayRef) ((POSIX -> f POSIX) -> VirtualGatewayRef -> f VirtualGatewayRef)
-> ((UTCTime -> f UTCTime) -> POSIX -> f POSIX)
-> (UTCTime -> f UTCTime)
-> VirtualGatewayRef
-> f VirtualGatewayRef
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (UTCTime -> f UTCTime) -> POSIX -> f POSIX
forall (a :: Format). Iso' (Time a) UTCTime
Core._Time
virtualGatewayRef_meshName :: Lens.Lens' VirtualGatewayRef Prelude.Text
virtualGatewayRef_meshName :: (Text -> f Text) -> VirtualGatewayRef -> f VirtualGatewayRef
virtualGatewayRef_meshName = (VirtualGatewayRef -> Text)
-> (VirtualGatewayRef -> Text -> VirtualGatewayRef)
-> Lens VirtualGatewayRef VirtualGatewayRef Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VirtualGatewayRef' {Text
meshName :: Text
$sel:meshName:VirtualGatewayRef' :: VirtualGatewayRef -> Text
meshName} -> Text
meshName) (\s :: VirtualGatewayRef
s@VirtualGatewayRef' {} Text
a -> VirtualGatewayRef
s {$sel:meshName:VirtualGatewayRef' :: Text
meshName = Text
a} :: VirtualGatewayRef)
virtualGatewayRef_meshOwner :: Lens.Lens' VirtualGatewayRef Prelude.Text
virtualGatewayRef_meshOwner :: (Text -> f Text) -> VirtualGatewayRef -> f VirtualGatewayRef
virtualGatewayRef_meshOwner = (VirtualGatewayRef -> Text)
-> (VirtualGatewayRef -> Text -> VirtualGatewayRef)
-> Lens VirtualGatewayRef VirtualGatewayRef Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VirtualGatewayRef' {Text
meshOwner :: Text
$sel:meshOwner:VirtualGatewayRef' :: VirtualGatewayRef -> Text
meshOwner} -> Text
meshOwner) (\s :: VirtualGatewayRef
s@VirtualGatewayRef' {} Text
a -> VirtualGatewayRef
s {$sel:meshOwner:VirtualGatewayRef' :: Text
meshOwner = Text
a} :: VirtualGatewayRef)
virtualGatewayRef_resourceOwner :: Lens.Lens' VirtualGatewayRef Prelude.Text
virtualGatewayRef_resourceOwner :: (Text -> f Text) -> VirtualGatewayRef -> f VirtualGatewayRef
virtualGatewayRef_resourceOwner = (VirtualGatewayRef -> Text)
-> (VirtualGatewayRef -> Text -> VirtualGatewayRef)
-> Lens VirtualGatewayRef VirtualGatewayRef Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VirtualGatewayRef' {Text
resourceOwner :: Text
$sel:resourceOwner:VirtualGatewayRef' :: VirtualGatewayRef -> Text
resourceOwner} -> Text
resourceOwner) (\s :: VirtualGatewayRef
s@VirtualGatewayRef' {} Text
a -> VirtualGatewayRef
s {$sel:resourceOwner:VirtualGatewayRef' :: Text
resourceOwner = Text
a} :: VirtualGatewayRef)
virtualGatewayRef_version :: Lens.Lens' VirtualGatewayRef Prelude.Integer
virtualGatewayRef_version :: (Integer -> f Integer) -> VirtualGatewayRef -> f VirtualGatewayRef
virtualGatewayRef_version = (VirtualGatewayRef -> Integer)
-> (VirtualGatewayRef -> Integer -> VirtualGatewayRef)
-> Lens VirtualGatewayRef VirtualGatewayRef Integer Integer
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VirtualGatewayRef' {Integer
version :: Integer
$sel:version:VirtualGatewayRef' :: VirtualGatewayRef -> Integer
version} -> Integer
version) (\s :: VirtualGatewayRef
s@VirtualGatewayRef' {} Integer
a -> VirtualGatewayRef
s {$sel:version:VirtualGatewayRef' :: Integer
version = Integer
a} :: VirtualGatewayRef)
virtualGatewayRef_virtualGatewayName :: Lens.Lens' VirtualGatewayRef Prelude.Text
virtualGatewayRef_virtualGatewayName :: (Text -> f Text) -> VirtualGatewayRef -> f VirtualGatewayRef
virtualGatewayRef_virtualGatewayName = (VirtualGatewayRef -> Text)
-> (VirtualGatewayRef -> Text -> VirtualGatewayRef)
-> Lens VirtualGatewayRef VirtualGatewayRef Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\VirtualGatewayRef' {Text
virtualGatewayName :: Text
$sel:virtualGatewayName:VirtualGatewayRef' :: VirtualGatewayRef -> Text
virtualGatewayName} -> Text
virtualGatewayName) (\s :: VirtualGatewayRef
s@VirtualGatewayRef' {} Text
a -> VirtualGatewayRef
s {$sel:virtualGatewayName:VirtualGatewayRef' :: Text
virtualGatewayName = Text
a} :: VirtualGatewayRef)
instance Core.FromJSON VirtualGatewayRef where
parseJSON :: Value -> Parser VirtualGatewayRef
parseJSON =
String
-> (Object -> Parser VirtualGatewayRef)
-> Value
-> Parser VirtualGatewayRef
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
String
"VirtualGatewayRef"
( \Object
x ->
Text
-> POSIX
-> POSIX
-> Text
-> Text
-> Text
-> Integer
-> Text
-> VirtualGatewayRef
VirtualGatewayRef'
(Text
-> POSIX
-> POSIX
-> Text
-> Text
-> Text
-> Integer
-> Text
-> VirtualGatewayRef)
-> Parser Text
-> Parser
(POSIX
-> POSIX
-> Text
-> Text
-> Text
-> Integer
-> Text
-> VirtualGatewayRef)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"arn")
Parser
(POSIX
-> POSIX
-> Text
-> Text
-> Text
-> Integer
-> Text
-> VirtualGatewayRef)
-> Parser POSIX
-> Parser
(POSIX
-> Text -> Text -> Text -> Integer -> Text -> VirtualGatewayRef)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser POSIX
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"createdAt")
Parser
(POSIX
-> Text -> Text -> Text -> Integer -> Text -> VirtualGatewayRef)
-> Parser POSIX
-> Parser
(Text -> Text -> Text -> Integer -> Text -> VirtualGatewayRef)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser POSIX
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"lastUpdatedAt")
Parser
(Text -> Text -> Text -> Integer -> Text -> VirtualGatewayRef)
-> Parser Text
-> Parser (Text -> Text -> Integer -> Text -> VirtualGatewayRef)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"meshName")
Parser (Text -> Text -> Integer -> Text -> VirtualGatewayRef)
-> Parser Text
-> Parser (Text -> Integer -> Text -> VirtualGatewayRef)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"meshOwner")
Parser (Text -> Integer -> Text -> VirtualGatewayRef)
-> Parser Text -> Parser (Integer -> Text -> VirtualGatewayRef)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"resourceOwner")
Parser (Integer -> Text -> VirtualGatewayRef)
-> Parser Integer -> Parser (Text -> VirtualGatewayRef)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser Integer
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"version")
Parser (Text -> VirtualGatewayRef)
-> Parser Text -> Parser VirtualGatewayRef
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Parser Text
forall a. FromJSON a => Object -> Text -> Parser a
Core..: Text
"virtualGatewayName")
)
instance Prelude.Hashable VirtualGatewayRef
instance Prelude.NFData VirtualGatewayRef