{-# 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.NetworkFirewall.Types.SubnetMapping where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
data SubnetMapping = SubnetMapping'
{
SubnetMapping -> Text
subnetId :: Prelude.Text
}
deriving (SubnetMapping -> SubnetMapping -> Bool
(SubnetMapping -> SubnetMapping -> Bool)
-> (SubnetMapping -> SubnetMapping -> Bool) -> Eq SubnetMapping
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: SubnetMapping -> SubnetMapping -> Bool
$c/= :: SubnetMapping -> SubnetMapping -> Bool
== :: SubnetMapping -> SubnetMapping -> Bool
$c== :: SubnetMapping -> SubnetMapping -> Bool
Prelude.Eq, ReadPrec [SubnetMapping]
ReadPrec SubnetMapping
Int -> ReadS SubnetMapping
ReadS [SubnetMapping]
(Int -> ReadS SubnetMapping)
-> ReadS [SubnetMapping]
-> ReadPrec SubnetMapping
-> ReadPrec [SubnetMapping]
-> Read SubnetMapping
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [SubnetMapping]
$creadListPrec :: ReadPrec [SubnetMapping]
readPrec :: ReadPrec SubnetMapping
$creadPrec :: ReadPrec SubnetMapping
readList :: ReadS [SubnetMapping]
$creadList :: ReadS [SubnetMapping]
readsPrec :: Int -> ReadS SubnetMapping
$creadsPrec :: Int -> ReadS SubnetMapping
Prelude.Read, Int -> SubnetMapping -> ShowS
[SubnetMapping] -> ShowS
SubnetMapping -> String
(Int -> SubnetMapping -> ShowS)
-> (SubnetMapping -> String)
-> ([SubnetMapping] -> ShowS)
-> Show SubnetMapping
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [SubnetMapping] -> ShowS
$cshowList :: [SubnetMapping] -> ShowS
show :: SubnetMapping -> String
$cshow :: SubnetMapping -> String
showsPrec :: Int -> SubnetMapping -> ShowS
$cshowsPrec :: Int -> SubnetMapping -> ShowS
Prelude.Show, (forall x. SubnetMapping -> Rep SubnetMapping x)
-> (forall x. Rep SubnetMapping x -> SubnetMapping)
-> Generic SubnetMapping
forall x. Rep SubnetMapping x -> SubnetMapping
forall x. SubnetMapping -> Rep SubnetMapping x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep SubnetMapping x -> SubnetMapping
$cfrom :: forall x. SubnetMapping -> Rep SubnetMapping x
Prelude.Generic)
newSubnetMapping ::
Prelude.Text ->
SubnetMapping
newSubnetMapping :: Text -> SubnetMapping
newSubnetMapping Text
pSubnetId_ =
SubnetMapping' :: Text -> SubnetMapping
SubnetMapping' {$sel:subnetId:SubnetMapping' :: Text
subnetId = Text
pSubnetId_}
subnetMapping_subnetId :: Lens.Lens' SubnetMapping Prelude.Text
subnetMapping_subnetId :: (Text -> f Text) -> SubnetMapping -> f SubnetMapping
subnetMapping_subnetId = (SubnetMapping -> Text)
-> (SubnetMapping -> Text -> SubnetMapping)
-> Lens SubnetMapping SubnetMapping Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\SubnetMapping' {Text
subnetId :: Text
$sel:subnetId:SubnetMapping' :: SubnetMapping -> Text
subnetId} -> Text
subnetId) (\s :: SubnetMapping
s@SubnetMapping' {} Text
a -> SubnetMapping
s {$sel:subnetId:SubnetMapping' :: Text
subnetId = Text
a} :: SubnetMapping)
instance Core.FromJSON SubnetMapping where
parseJSON :: Value -> Parser SubnetMapping
parseJSON =
String
-> (Object -> Parser SubnetMapping)
-> Value
-> Parser SubnetMapping
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
String
"SubnetMapping"
( \Object
x ->
Text -> SubnetMapping
SubnetMapping' (Text -> SubnetMapping) -> Parser Text -> Parser SubnetMapping
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
"SubnetId")
)
instance Prelude.Hashable SubnetMapping
instance Prelude.NFData SubnetMapping
instance Core.ToJSON SubnetMapping where
toJSON :: SubnetMapping -> Value
toJSON SubnetMapping' {Text
subnetId :: Text
$sel:subnetId:SubnetMapping' :: SubnetMapping -> 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
"SubnetId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
subnetId)]
)