amazonka-guardduty-1.6.0: gen/Network/AWS/GuardDuty/ListInvitations.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.GuardDuty.ListInvitations
-- 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)
--
-- Lists all GuardDuty membership invitations that were sent to the current AWS account.
--
-- This operation returns paginated results.
module Network.AWS.GuardDuty.ListInvitations
(
-- * Creating a Request
listInvitations
, ListInvitations
-- * Request Lenses
, liNextToken
, liMaxResults
-- * Destructuring the Response
, listInvitationsResponse
, ListInvitationsResponse
-- * Response Lenses
, lirsInvitations
, lirsNextToken
, lirsResponseStatus
) where
import Network.AWS.GuardDuty.Types
import Network.AWS.GuardDuty.Types.Product
import Network.AWS.Lens
import Network.AWS.Pager
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
-- | /See:/ 'listInvitations' smart constructor.
data ListInvitations = ListInvitations'
{ _liNextToken :: !(Maybe Text)
, _liMaxResults :: !(Maybe Nat)
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'ListInvitations' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'liNextToken' - You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the ListInvitations action. Subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
--
-- * 'liMaxResults' - You can use this parameter to indicate the maximum number of invitations you want in the response. The default value is 50. The maximum value is 50.
listInvitations
:: ListInvitations
listInvitations =
ListInvitations' {_liNextToken = Nothing, _liMaxResults = Nothing}
-- | You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the ListInvitations action. Subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
liNextToken :: Lens' ListInvitations (Maybe Text)
liNextToken = lens _liNextToken (\ s a -> s{_liNextToken = a})
-- | You can use this parameter to indicate the maximum number of invitations you want in the response. The default value is 50. The maximum value is 50.
liMaxResults :: Lens' ListInvitations (Maybe Natural)
liMaxResults = lens _liMaxResults (\ s a -> s{_liMaxResults = a}) . mapping _Nat
instance AWSPager ListInvitations where
page rq rs
| stop (rs ^. lirsNextToken) = Nothing
| stop (rs ^. lirsInvitations) = Nothing
| otherwise =
Just $ rq & liNextToken .~ rs ^. lirsNextToken
instance AWSRequest ListInvitations where
type Rs ListInvitations = ListInvitationsResponse
request = get guardDuty
response
= receiveJSON
(\ s h x ->
ListInvitationsResponse' <$>
(x .?> "invitations" .!@ mempty) <*>
(x .?> "nextToken")
<*> (pure (fromEnum s)))
instance Hashable ListInvitations where
instance NFData ListInvitations where
instance ToHeaders ListInvitations where
toHeaders
= const
(mconcat
["Content-Type" =#
("application/x-amz-json-1.1" :: ByteString)])
instance ToPath ListInvitations where
toPath = const "/invitation"
instance ToQuery ListInvitations where
toQuery ListInvitations'{..}
= mconcat
["nextToken" =: _liNextToken,
"maxResults" =: _liMaxResults]
-- | /See:/ 'listInvitationsResponse' smart constructor.
data ListInvitationsResponse = ListInvitationsResponse'
{ _lirsInvitations :: !(Maybe [Invitation])
, _lirsNextToken :: !(Maybe Text)
, _lirsResponseStatus :: !Int
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'ListInvitationsResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'lirsInvitations' - Undocumented member.
--
-- * 'lirsNextToken' - Undocumented member.
--
-- * 'lirsResponseStatus' - -- | The response status code.
listInvitationsResponse
:: Int -- ^ 'lirsResponseStatus'
-> ListInvitationsResponse
listInvitationsResponse pResponseStatus_ =
ListInvitationsResponse'
{ _lirsInvitations = Nothing
, _lirsNextToken = Nothing
, _lirsResponseStatus = pResponseStatus_
}
-- | Undocumented member.
lirsInvitations :: Lens' ListInvitationsResponse [Invitation]
lirsInvitations = lens _lirsInvitations (\ s a -> s{_lirsInvitations = a}) . _Default . _Coerce
-- | Undocumented member.
lirsNextToken :: Lens' ListInvitationsResponse (Maybe Text)
lirsNextToken = lens _lirsNextToken (\ s a -> s{_lirsNextToken = a})
-- | -- | The response status code.
lirsResponseStatus :: Lens' ListInvitationsResponse Int
lirsResponseStatus = lens _lirsResponseStatus (\ s a -> s{_lirsResponseStatus = a})
instance NFData ListInvitationsResponse where