{-# 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.StorageGateway.RemoveTagsFromResource -- Copyright : (c) 2013-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Removes one or more tags from the specified resource. -- -- module Network.AWS.StorageGateway.RemoveTagsFromResource ( -- * Creating a Request removeTagsFromResource , RemoveTagsFromResource -- * Request Lenses , rtfrResourceARN , rtfrTagKeys -- * Destructuring the Response , removeTagsFromResourceResponse , RemoveTagsFromResourceResponse -- * Response Lenses , rtfrrsResourceARN , rtfrrsResponseStatus ) where import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response import Network.AWS.StorageGateway.Types import Network.AWS.StorageGateway.Types.Product -- | RemoveTagsFromResourceInput -- -- -- -- /See:/ 'removeTagsFromResource' smart constructor. data RemoveTagsFromResource = RemoveTagsFromResource' { _rtfrResourceARN :: !Text , _rtfrTagKeys :: ![Text] } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'RemoveTagsFromResource' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'rtfrResourceARN' - The Amazon Resource Name (ARN) of the resource you want to remove the tags from. -- -- * 'rtfrTagKeys' - The keys of the tags you want to remove from the specified resource. A tag is composed of a key/value pair. removeTagsFromResource :: Text -- ^ 'rtfrResourceARN' -> RemoveTagsFromResource removeTagsFromResource pResourceARN_ = RemoveTagsFromResource' { _rtfrResourceARN = pResourceARN_ , _rtfrTagKeys = mempty } -- | The Amazon Resource Name (ARN) of the resource you want to remove the tags from. rtfrResourceARN :: Lens' RemoveTagsFromResource Text rtfrResourceARN = lens _rtfrResourceARN (\ s a -> s{_rtfrResourceARN = a}); -- | The keys of the tags you want to remove from the specified resource. A tag is composed of a key/value pair. rtfrTagKeys :: Lens' RemoveTagsFromResource [Text] rtfrTagKeys = lens _rtfrTagKeys (\ s a -> s{_rtfrTagKeys = a}) . _Coerce; instance AWSRequest RemoveTagsFromResource where type Rs RemoveTagsFromResource = RemoveTagsFromResourceResponse request = postJSON storageGateway response = receiveJSON (\ s h x -> RemoveTagsFromResourceResponse' <$> (x .?> "ResourceARN") <*> (pure (fromEnum s))) instance Hashable RemoveTagsFromResource instance NFData RemoveTagsFromResource instance ToHeaders RemoveTagsFromResource where toHeaders = const (mconcat ["X-Amz-Target" =# ("StorageGateway_20130630.RemoveTagsFromResource" :: ByteString), "Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON RemoveTagsFromResource where toJSON RemoveTagsFromResource'{..} = object (catMaybes [Just ("ResourceARN" .= _rtfrResourceARN), Just ("TagKeys" .= _rtfrTagKeys)]) instance ToPath RemoveTagsFromResource where toPath = const "/" instance ToQuery RemoveTagsFromResource where toQuery = const mempty -- | RemoveTagsFromResourceOutput -- -- -- -- /See:/ 'removeTagsFromResourceResponse' smart constructor. data RemoveTagsFromResourceResponse = RemoveTagsFromResourceResponse' { _rtfrrsResourceARN :: !(Maybe Text) , _rtfrrsResponseStatus :: !Int } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'RemoveTagsFromResourceResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'rtfrrsResourceARN' - The Amazon Resource Name (ARN) of the resource that the tags were removed from. -- -- * 'rtfrrsResponseStatus' - -- | The response status code. removeTagsFromResourceResponse :: Int -- ^ 'rtfrrsResponseStatus' -> RemoveTagsFromResourceResponse removeTagsFromResourceResponse pResponseStatus_ = RemoveTagsFromResourceResponse' { _rtfrrsResourceARN = Nothing , _rtfrrsResponseStatus = pResponseStatus_ } -- | The Amazon Resource Name (ARN) of the resource that the tags were removed from. rtfrrsResourceARN :: Lens' RemoveTagsFromResourceResponse (Maybe Text) rtfrrsResourceARN = lens _rtfrrsResourceARN (\ s a -> s{_rtfrrsResourceARN = a}); -- | -- | The response status code. rtfrrsResponseStatus :: Lens' RemoveTagsFromResourceResponse Int rtfrrsResponseStatus = lens _rtfrrsResponseStatus (\ s a -> s{_rtfrrsResponseStatus = a}); instance NFData RemoveTagsFromResourceResponse