{-# 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.CognitoSync.SetIdentityPoolConfiguration -- Copyright : (c) 2013-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Sets the necessary configuration for push sync. -- -- This API can only be called with developer credentials. You cannot call this API with the temporary user credentials provided by Cognito Identity. module Network.AWS.CognitoSync.SetIdentityPoolConfiguration ( -- * Creating a Request setIdentityPoolConfiguration , SetIdentityPoolConfiguration -- * Request Lenses , sipcCognitoStreams , sipcPushSync , sipcIdentityPoolId -- * Destructuring the Response , setIdentityPoolConfigurationResponse , SetIdentityPoolConfigurationResponse -- * Response Lenses , sipcrsIdentityPoolId , sipcrsCognitoStreams , sipcrsPushSync , sipcrsResponseStatus ) where import Network.AWS.CognitoSync.Types import Network.AWS.CognitoSync.Types.Product import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | The input for the SetIdentityPoolConfiguration operation. -- -- /See:/ 'setIdentityPoolConfiguration' smart constructor. data SetIdentityPoolConfiguration = SetIdentityPoolConfiguration' { _sipcCognitoStreams :: !(Maybe CognitoStreams) , _sipcPushSync :: !(Maybe PushSync) , _sipcIdentityPoolId :: !Text } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'SetIdentityPoolConfiguration' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'sipcCognitoStreams' -- -- * 'sipcPushSync' -- -- * 'sipcIdentityPoolId' setIdentityPoolConfiguration :: Text -- ^ 'sipcIdentityPoolId' -> SetIdentityPoolConfiguration setIdentityPoolConfiguration pIdentityPoolId_ = SetIdentityPoolConfiguration' { _sipcCognitoStreams = Nothing , _sipcPushSync = Nothing , _sipcIdentityPoolId = pIdentityPoolId_ } -- | Options to apply to this identity pool for Amazon Cognito streams. sipcCognitoStreams :: Lens' SetIdentityPoolConfiguration (Maybe CognitoStreams) sipcCognitoStreams = lens _sipcCognitoStreams (\ s a -> s{_sipcCognitoStreams = a}); -- | Options to apply to this identity pool for push synchronization. sipcPushSync :: Lens' SetIdentityPoolConfiguration (Maybe PushSync) sipcPushSync = lens _sipcPushSync (\ s a -> s{_sipcPushSync = a}); -- | A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. This is the ID of the pool to modify. sipcIdentityPoolId :: Lens' SetIdentityPoolConfiguration Text sipcIdentityPoolId = lens _sipcIdentityPoolId (\ s a -> s{_sipcIdentityPoolId = a}); instance AWSRequest SetIdentityPoolConfiguration where type Rs SetIdentityPoolConfiguration = SetIdentityPoolConfigurationResponse request = postJSON cognitoSync response = receiveJSON (\ s h x -> SetIdentityPoolConfigurationResponse' <$> (x .?> "IdentityPoolId") <*> (x .?> "CognitoStreams") <*> (x .?> "PushSync") <*> (pure (fromEnum s))) instance Hashable SetIdentityPoolConfiguration instance NFData SetIdentityPoolConfiguration instance ToHeaders SetIdentityPoolConfiguration where toHeaders = const (mconcat ["Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON SetIdentityPoolConfiguration where toJSON SetIdentityPoolConfiguration'{..} = object (catMaybes [("CognitoStreams" .=) <$> _sipcCognitoStreams, ("PushSync" .=) <$> _sipcPushSync]) instance ToPath SetIdentityPoolConfiguration where toPath SetIdentityPoolConfiguration'{..} = mconcat ["/identitypools/", toBS _sipcIdentityPoolId, "/configuration"] instance ToQuery SetIdentityPoolConfiguration where toQuery = const mempty -- | The output for the SetIdentityPoolConfiguration operation -- -- /See:/ 'setIdentityPoolConfigurationResponse' smart constructor. data SetIdentityPoolConfigurationResponse = SetIdentityPoolConfigurationResponse' { _sipcrsIdentityPoolId :: !(Maybe Text) , _sipcrsCognitoStreams :: !(Maybe CognitoStreams) , _sipcrsPushSync :: !(Maybe PushSync) , _sipcrsResponseStatus :: !Int } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'SetIdentityPoolConfigurationResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'sipcrsIdentityPoolId' -- -- * 'sipcrsCognitoStreams' -- -- * 'sipcrsPushSync' -- -- * 'sipcrsResponseStatus' setIdentityPoolConfigurationResponse :: Int -- ^ 'sipcrsResponseStatus' -> SetIdentityPoolConfigurationResponse setIdentityPoolConfigurationResponse pResponseStatus_ = SetIdentityPoolConfigurationResponse' { _sipcrsIdentityPoolId = Nothing , _sipcrsCognitoStreams = Nothing , _sipcrsPushSync = Nothing , _sipcrsResponseStatus = pResponseStatus_ } -- | A name-spaced GUID (for example, us-east-1:23EC4050-6AEA-7089-A2DD-08002EXAMPLE) created by Amazon Cognito. sipcrsIdentityPoolId :: Lens' SetIdentityPoolConfigurationResponse (Maybe Text) sipcrsIdentityPoolId = lens _sipcrsIdentityPoolId (\ s a -> s{_sipcrsIdentityPoolId = a}); -- | Options to apply to this identity pool for Amazon Cognito streams. sipcrsCognitoStreams :: Lens' SetIdentityPoolConfigurationResponse (Maybe CognitoStreams) sipcrsCognitoStreams = lens _sipcrsCognitoStreams (\ s a -> s{_sipcrsCognitoStreams = a}); -- | Options to apply to this identity pool for push synchronization. sipcrsPushSync :: Lens' SetIdentityPoolConfigurationResponse (Maybe PushSync) sipcrsPushSync = lens _sipcrsPushSync (\ s a -> s{_sipcrsPushSync = a}); -- | The response status code. sipcrsResponseStatus :: Lens' SetIdentityPoolConfigurationResponse Int sipcrsResponseStatus = lens _sipcrsResponseStatus (\ s a -> s{_sipcrsResponseStatus = a}); instance NFData SetIdentityPoolConfigurationResponse