{-# 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.DynamoDB.UntagResource -- Copyright : (c) 2013-2018 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Removes the association of tags from an Amazon DynamoDB resource. You can call UntagResource up to 5 times per second, per account. -- -- -- For an overview on tagging DynamoDB resources, see in the /Amazon DynamoDB Developer Guide/ . -- module Network.AWS.DynamoDB.UntagResource ( -- * Creating a Request untagResource , UntagResource -- * Request Lenses , urResourceARN , urTagKeys -- * Destructuring the Response , untagResourceResponse , UntagResourceResponse ) where import Network.AWS.DynamoDB.Types import Network.AWS.DynamoDB.Types.Product import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | /See:/ 'untagResource' smart constructor. data UntagResource = UntagResource' { _urResourceARN :: !Text , _urTagKeys :: ![Text] } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'UntagResource' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'urResourceARN' - The Amazon DyanamoDB resource the tags will be removed from. This value is an Amazon Resource Name (ARN). -- -- * 'urTagKeys' - A list of tag keys. Existing tags of the resource whose keys are members of this list will be removed from the Amazon DynamoDB resource. untagResource :: Text -- ^ 'urResourceARN' -> UntagResource untagResource pResourceARN_ = UntagResource' {_urResourceARN = pResourceARN_, _urTagKeys = mempty} -- | The Amazon DyanamoDB resource the tags will be removed from. This value is an Amazon Resource Name (ARN). urResourceARN :: Lens' UntagResource Text urResourceARN = lens _urResourceARN (\ s a -> s{_urResourceARN = a}) -- | A list of tag keys. Existing tags of the resource whose keys are members of this list will be removed from the Amazon DynamoDB resource. urTagKeys :: Lens' UntagResource [Text] urTagKeys = lens _urTagKeys (\ s a -> s{_urTagKeys = a}) . _Coerce instance AWSRequest UntagResource where type Rs UntagResource = UntagResourceResponse request = postJSON dynamoDB response = receiveNull UntagResourceResponse' instance Hashable UntagResource where instance NFData UntagResource where instance ToHeaders UntagResource where toHeaders = const (mconcat ["X-Amz-Target" =# ("DynamoDB_20120810.UntagResource" :: ByteString), "Content-Type" =# ("application/x-amz-json-1.0" :: ByteString)]) instance ToJSON UntagResource where toJSON UntagResource'{..} = object (catMaybes [Just ("ResourceArn" .= _urResourceARN), Just ("TagKeys" .= _urTagKeys)]) instance ToPath UntagResource where toPath = const "/" instance ToQuery UntagResource where toQuery = const mempty -- | /See:/ 'untagResourceResponse' smart constructor. data UntagResourceResponse = UntagResourceResponse' deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'UntagResourceResponse' with the minimum fields required to make a request. -- untagResourceResponse :: UntagResourceResponse untagResourceResponse = UntagResourceResponse' instance NFData UntagResourceResponse where