{-# 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.Route53Domains.UpdateDomainNameservers -- Copyright : (c) 2013-2018 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- This operation replaces the current set of name servers for the domain with the specified set of name servers. If you use Amazon Route 53 as your DNS service, specify the four name servers in the delegation set for the hosted zone for the domain. -- -- -- If successful, this operation returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email. -- module Network.AWS.Route53Domains.UpdateDomainNameservers ( -- * Creating a Request updateDomainNameservers , UpdateDomainNameservers -- * Request Lenses , udnFIAuthKey , udnDomainName , udnNameservers -- * Destructuring the Response , updateDomainNameserversResponse , UpdateDomainNameserversResponse -- * Response Lenses , udnrsResponseStatus , udnrsOperationId ) where import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response import Network.AWS.Route53Domains.Types import Network.AWS.Route53Domains.Types.Product -- | Replaces the current set of name servers for the domain with the specified set of name servers. If you use Amazon Route 53 as your DNS service, specify the four name servers in the delegation set for the hosted zone for the domain. -- -- -- If successful, this operation returns an operation ID that you can use to track the progress and completion of the action. If the request is not completed successfully, the domain registrant will be notified by email. -- -- -- /See:/ 'updateDomainNameservers' smart constructor. data UpdateDomainNameservers = UpdateDomainNameservers' { _udnFIAuthKey :: !(Maybe Text) , _udnDomainName :: !Text , _udnNameservers :: ![Nameserver] } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'UpdateDomainNameservers' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'udnFIAuthKey' - The authorization key for .fi domains -- -- * 'udnDomainName' - The name of the domain that you want to change name servers for. -- -- * 'udnNameservers' - A list of new name servers for the domain. updateDomainNameservers :: Text -- ^ 'udnDomainName' -> UpdateDomainNameservers updateDomainNameservers pDomainName_ = UpdateDomainNameservers' { _udnFIAuthKey = Nothing , _udnDomainName = pDomainName_ , _udnNameservers = mempty } -- | The authorization key for .fi domains udnFIAuthKey :: Lens' UpdateDomainNameservers (Maybe Text) udnFIAuthKey = lens _udnFIAuthKey (\ s a -> s{_udnFIAuthKey = a}) -- | The name of the domain that you want to change name servers for. udnDomainName :: Lens' UpdateDomainNameservers Text udnDomainName = lens _udnDomainName (\ s a -> s{_udnDomainName = a}) -- | A list of new name servers for the domain. udnNameservers :: Lens' UpdateDomainNameservers [Nameserver] udnNameservers = lens _udnNameservers (\ s a -> s{_udnNameservers = a}) . _Coerce instance AWSRequest UpdateDomainNameservers where type Rs UpdateDomainNameservers = UpdateDomainNameserversResponse request = postJSON route53Domains response = receiveJSON (\ s h x -> UpdateDomainNameserversResponse' <$> (pure (fromEnum s)) <*> (x .:> "OperationId")) instance Hashable UpdateDomainNameservers where instance NFData UpdateDomainNameservers where instance ToHeaders UpdateDomainNameservers where toHeaders = const (mconcat ["X-Amz-Target" =# ("Route53Domains_v20140515.UpdateDomainNameservers" :: ByteString), "Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON UpdateDomainNameservers where toJSON UpdateDomainNameservers'{..} = object (catMaybes [("FIAuthKey" .=) <$> _udnFIAuthKey, Just ("DomainName" .= _udnDomainName), Just ("Nameservers" .= _udnNameservers)]) instance ToPath UpdateDomainNameservers where toPath = const "/" instance ToQuery UpdateDomainNameservers where toQuery = const mempty -- | The UpdateDomainNameservers response includes the following element. -- -- -- -- /See:/ 'updateDomainNameserversResponse' smart constructor. data UpdateDomainNameserversResponse = UpdateDomainNameserversResponse' { _udnrsResponseStatus :: !Int , _udnrsOperationId :: !Text } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'UpdateDomainNameserversResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'udnrsResponseStatus' - -- | The response status code. -- -- * 'udnrsOperationId' - Identifier for tracking the progress of the request. To use this ID to query the operation status, use 'GetOperationDetail' . updateDomainNameserversResponse :: Int -- ^ 'udnrsResponseStatus' -> Text -- ^ 'udnrsOperationId' -> UpdateDomainNameserversResponse updateDomainNameserversResponse pResponseStatus_ pOperationId_ = UpdateDomainNameserversResponse' {_udnrsResponseStatus = pResponseStatus_, _udnrsOperationId = pOperationId_} -- | -- | The response status code. udnrsResponseStatus :: Lens' UpdateDomainNameserversResponse Int udnrsResponseStatus = lens _udnrsResponseStatus (\ s a -> s{_udnrsResponseStatus = a}) -- | Identifier for tracking the progress of the request. To use this ID to query the operation status, use 'GetOperationDetail' . udnrsOperationId :: Lens' UpdateDomainNameserversResponse Text udnrsOperationId = lens _udnrsOperationId (\ s a -> s{_udnrsOperationId = a}) instance NFData UpdateDomainNameserversResponse where