amazonka-ses-1.2.0: gen/Network/AWS/SES/VerifyDomainIdentity.hs
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE TypeFamilies #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Network.AWS.SES.VerifyDomainIdentity
-- Copyright : (c) 2013-2015 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Verifies a domain.
--
-- This action is throttled at one request per second.
--
-- /See:/ <http://docs.aws.amazon.com/ses/latest/APIReference/API_VerifyDomainIdentity.html AWS API Reference> for VerifyDomainIdentity.
module Network.AWS.SES.VerifyDomainIdentity
(
-- * Creating a Request
verifyDomainIdentity
, VerifyDomainIdentity
-- * Request Lenses
, vdiDomain
-- * Destructuring the Response
, verifyDomainIdentityResponse
, VerifyDomainIdentityResponse
-- * Response Lenses
, vdirsStatus
, vdirsVerificationToken
) where
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
import Network.AWS.SES.Types
import Network.AWS.SES.Types.Product
-- | Represents a request instructing the service to begin domain
-- verification.
--
-- /See:/ 'verifyDomainIdentity' smart constructor.
newtype VerifyDomainIdentity = VerifyDomainIdentity'
{ _vdiDomain :: Text
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'VerifyDomainIdentity' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'vdiDomain'
verifyDomainIdentity
:: Text -- ^ 'vdiDomain'
-> VerifyDomainIdentity
verifyDomainIdentity pDomain_ =
VerifyDomainIdentity'
{ _vdiDomain = pDomain_
}
-- | The domain to be verified.
vdiDomain :: Lens' VerifyDomainIdentity Text
vdiDomain = lens _vdiDomain (\ s a -> s{_vdiDomain = a});
instance AWSRequest VerifyDomainIdentity where
type Rs VerifyDomainIdentity =
VerifyDomainIdentityResponse
request = postQuery sES
response
= receiveXMLWrapper "VerifyDomainIdentityResult"
(\ s h x ->
VerifyDomainIdentityResponse' <$>
(pure (fromEnum s)) <*> (x .@ "VerificationToken"))
instance ToHeaders VerifyDomainIdentity where
toHeaders = const mempty
instance ToPath VerifyDomainIdentity where
toPath = const "/"
instance ToQuery VerifyDomainIdentity where
toQuery VerifyDomainIdentity'{..}
= mconcat
["Action" =: ("VerifyDomainIdentity" :: ByteString),
"Version" =: ("2010-12-01" :: ByteString),
"Domain" =: _vdiDomain]
-- | Represents a token used for domain ownership verification.
--
-- /See:/ 'verifyDomainIdentityResponse' smart constructor.
data VerifyDomainIdentityResponse = VerifyDomainIdentityResponse'
{ _vdirsStatus :: !Int
, _vdirsVerificationToken :: !Text
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'VerifyDomainIdentityResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'vdirsStatus'
--
-- * 'vdirsVerificationToken'
verifyDomainIdentityResponse
:: Int -- ^ 'vdirsStatus'
-> Text -- ^ 'vdirsVerificationToken'
-> VerifyDomainIdentityResponse
verifyDomainIdentityResponse pStatus_ pVerificationToken_ =
VerifyDomainIdentityResponse'
{ _vdirsStatus = pStatus_
, _vdirsVerificationToken = pVerificationToken_
}
-- | The response status code.
vdirsStatus :: Lens' VerifyDomainIdentityResponse Int
vdirsStatus = lens _vdirsStatus (\ s a -> s{_vdirsStatus = a});
-- | A TXT record that must be placed in the DNS settings for the domain, in
-- order to complete domain verification.
vdirsVerificationToken :: Lens' VerifyDomainIdentityResponse Text
vdirsVerificationToken = lens _vdirsVerificationToken (\ s a -> s{_vdirsVerificationToken = a});