amazonka-elasticache-1.4.3: gen/Network/AWS/ElastiCache/DescribeReservedCacheNodes.hs
{-# 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.DescribeReservedCacheNodes
-- Copyright : (c) 2013-2016 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- The /DescribeReservedCacheNodes/ action returns information about reserved cache nodes for this account, or about a specified reserved cache node.
--
-- This operation returns paginated results.
module Network.AWS.ElastiCache.DescribeReservedCacheNodes
(
-- * Creating a Request
describeReservedCacheNodes
, DescribeReservedCacheNodes
-- * Request Lenses
, drcnCacheNodeType
, drcnProductDescription
, drcnMarker
, drcnMaxRecords
, drcnReservedCacheNodeId
, drcnOfferingType
, drcnDuration
, drcnReservedCacheNodesOfferingId
-- * Destructuring the Response
, describeReservedCacheNodesResponse
, DescribeReservedCacheNodesResponse
-- * Response Lenses
, drcnrsMarker
, drcnrsReservedCacheNodes
, drcnrsResponseStatus
) where
import Network.AWS.ElastiCache.Types
import Network.AWS.ElastiCache.Types.Product
import Network.AWS.Lens
import Network.AWS.Pager
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
-- | Represents the input of a /DescribeReservedCacheNodes/ action.
--
-- /See:/ 'describeReservedCacheNodes' smart constructor.
data DescribeReservedCacheNodes = DescribeReservedCacheNodes'
{ _drcnCacheNodeType :: !(Maybe Text)
, _drcnProductDescription :: !(Maybe Text)
, _drcnMarker :: !(Maybe Text)
, _drcnMaxRecords :: !(Maybe Int)
, _drcnReservedCacheNodeId :: !(Maybe Text)
, _drcnOfferingType :: !(Maybe Text)
, _drcnDuration :: !(Maybe Text)
, _drcnReservedCacheNodesOfferingId :: !(Maybe Text)
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DescribeReservedCacheNodes' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'drcnCacheNodeType'
--
-- * 'drcnProductDescription'
--
-- * 'drcnMarker'
--
-- * 'drcnMaxRecords'
--
-- * 'drcnReservedCacheNodeId'
--
-- * 'drcnOfferingType'
--
-- * 'drcnDuration'
--
-- * 'drcnReservedCacheNodesOfferingId'
describeReservedCacheNodes
:: DescribeReservedCacheNodes
describeReservedCacheNodes =
DescribeReservedCacheNodes'
{ _drcnCacheNodeType = Nothing
, _drcnProductDescription = Nothing
, _drcnMarker = Nothing
, _drcnMaxRecords = Nothing
, _drcnReservedCacheNodeId = Nothing
, _drcnOfferingType = Nothing
, _drcnDuration = Nothing
, _drcnReservedCacheNodesOfferingId = Nothing
}
-- | The cache node type filter value. Use this parameter to show only those reservations matching the specified cache node type.
--
-- Valid node types are as follows:
--
-- - General purpose:
-- - Current generation: 'cache.t2.micro', 'cache.t2.small', 'cache.t2.medium', 'cache.m3.medium', 'cache.m3.large', 'cache.m3.xlarge', 'cache.m3.2xlarge'
-- - Previous generation: 'cache.t1.micro', 'cache.m1.small', 'cache.m1.medium', 'cache.m1.large', 'cache.m1.xlarge'
-- - Compute optimized: 'cache.c1.xlarge'
-- - Memory optimized
-- - Current generation: 'cache.r3.large', 'cache.r3.xlarge', 'cache.r3.2xlarge', 'cache.r3.4xlarge', 'cache.r3.8xlarge'
-- - Previous generation: 'cache.m2.xlarge', 'cache.m2.2xlarge', 'cache.m2.4xlarge'
--
-- __Notes:__
--
-- - All t2 instances are created in an Amazon Virtual Private Cloud (VPC).
-- - Redis backup\/restore is not supported for t2 instances.
-- - Redis Append-only files (AOF) functionality is not supported for t1 or t2 instances.
--
-- For a complete listing of cache node types and specifications, see <http://aws.amazon.com/elasticache/details Amazon ElastiCache Product Features and Details> and <http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Memcached.html#CacheParameterGroups.Memcached.NodeSpecific Cache Node Type-Specific Parameters for Memcached> or <http://docs.aws.amazon.com/AmazonElastiCache/latest/UserGuide/CacheParameterGroups.Redis.html#CacheParameterGroups.Redis.NodeSpecific Cache Node Type-Specific Parameters for Redis>.
drcnCacheNodeType :: Lens' DescribeReservedCacheNodes (Maybe Text)
drcnCacheNodeType = lens _drcnCacheNodeType (\ s a -> s{_drcnCacheNodeType = a});
-- | The product description filter value. Use this parameter to show only those reservations matching the specified product description.
drcnProductDescription :: Lens' DescribeReservedCacheNodes (Maybe Text)
drcnProductDescription = lens _drcnProductDescription (\ s a -> s{_drcnProductDescription = a});
-- | An optional marker returned from a prior request. Use this marker for pagination of results from this action. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by /MaxRecords/.
drcnMarker :: Lens' DescribeReservedCacheNodes (Maybe Text)
drcnMarker = lens _drcnMarker (\ s a -> s{_drcnMarker = a});
-- | The maximum number of records to include in the response. If more records exist than the specified 'MaxRecords' value, a marker is included in the response so that the remaining results can be retrieved.
--
-- Default: 100
--
-- Constraints: minimum 20; maximum 100.
drcnMaxRecords :: Lens' DescribeReservedCacheNodes (Maybe Int)
drcnMaxRecords = lens _drcnMaxRecords (\ s a -> s{_drcnMaxRecords = a});
-- | The reserved cache node identifier filter value. Use this parameter to show only the reservation that matches the specified reservation ID.
drcnReservedCacheNodeId :: Lens' DescribeReservedCacheNodes (Maybe Text)
drcnReservedCacheNodeId = lens _drcnReservedCacheNodeId (\ s a -> s{_drcnReservedCacheNodeId = a});
-- | The offering type filter value. Use this parameter to show only the available offerings matching the specified offering type.
--
-- Valid values: '\"Light Utilization\"|\"Medium Utilization\"|\"Heavy Utilization\"'
drcnOfferingType :: Lens' DescribeReservedCacheNodes (Maybe Text)
drcnOfferingType = lens _drcnOfferingType (\ s a -> s{_drcnOfferingType = a});
-- | The duration filter value, specified in years or seconds. Use this parameter to show only reservations for this duration.
--
-- Valid Values: '1 | 3 | 31536000 | 94608000'
drcnDuration :: Lens' DescribeReservedCacheNodes (Maybe Text)
drcnDuration = lens _drcnDuration (\ s a -> s{_drcnDuration = a});
-- | The offering identifier filter value. Use this parameter to show only purchased reservations matching the specified offering identifier.
drcnReservedCacheNodesOfferingId :: Lens' DescribeReservedCacheNodes (Maybe Text)
drcnReservedCacheNodesOfferingId = lens _drcnReservedCacheNodesOfferingId (\ s a -> s{_drcnReservedCacheNodesOfferingId = a});
instance AWSPager DescribeReservedCacheNodes where
page rq rs
| stop (rs ^. drcnrsMarker) = Nothing
| stop (rs ^. drcnrsReservedCacheNodes) = Nothing
| otherwise =
Just $ rq & drcnMarker .~ rs ^. drcnrsMarker
instance AWSRequest DescribeReservedCacheNodes where
type Rs DescribeReservedCacheNodes =
DescribeReservedCacheNodesResponse
request = postQuery elastiCache
response
= receiveXMLWrapper
"DescribeReservedCacheNodesResult"
(\ s h x ->
DescribeReservedCacheNodesResponse' <$>
(x .@? "Marker") <*>
(x .@? "ReservedCacheNodes" .!@ mempty >>=
may (parseXMLList "ReservedCacheNode"))
<*> (pure (fromEnum s)))
instance Hashable DescribeReservedCacheNodes
instance NFData DescribeReservedCacheNodes
instance ToHeaders DescribeReservedCacheNodes where
toHeaders = const mempty
instance ToPath DescribeReservedCacheNodes where
toPath = const "/"
instance ToQuery DescribeReservedCacheNodes where
toQuery DescribeReservedCacheNodes'{..}
= mconcat
["Action" =:
("DescribeReservedCacheNodes" :: ByteString),
"Version" =: ("2015-02-02" :: ByteString),
"CacheNodeType" =: _drcnCacheNodeType,
"ProductDescription" =: _drcnProductDescription,
"Marker" =: _drcnMarker,
"MaxRecords" =: _drcnMaxRecords,
"ReservedCacheNodeId" =: _drcnReservedCacheNodeId,
"OfferingType" =: _drcnOfferingType,
"Duration" =: _drcnDuration,
"ReservedCacheNodesOfferingId" =:
_drcnReservedCacheNodesOfferingId]
-- | Represents the output of a /DescribeReservedCacheNodes/ action.
--
-- /See:/ 'describeReservedCacheNodesResponse' smart constructor.
data DescribeReservedCacheNodesResponse = DescribeReservedCacheNodesResponse'
{ _drcnrsMarker :: !(Maybe Text)
, _drcnrsReservedCacheNodes :: !(Maybe [ReservedCacheNode])
, _drcnrsResponseStatus :: !Int
} deriving (Eq,Read,Show,Data,Typeable,Generic)
-- | Creates a value of 'DescribeReservedCacheNodesResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'drcnrsMarker'
--
-- * 'drcnrsReservedCacheNodes'
--
-- * 'drcnrsResponseStatus'
describeReservedCacheNodesResponse
:: Int -- ^ 'drcnrsResponseStatus'
-> DescribeReservedCacheNodesResponse
describeReservedCacheNodesResponse pResponseStatus_ =
DescribeReservedCacheNodesResponse'
{ _drcnrsMarker = Nothing
, _drcnrsReservedCacheNodes = Nothing
, _drcnrsResponseStatus = pResponseStatus_
}
-- | Provides an identifier to allow retrieval of paginated results.
drcnrsMarker :: Lens' DescribeReservedCacheNodesResponse (Maybe Text)
drcnrsMarker = lens _drcnrsMarker (\ s a -> s{_drcnrsMarker = a});
-- | A list of reserved cache nodes. Each element in the list contains detailed information about one node.
drcnrsReservedCacheNodes :: Lens' DescribeReservedCacheNodesResponse [ReservedCacheNode]
drcnrsReservedCacheNodes = lens _drcnrsReservedCacheNodes (\ s a -> s{_drcnrsReservedCacheNodes = a}) . _Default . _Coerce;
-- | The response status code.
drcnrsResponseStatus :: Lens' DescribeReservedCacheNodesResponse Int
drcnrsResponseStatus = lens _drcnrsResponseStatus (\ s a -> s{_drcnrsResponseStatus = a});
instance NFData DescribeReservedCacheNodesResponse