amazonka-ses-0.0.2: gen/Network/AWS/SES/GetIdentityVerificationAttributes.hs
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE FlexibleInstances #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
-- Module : Network.AWS.SES.GetIdentityVerificationAttributes
-- Copyright : (c) 2013-2014 Brendan Hay <brendan.g.hay@gmail.com>
-- License : This Source Code Form is subject to the terms of
-- the Mozilla Public License, v. 2.0.
-- A copy of the MPL can be found in the LICENSE file or
-- you can obtain it at http://mozilla.org/MPL/2.0/.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : experimental
-- Portability : non-portable (GHC extensions)
-- | Given a list of identities (email addresses and/or domains), returns the
-- verification status and (for domain identities) the verification token for
-- each identity.
--
-- This action is throttled at one request per second.
--
-- <http://docs.aws.amazon.com/ses/latest/APIReference/API_GetIdentityVerificationAttributes.html>
module Network.AWS.SES.GetIdentityVerificationAttributes
(
-- * Request
GetIdentityVerificationAttributes
-- ** Request constructor
, getIdentityVerificationAttributes
-- ** Request lenses
, givaIdentities
-- * Response
, GetIdentityVerificationAttributesResponse
-- ** Response constructor
, getIdentityVerificationAttributesResponse
-- ** Response lenses
, givarVerificationAttributes
) where
import Network.AWS.Prelude
import Network.AWS.Request.Query
import Network.AWS.SES.Types
import qualified GHC.Exts
newtype GetIdentityVerificationAttributes = GetIdentityVerificationAttributes
{ _givaIdentities :: List "Identities" Text
} deriving (Eq, Ord, Show, Monoid, Semigroup)
instance GHC.Exts.IsList GetIdentityVerificationAttributes where
type Item GetIdentityVerificationAttributes = Text
fromList = GetIdentityVerificationAttributes . GHC.Exts.fromList
toList = GHC.Exts.toList . _givaIdentities
-- | 'GetIdentityVerificationAttributes' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'givaIdentities' @::@ ['Text']
--
getIdentityVerificationAttributes :: GetIdentityVerificationAttributes
getIdentityVerificationAttributes = GetIdentityVerificationAttributes
{ _givaIdentities = mempty
}
-- | A list of identities.
givaIdentities :: Lens' GetIdentityVerificationAttributes [Text]
givaIdentities = lens _givaIdentities (\s a -> s { _givaIdentities = a }) . _List
newtype GetIdentityVerificationAttributesResponse = GetIdentityVerificationAttributesResponse
{ _givarVerificationAttributes :: EMap "entry" "key" "value" Text IdentityVerificationAttributes
} deriving (Eq, Show, Monoid, Semigroup)
-- | 'GetIdentityVerificationAttributesResponse' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'givarVerificationAttributes' @::@ 'HashMap' 'Text' 'IdentityVerificationAttributes'
--
getIdentityVerificationAttributesResponse :: GetIdentityVerificationAttributesResponse
getIdentityVerificationAttributesResponse = GetIdentityVerificationAttributesResponse
{ _givarVerificationAttributes = mempty
}
-- | A map of Identities to IdentityVerificationAttributes objects.
givarVerificationAttributes :: Lens' GetIdentityVerificationAttributesResponse (HashMap Text IdentityVerificationAttributes)
givarVerificationAttributes =
lens _givarVerificationAttributes
(\s a -> s { _givarVerificationAttributes = a })
. _EMap
instance ToPath GetIdentityVerificationAttributes where
toPath = const "/"
instance ToQuery GetIdentityVerificationAttributes where
toQuery GetIdentityVerificationAttributes{..} = mconcat
[ "Identities" =? _givaIdentities
]
instance ToHeaders GetIdentityVerificationAttributes
instance AWSRequest GetIdentityVerificationAttributes where
type Sv GetIdentityVerificationAttributes = SES
type Rs GetIdentityVerificationAttributes = GetIdentityVerificationAttributesResponse
request = post "GetIdentityVerificationAttributes"
response = xmlResponse
instance FromXML GetIdentityVerificationAttributesResponse where
parseXML = withElement "GetIdentityVerificationAttributesResult" $ \x -> GetIdentityVerificationAttributesResponse
<$> x .@ "VerificationAttributes"