amazonka-route53-0.0.8: gen/Network/AWS/Route53/UpdateHostedZoneComment.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.Route53.UpdateHostedZoneComment
-- 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)
--
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- | To update the hosted zone comment, send a 'POST' request to the '2013-04-01/hostedzone//hosted zone ID/ resource. The request body must include an XML document with a 'UpdateHostedZoneCommentRequest' element. The response to this request includes
-- the modified 'HostedZone' element.
--
-- The comment can have a maximum length of 256 characters.
--
-- <http://docs.aws.amazon.com/Route53/latest/APIReference/API_UpdateHostedZoneComment.html>
module Network.AWS.Route53.UpdateHostedZoneComment
(
-- * Request
UpdateHostedZoneComment
-- ** Request constructor
, updateHostedZoneComment
-- ** Request lenses
, uhzcComment
, uhzcId
-- * Response
, UpdateHostedZoneCommentResponse
-- ** Response constructor
, updateHostedZoneCommentResponse
-- ** Response lenses
, uhzcrHostedZone
) where
import Network.AWS.Prelude
import Network.AWS.Request.RestXML
import Network.AWS.Route53.Types
import qualified GHC.Exts
data UpdateHostedZoneComment = UpdateHostedZoneComment
{ _uhzcComment :: Maybe Text
, _uhzcId :: Text
} deriving (Eq, Ord, Show)
-- | 'UpdateHostedZoneComment' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'uhzcComment' @::@ 'Maybe' 'Text'
--
-- * 'uhzcId' @::@ 'Text'
--
updateHostedZoneComment :: Text -- ^ 'uhzcId'
-> UpdateHostedZoneComment
updateHostedZoneComment p1 = UpdateHostedZoneComment
{ _uhzcId = p1
, _uhzcComment = Nothing
}
-- | A comment about your hosted zone.
uhzcComment :: Lens' UpdateHostedZoneComment (Maybe Text)
uhzcComment = lens _uhzcComment (\s a -> s { _uhzcComment = a })
-- | The ID of the hosted zone you want to update.
uhzcId :: Lens' UpdateHostedZoneComment Text
uhzcId = lens _uhzcId (\s a -> s { _uhzcId = a })
newtype UpdateHostedZoneCommentResponse = UpdateHostedZoneCommentResponse
{ _uhzcrHostedZone :: HostedZone
} deriving (Eq, Show)
-- | 'UpdateHostedZoneCommentResponse' constructor.
--
-- The fields accessible through corresponding lenses are:
--
-- * 'uhzcrHostedZone' @::@ 'HostedZone'
--
updateHostedZoneCommentResponse :: HostedZone -- ^ 'uhzcrHostedZone'
-> UpdateHostedZoneCommentResponse
updateHostedZoneCommentResponse p1 = UpdateHostedZoneCommentResponse
{ _uhzcrHostedZone = p1
}
uhzcrHostedZone :: Lens' UpdateHostedZoneCommentResponse HostedZone
uhzcrHostedZone = lens _uhzcrHostedZone (\s a -> s { _uhzcrHostedZone = a })
instance ToPath UpdateHostedZoneComment where
toPath UpdateHostedZoneComment{..} = mconcat
[ "/2013-04-01/hostedzone/"
, toText _uhzcId
]
instance ToQuery UpdateHostedZoneComment where
toQuery = const mempty
instance ToHeaders UpdateHostedZoneComment
instance ToXMLRoot UpdateHostedZoneComment where
toXMLRoot UpdateHostedZoneComment{..} = namespaced ns "UpdateHostedZoneComment"
[ "Comment" =@ _uhzcComment
]
instance ToXML UpdateHostedZoneComment
instance AWSRequest UpdateHostedZoneComment where
type Sv UpdateHostedZoneComment = Route53
type Rs UpdateHostedZoneComment = UpdateHostedZoneCommentResponse
request = post
response = xmlResponse
instance FromXML UpdateHostedZoneCommentResponse where
parseXML x = UpdateHostedZoneCommentResponse
<$> x .@ "HostedZone"