{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
module Amazonka.WorkMail.DescribeInboundDmarcSettings
(
DescribeInboundDmarcSettings (..),
newDescribeInboundDmarcSettings,
describeInboundDmarcSettings_organizationId,
DescribeInboundDmarcSettingsResponse (..),
newDescribeInboundDmarcSettingsResponse,
describeInboundDmarcSettingsResponse_enforced,
describeInboundDmarcSettingsResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
import Amazonka.WorkMail.Types
data DescribeInboundDmarcSettings = DescribeInboundDmarcSettings'
{
DescribeInboundDmarcSettings -> Text
organizationId :: Prelude.Text
}
deriving (DescribeInboundDmarcSettings
-> DescribeInboundDmarcSettings -> Bool
(DescribeInboundDmarcSettings
-> DescribeInboundDmarcSettings -> Bool)
-> (DescribeInboundDmarcSettings
-> DescribeInboundDmarcSettings -> Bool)
-> Eq DescribeInboundDmarcSettings
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DescribeInboundDmarcSettings
-> DescribeInboundDmarcSettings -> Bool
$c/= :: DescribeInboundDmarcSettings
-> DescribeInboundDmarcSettings -> Bool
== :: DescribeInboundDmarcSettings
-> DescribeInboundDmarcSettings -> Bool
$c== :: DescribeInboundDmarcSettings
-> DescribeInboundDmarcSettings -> Bool
Prelude.Eq, ReadPrec [DescribeInboundDmarcSettings]
ReadPrec DescribeInboundDmarcSettings
Int -> ReadS DescribeInboundDmarcSettings
ReadS [DescribeInboundDmarcSettings]
(Int -> ReadS DescribeInboundDmarcSettings)
-> ReadS [DescribeInboundDmarcSettings]
-> ReadPrec DescribeInboundDmarcSettings
-> ReadPrec [DescribeInboundDmarcSettings]
-> Read DescribeInboundDmarcSettings
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DescribeInboundDmarcSettings]
$creadListPrec :: ReadPrec [DescribeInboundDmarcSettings]
readPrec :: ReadPrec DescribeInboundDmarcSettings
$creadPrec :: ReadPrec DescribeInboundDmarcSettings
readList :: ReadS [DescribeInboundDmarcSettings]
$creadList :: ReadS [DescribeInboundDmarcSettings]
readsPrec :: Int -> ReadS DescribeInboundDmarcSettings
$creadsPrec :: Int -> ReadS DescribeInboundDmarcSettings
Prelude.Read, Int -> DescribeInboundDmarcSettings -> ShowS
[DescribeInboundDmarcSettings] -> ShowS
DescribeInboundDmarcSettings -> String
(Int -> DescribeInboundDmarcSettings -> ShowS)
-> (DescribeInboundDmarcSettings -> String)
-> ([DescribeInboundDmarcSettings] -> ShowS)
-> Show DescribeInboundDmarcSettings
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DescribeInboundDmarcSettings] -> ShowS
$cshowList :: [DescribeInboundDmarcSettings] -> ShowS
show :: DescribeInboundDmarcSettings -> String
$cshow :: DescribeInboundDmarcSettings -> String
showsPrec :: Int -> DescribeInboundDmarcSettings -> ShowS
$cshowsPrec :: Int -> DescribeInboundDmarcSettings -> ShowS
Prelude.Show, (forall x.
DescribeInboundDmarcSettings -> Rep DescribeInboundDmarcSettings x)
-> (forall x.
Rep DescribeInboundDmarcSettings x -> DescribeInboundDmarcSettings)
-> Generic DescribeInboundDmarcSettings
forall x.
Rep DescribeInboundDmarcSettings x -> DescribeInboundDmarcSettings
forall x.
DescribeInboundDmarcSettings -> Rep DescribeInboundDmarcSettings x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DescribeInboundDmarcSettings x -> DescribeInboundDmarcSettings
$cfrom :: forall x.
DescribeInboundDmarcSettings -> Rep DescribeInboundDmarcSettings x
Prelude.Generic)
newDescribeInboundDmarcSettings ::
Prelude.Text ->
DescribeInboundDmarcSettings
newDescribeInboundDmarcSettings :: Text -> DescribeInboundDmarcSettings
newDescribeInboundDmarcSettings Text
pOrganizationId_ =
DescribeInboundDmarcSettings' :: Text -> DescribeInboundDmarcSettings
DescribeInboundDmarcSettings'
{ $sel:organizationId:DescribeInboundDmarcSettings' :: Text
organizationId =
Text
pOrganizationId_
}
describeInboundDmarcSettings_organizationId :: Lens.Lens' DescribeInboundDmarcSettings Prelude.Text
describeInboundDmarcSettings_organizationId :: (Text -> f Text)
-> DescribeInboundDmarcSettings -> f DescribeInboundDmarcSettings
describeInboundDmarcSettings_organizationId = (DescribeInboundDmarcSettings -> Text)
-> (DescribeInboundDmarcSettings
-> Text -> DescribeInboundDmarcSettings)
-> Lens
DescribeInboundDmarcSettings DescribeInboundDmarcSettings Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DescribeInboundDmarcSettings' {Text
organizationId :: Text
$sel:organizationId:DescribeInboundDmarcSettings' :: DescribeInboundDmarcSettings -> Text
organizationId} -> Text
organizationId) (\s :: DescribeInboundDmarcSettings
s@DescribeInboundDmarcSettings' {} Text
a -> DescribeInboundDmarcSettings
s {$sel:organizationId:DescribeInboundDmarcSettings' :: Text
organizationId = Text
a} :: DescribeInboundDmarcSettings)
instance Core.AWSRequest DescribeInboundDmarcSettings where
type
AWSResponse DescribeInboundDmarcSettings =
DescribeInboundDmarcSettingsResponse
request :: DescribeInboundDmarcSettings
-> Request DescribeInboundDmarcSettings
request = Service
-> DescribeInboundDmarcSettings
-> Request DescribeInboundDmarcSettings
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy DescribeInboundDmarcSettings
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DescribeInboundDmarcSettings)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse DescribeInboundDmarcSettings))
-> Logger
-> Service
-> Proxy DescribeInboundDmarcSettings
-> ClientResponse ClientBody
-> m (Either
Error (ClientResponse (AWSResponse DescribeInboundDmarcSettings)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
( \Int
s ResponseHeaders
h Object
x ->
Maybe Bool -> Int -> DescribeInboundDmarcSettingsResponse
DescribeInboundDmarcSettingsResponse'
(Maybe Bool -> Int -> DescribeInboundDmarcSettingsResponse)
-> Either String (Maybe Bool)
-> Either String (Int -> DescribeInboundDmarcSettingsResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe Bool)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"Enforced")
Either String (Int -> DescribeInboundDmarcSettingsResponse)
-> Either String Int
-> Either String DescribeInboundDmarcSettingsResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
)
instance
Prelude.Hashable
DescribeInboundDmarcSettings
instance Prelude.NFData DescribeInboundDmarcSettings
instance Core.ToHeaders DescribeInboundDmarcSettings where
toHeaders :: DescribeInboundDmarcSettings -> ResponseHeaders
toHeaders =
ResponseHeaders -> DescribeInboundDmarcSettings -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"X-Amz-Target"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"WorkMailService.DescribeInboundDmarcSettings" ::
Prelude.ByteString
),
HeaderName
"Content-Type"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Core.ToJSON DescribeInboundDmarcSettings where
toJSON :: DescribeInboundDmarcSettings -> Value
toJSON DescribeInboundDmarcSettings' {Text
organizationId :: Text
$sel:organizationId:DescribeInboundDmarcSettings' :: DescribeInboundDmarcSettings -> 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
"OrganizationId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
organizationId)
]
)
instance Core.ToPath DescribeInboundDmarcSettings where
toPath :: DescribeInboundDmarcSettings -> ByteString
toPath = ByteString -> DescribeInboundDmarcSettings -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery DescribeInboundDmarcSettings where
toQuery :: DescribeInboundDmarcSettings -> QueryString
toQuery = QueryString -> DescribeInboundDmarcSettings -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data DescribeInboundDmarcSettingsResponse = DescribeInboundDmarcSettingsResponse'
{
DescribeInboundDmarcSettingsResponse -> Maybe Bool
enforced :: Prelude.Maybe Prelude.Bool,
DescribeInboundDmarcSettingsResponse -> Int
httpStatus :: Prelude.Int
}
deriving (DescribeInboundDmarcSettingsResponse
-> DescribeInboundDmarcSettingsResponse -> Bool
(DescribeInboundDmarcSettingsResponse
-> DescribeInboundDmarcSettingsResponse -> Bool)
-> (DescribeInboundDmarcSettingsResponse
-> DescribeInboundDmarcSettingsResponse -> Bool)
-> Eq DescribeInboundDmarcSettingsResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DescribeInboundDmarcSettingsResponse
-> DescribeInboundDmarcSettingsResponse -> Bool
$c/= :: DescribeInboundDmarcSettingsResponse
-> DescribeInboundDmarcSettingsResponse -> Bool
== :: DescribeInboundDmarcSettingsResponse
-> DescribeInboundDmarcSettingsResponse -> Bool
$c== :: DescribeInboundDmarcSettingsResponse
-> DescribeInboundDmarcSettingsResponse -> Bool
Prelude.Eq, ReadPrec [DescribeInboundDmarcSettingsResponse]
ReadPrec DescribeInboundDmarcSettingsResponse
Int -> ReadS DescribeInboundDmarcSettingsResponse
ReadS [DescribeInboundDmarcSettingsResponse]
(Int -> ReadS DescribeInboundDmarcSettingsResponse)
-> ReadS [DescribeInboundDmarcSettingsResponse]
-> ReadPrec DescribeInboundDmarcSettingsResponse
-> ReadPrec [DescribeInboundDmarcSettingsResponse]
-> Read DescribeInboundDmarcSettingsResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DescribeInboundDmarcSettingsResponse]
$creadListPrec :: ReadPrec [DescribeInboundDmarcSettingsResponse]
readPrec :: ReadPrec DescribeInboundDmarcSettingsResponse
$creadPrec :: ReadPrec DescribeInboundDmarcSettingsResponse
readList :: ReadS [DescribeInboundDmarcSettingsResponse]
$creadList :: ReadS [DescribeInboundDmarcSettingsResponse]
readsPrec :: Int -> ReadS DescribeInboundDmarcSettingsResponse
$creadsPrec :: Int -> ReadS DescribeInboundDmarcSettingsResponse
Prelude.Read, Int -> DescribeInboundDmarcSettingsResponse -> ShowS
[DescribeInboundDmarcSettingsResponse] -> ShowS
DescribeInboundDmarcSettingsResponse -> String
(Int -> DescribeInboundDmarcSettingsResponse -> ShowS)
-> (DescribeInboundDmarcSettingsResponse -> String)
-> ([DescribeInboundDmarcSettingsResponse] -> ShowS)
-> Show DescribeInboundDmarcSettingsResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DescribeInboundDmarcSettingsResponse] -> ShowS
$cshowList :: [DescribeInboundDmarcSettingsResponse] -> ShowS
show :: DescribeInboundDmarcSettingsResponse -> String
$cshow :: DescribeInboundDmarcSettingsResponse -> String
showsPrec :: Int -> DescribeInboundDmarcSettingsResponse -> ShowS
$cshowsPrec :: Int -> DescribeInboundDmarcSettingsResponse -> ShowS
Prelude.Show, (forall x.
DescribeInboundDmarcSettingsResponse
-> Rep DescribeInboundDmarcSettingsResponse x)
-> (forall x.
Rep DescribeInboundDmarcSettingsResponse x
-> DescribeInboundDmarcSettingsResponse)
-> Generic DescribeInboundDmarcSettingsResponse
forall x.
Rep DescribeInboundDmarcSettingsResponse x
-> DescribeInboundDmarcSettingsResponse
forall x.
DescribeInboundDmarcSettingsResponse
-> Rep DescribeInboundDmarcSettingsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep DescribeInboundDmarcSettingsResponse x
-> DescribeInboundDmarcSettingsResponse
$cfrom :: forall x.
DescribeInboundDmarcSettingsResponse
-> Rep DescribeInboundDmarcSettingsResponse x
Prelude.Generic)
newDescribeInboundDmarcSettingsResponse ::
Prelude.Int ->
DescribeInboundDmarcSettingsResponse
newDescribeInboundDmarcSettingsResponse :: Int -> DescribeInboundDmarcSettingsResponse
newDescribeInboundDmarcSettingsResponse Int
pHttpStatus_ =
DescribeInboundDmarcSettingsResponse' :: Maybe Bool -> Int -> DescribeInboundDmarcSettingsResponse
DescribeInboundDmarcSettingsResponse'
{ $sel:enforced:DescribeInboundDmarcSettingsResponse' :: Maybe Bool
enforced =
Maybe Bool
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:DescribeInboundDmarcSettingsResponse' :: Int
httpStatus = Int
pHttpStatus_
}
describeInboundDmarcSettingsResponse_enforced :: Lens.Lens' DescribeInboundDmarcSettingsResponse (Prelude.Maybe Prelude.Bool)
describeInboundDmarcSettingsResponse_enforced :: (Maybe Bool -> f (Maybe Bool))
-> DescribeInboundDmarcSettingsResponse
-> f DescribeInboundDmarcSettingsResponse
describeInboundDmarcSettingsResponse_enforced = (DescribeInboundDmarcSettingsResponse -> Maybe Bool)
-> (DescribeInboundDmarcSettingsResponse
-> Maybe Bool -> DescribeInboundDmarcSettingsResponse)
-> Lens
DescribeInboundDmarcSettingsResponse
DescribeInboundDmarcSettingsResponse
(Maybe Bool)
(Maybe Bool)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DescribeInboundDmarcSettingsResponse' {Maybe Bool
enforced :: Maybe Bool
$sel:enforced:DescribeInboundDmarcSettingsResponse' :: DescribeInboundDmarcSettingsResponse -> Maybe Bool
enforced} -> Maybe Bool
enforced) (\s :: DescribeInboundDmarcSettingsResponse
s@DescribeInboundDmarcSettingsResponse' {} Maybe Bool
a -> DescribeInboundDmarcSettingsResponse
s {$sel:enforced:DescribeInboundDmarcSettingsResponse' :: Maybe Bool
enforced = Maybe Bool
a} :: DescribeInboundDmarcSettingsResponse)
describeInboundDmarcSettingsResponse_httpStatus :: Lens.Lens' DescribeInboundDmarcSettingsResponse Prelude.Int
describeInboundDmarcSettingsResponse_httpStatus :: (Int -> f Int)
-> DescribeInboundDmarcSettingsResponse
-> f DescribeInboundDmarcSettingsResponse
describeInboundDmarcSettingsResponse_httpStatus = (DescribeInboundDmarcSettingsResponse -> Int)
-> (DescribeInboundDmarcSettingsResponse
-> Int -> DescribeInboundDmarcSettingsResponse)
-> Lens
DescribeInboundDmarcSettingsResponse
DescribeInboundDmarcSettingsResponse
Int
Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DescribeInboundDmarcSettingsResponse' {Int
httpStatus :: Int
$sel:httpStatus:DescribeInboundDmarcSettingsResponse' :: DescribeInboundDmarcSettingsResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: DescribeInboundDmarcSettingsResponse
s@DescribeInboundDmarcSettingsResponse' {} Int
a -> DescribeInboundDmarcSettingsResponse
s {$sel:httpStatus:DescribeInboundDmarcSettingsResponse' :: Int
httpStatus = Int
a} :: DescribeInboundDmarcSettingsResponse)
instance
Prelude.NFData
DescribeInboundDmarcSettingsResponse