amazonka-workspaces-1.6.0: gen/Network/AWS/WorkSpaces/AssociateIPGroups.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.WorkSpaces.AssociateIPGroups
-- Copyright : (c) 2013-2018 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Associates the specified IP access control group with the specified directory.
--
--
module Network.AWS.WorkSpaces.AssociateIPGroups
(
-- * Creating a Request
associateIPGroups
, AssociateIPGroups
-- * Request Lenses
, aigDirectoryId
, aigGroupIds
-- * Destructuring the Response
, associateIPGroupsResponse
, AssociateIPGroupsResponse
-- * Response Lenses
, aigrsResponseStatus
) where
import Network.AWS.Lens
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
import Network.AWS.WorkSpaces.Types
import Network.AWS.WorkSpaces.Types.Product
-- | /See:/ 'associateIPGroups' smart constructor.
data AssociateIPGroups = AssociateIPGroups'
{ _aigDirectoryId :: !Text
, _aigGroupIds :: ![Text]
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'AssociateIPGroups' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'aigDirectoryId' - The ID of the directory.
--
-- * 'aigGroupIds' - The IDs of one or more IP access control groups.
associateIPGroups
:: Text -- ^ 'aigDirectoryId'
-> AssociateIPGroups
associateIPGroups pDirectoryId_ =
AssociateIPGroups' {_aigDirectoryId = pDirectoryId_, _aigGroupIds = mempty}
-- | The ID of the directory.
aigDirectoryId :: Lens' AssociateIPGroups Text
aigDirectoryId = lens _aigDirectoryId (\ s a -> s{_aigDirectoryId = a})
-- | The IDs of one or more IP access control groups.
aigGroupIds :: Lens' AssociateIPGroups [Text]
aigGroupIds = lens _aigGroupIds (\ s a -> s{_aigGroupIds = a}) . _Coerce
instance AWSRequest AssociateIPGroups where
type Rs AssociateIPGroups = AssociateIPGroupsResponse
request = postJSON workSpaces
response
= receiveEmpty
(\ s h x ->
AssociateIPGroupsResponse' <$> (pure (fromEnum s)))
instance Hashable AssociateIPGroups where
instance NFData AssociateIPGroups where
instance ToHeaders AssociateIPGroups where
toHeaders
= const
(mconcat
["X-Amz-Target" =#
("WorkspacesService.AssociateIpGroups" ::
ByteString),
"Content-Type" =#
("application/x-amz-json-1.1" :: ByteString)])
instance ToJSON AssociateIPGroups where
toJSON AssociateIPGroups'{..}
= object
(catMaybes
[Just ("DirectoryId" .= _aigDirectoryId),
Just ("GroupIds" .= _aigGroupIds)])
instance ToPath AssociateIPGroups where
toPath = const "/"
instance ToQuery AssociateIPGroups where
toQuery = const mempty
-- | /See:/ 'associateIPGroupsResponse' smart constructor.
newtype AssociateIPGroupsResponse = AssociateIPGroupsResponse'
{ _aigrsResponseStatus :: Int
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'AssociateIPGroupsResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'aigrsResponseStatus' - -- | The response status code.
associateIPGroupsResponse
:: Int -- ^ 'aigrsResponseStatus'
-> AssociateIPGroupsResponse
associateIPGroupsResponse pResponseStatus_ =
AssociateIPGroupsResponse' {_aigrsResponseStatus = pResponseStatus_}
-- | -- | The response status code.
aigrsResponseStatus :: Lens' AssociateIPGroupsResponse Int
aigrsResponseStatus = lens _aigrsResponseStatus (\ s a -> s{_aigrsResponseStatus = a})
instance NFData AssociateIPGroupsResponse where