{-# 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.ElastiCache.ListTagsForResource -- Copyright : (c) 2013-2017 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Lists all cost allocation tags currently on the named resource. A @cost allocation tag@ is a key-value pair where the key is case-sensitive and the value is optional. You can use cost allocation tags to categorize and track your AWS costs. -- -- -- You can have a maximum of 50 cost allocation tags on an ElastiCache resource. For more information, see . -- module Network.AWS.ElastiCache.ListTagsForResource ( -- * Creating a Request listTagsForResource , ListTagsForResource -- * Request Lenses , ltfrResourceName -- * Destructuring the Response , tagListMessage , TagListMessage -- * Response Lenses , tlmTagList ) where import Network.AWS.ElastiCache.Types import Network.AWS.ElastiCache.Types.Product import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | The input parameters for the @ListTagsForResource@ operation. -- -- -- -- /See:/ 'listTagsForResource' smart constructor. newtype ListTagsForResource = ListTagsForResource' { _ltfrResourceName :: Text } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'ListTagsForResource' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'ltfrResourceName' - The Amazon Resource Name (ARN) of the resource for which you want the list of tags, for example @arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster@ or @arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot@ . For more information about ARNs, see . listTagsForResource :: Text -- ^ 'ltfrResourceName' -> ListTagsForResource listTagsForResource pResourceName_ = ListTagsForResource' {_ltfrResourceName = pResourceName_} -- | The Amazon Resource Name (ARN) of the resource for which you want the list of tags, for example @arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster@ or @arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot@ . For more information about ARNs, see . ltfrResourceName :: Lens' ListTagsForResource Text ltfrResourceName = lens _ltfrResourceName (\ s a -> s{_ltfrResourceName = a}); instance AWSRequest ListTagsForResource where type Rs ListTagsForResource = TagListMessage request = postQuery elastiCache response = receiveXMLWrapper "ListTagsForResourceResult" (\ s h x -> parseXML x) instance Hashable ListTagsForResource where instance NFData ListTagsForResource where instance ToHeaders ListTagsForResource where toHeaders = const mempty instance ToPath ListTagsForResource where toPath = const "/" instance ToQuery ListTagsForResource where toQuery ListTagsForResource'{..} = mconcat ["Action" =: ("ListTagsForResource" :: ByteString), "Version" =: ("2015-02-02" :: ByteString), "ResourceName" =: _ltfrResourceName]