{-# 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.AuthorizeCacheSecurityGroupIngress -- Copyright : (c) 2013-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- The /AuthorizeCacheSecurityGroupIngress/ action allows network ingress -- to a cache security group. Applications using ElastiCache must be -- running on Amazon EC2, and Amazon EC2 security groups are used as the -- authorization mechanism. -- -- You cannot authorize ingress from an Amazon EC2 security group in one -- region to an ElastiCache cluster in another region. module Network.AWS.ElastiCache.AuthorizeCacheSecurityGroupIngress ( -- * Creating a Request authorizeCacheSecurityGroupIngress , AuthorizeCacheSecurityGroupIngress -- * Request Lenses , acsgiCacheSecurityGroupName , acsgiEC2SecurityGroupName , acsgiEC2SecurityGroupOwnerId -- * Destructuring the Response , authorizeCacheSecurityGroupIngressResponse , AuthorizeCacheSecurityGroupIngressResponse -- * Response Lenses , acsgirsCacheSecurityGroup , acsgirsResponseStatus ) 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 -- | Represents the input of an /AuthorizeCacheSecurityGroupIngress/ action. -- -- /See:/ 'authorizeCacheSecurityGroupIngress' smart constructor. data AuthorizeCacheSecurityGroupIngress = AuthorizeCacheSecurityGroupIngress' { _acsgiCacheSecurityGroupName :: !Text , _acsgiEC2SecurityGroupName :: !Text , _acsgiEC2SecurityGroupOwnerId :: !Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'AuthorizeCacheSecurityGroupIngress' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'acsgiCacheSecurityGroupName' -- -- * 'acsgiEC2SecurityGroupName' -- -- * 'acsgiEC2SecurityGroupOwnerId' authorizeCacheSecurityGroupIngress :: Text -- ^ 'acsgiCacheSecurityGroupName' -> Text -- ^ 'acsgiEC2SecurityGroupName' -> Text -- ^ 'acsgiEC2SecurityGroupOwnerId' -> AuthorizeCacheSecurityGroupIngress authorizeCacheSecurityGroupIngress pCacheSecurityGroupName_ pEC2SecurityGroupName_ pEC2SecurityGroupOwnerId_ = AuthorizeCacheSecurityGroupIngress' { _acsgiCacheSecurityGroupName = pCacheSecurityGroupName_ , _acsgiEC2SecurityGroupName = pEC2SecurityGroupName_ , _acsgiEC2SecurityGroupOwnerId = pEC2SecurityGroupOwnerId_ } -- | The cache security group which will allow network ingress. acsgiCacheSecurityGroupName :: Lens' AuthorizeCacheSecurityGroupIngress Text acsgiCacheSecurityGroupName = lens _acsgiCacheSecurityGroupName (\ s a -> s{_acsgiCacheSecurityGroupName = a}); -- | The Amazon EC2 security group to be authorized for ingress to the cache -- security group. acsgiEC2SecurityGroupName :: Lens' AuthorizeCacheSecurityGroupIngress Text acsgiEC2SecurityGroupName = lens _acsgiEC2SecurityGroupName (\ s a -> s{_acsgiEC2SecurityGroupName = a}); -- | The AWS account number of the Amazon EC2 security group owner. Note that -- this is not the same thing as an AWS access key ID - you must provide a -- valid AWS account number for this parameter. acsgiEC2SecurityGroupOwnerId :: Lens' AuthorizeCacheSecurityGroupIngress Text acsgiEC2SecurityGroupOwnerId = lens _acsgiEC2SecurityGroupOwnerId (\ s a -> s{_acsgiEC2SecurityGroupOwnerId = a}); instance AWSRequest AuthorizeCacheSecurityGroupIngress where type Rs AuthorizeCacheSecurityGroupIngress = AuthorizeCacheSecurityGroupIngressResponse request = postQuery elastiCache response = receiveXMLWrapper "AuthorizeCacheSecurityGroupIngressResult" (\ s h x -> AuthorizeCacheSecurityGroupIngressResponse' <$> (x .@? "CacheSecurityGroup") <*> (pure (fromEnum s))) instance Hashable AuthorizeCacheSecurityGroupIngress instance NFData AuthorizeCacheSecurityGroupIngress instance ToHeaders AuthorizeCacheSecurityGroupIngress where toHeaders = const mempty instance ToPath AuthorizeCacheSecurityGroupIngress where toPath = const "/" instance ToQuery AuthorizeCacheSecurityGroupIngress where toQuery AuthorizeCacheSecurityGroupIngress'{..} = mconcat ["Action" =: ("AuthorizeCacheSecurityGroupIngress" :: ByteString), "Version" =: ("2015-02-02" :: ByteString), "CacheSecurityGroupName" =: _acsgiCacheSecurityGroupName, "EC2SecurityGroupName" =: _acsgiEC2SecurityGroupName, "EC2SecurityGroupOwnerId" =: _acsgiEC2SecurityGroupOwnerId] -- | /See:/ 'authorizeCacheSecurityGroupIngressResponse' smart constructor. data AuthorizeCacheSecurityGroupIngressResponse = AuthorizeCacheSecurityGroupIngressResponse' { _acsgirsCacheSecurityGroup :: !(Maybe CacheSecurityGroup) , _acsgirsResponseStatus :: !Int } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'AuthorizeCacheSecurityGroupIngressResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'acsgirsCacheSecurityGroup' -- -- * 'acsgirsResponseStatus' authorizeCacheSecurityGroupIngressResponse :: Int -- ^ 'acsgirsResponseStatus' -> AuthorizeCacheSecurityGroupIngressResponse authorizeCacheSecurityGroupIngressResponse pResponseStatus_ = AuthorizeCacheSecurityGroupIngressResponse' { _acsgirsCacheSecurityGroup = Nothing , _acsgirsResponseStatus = pResponseStatus_ } -- | Undocumented member. acsgirsCacheSecurityGroup :: Lens' AuthorizeCacheSecurityGroupIngressResponse (Maybe CacheSecurityGroup) acsgirsCacheSecurityGroup = lens _acsgirsCacheSecurityGroup (\ s a -> s{_acsgirsCacheSecurityGroup = a}); -- | The response status code. acsgirsResponseStatus :: Lens' AuthorizeCacheSecurityGroupIngressResponse Int acsgirsResponseStatus = lens _acsgirsResponseStatus (\ s a -> s{_acsgirsResponseStatus = a}); instance NFData AuthorizeCacheSecurityGroupIngressResponse