amazonka-appsync-1.6.0: gen/Network/AWS/AppSync/GetSchemaCreationStatus.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.AppSync.GetSchemaCreationStatus
-- 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)
--
-- Retrieves the current status of a schema creation operation.
--
--
module Network.AWS.AppSync.GetSchemaCreationStatus
(
-- * Creating a Request
getSchemaCreationStatus
, GetSchemaCreationStatus
-- * Request Lenses
, gscsApiId
-- * Destructuring the Response
, getSchemaCreationStatusResponse
, GetSchemaCreationStatusResponse
-- * Response Lenses
, gscsrsStatus
, gscsrsDetails
, gscsrsResponseStatus
) where
import Network.AWS.AppSync.Types
import Network.AWS.AppSync.Types.Product
import Network.AWS.Lens
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
-- | /See:/ 'getSchemaCreationStatus' smart constructor.
newtype GetSchemaCreationStatus = GetSchemaCreationStatus'
{ _gscsApiId :: Text
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'GetSchemaCreationStatus' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'gscsApiId' - The API ID.
getSchemaCreationStatus
:: Text -- ^ 'gscsApiId'
-> GetSchemaCreationStatus
getSchemaCreationStatus pApiId_ =
GetSchemaCreationStatus' {_gscsApiId = pApiId_}
-- | The API ID.
gscsApiId :: Lens' GetSchemaCreationStatus Text
gscsApiId = lens _gscsApiId (\ s a -> s{_gscsApiId = a})
instance AWSRequest GetSchemaCreationStatus where
type Rs GetSchemaCreationStatus =
GetSchemaCreationStatusResponse
request = get appSync
response
= receiveJSON
(\ s h x ->
GetSchemaCreationStatusResponse' <$>
(x .?> "status") <*> (x .?> "details") <*>
(pure (fromEnum s)))
instance Hashable GetSchemaCreationStatus where
instance NFData GetSchemaCreationStatus where
instance ToHeaders GetSchemaCreationStatus where
toHeaders
= const
(mconcat
["Content-Type" =#
("application/x-amz-json-1.1" :: ByteString)])
instance ToPath GetSchemaCreationStatus where
toPath GetSchemaCreationStatus'{..}
= mconcat
["/v1/apis/", toBS _gscsApiId, "/schemacreation"]
instance ToQuery GetSchemaCreationStatus where
toQuery = const mempty
-- | /See:/ 'getSchemaCreationStatusResponse' smart constructor.
data GetSchemaCreationStatusResponse = GetSchemaCreationStatusResponse'
{ _gscsrsStatus :: !(Maybe SchemaStatus)
, _gscsrsDetails :: !(Maybe Text)
, _gscsrsResponseStatus :: !Int
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'GetSchemaCreationStatusResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'gscsrsStatus' - The current state of the schema (PROCESSING, ACTIVE, or DELETING). Once the schema is in the ACTIVE state, you can add data.
--
-- * 'gscsrsDetails' - Detailed information about the status of the schema creation operation.
--
-- * 'gscsrsResponseStatus' - -- | The response status code.
getSchemaCreationStatusResponse
:: Int -- ^ 'gscsrsResponseStatus'
-> GetSchemaCreationStatusResponse
getSchemaCreationStatusResponse pResponseStatus_ =
GetSchemaCreationStatusResponse'
{ _gscsrsStatus = Nothing
, _gscsrsDetails = Nothing
, _gscsrsResponseStatus = pResponseStatus_
}
-- | The current state of the schema (PROCESSING, ACTIVE, or DELETING). Once the schema is in the ACTIVE state, you can add data.
gscsrsStatus :: Lens' GetSchemaCreationStatusResponse (Maybe SchemaStatus)
gscsrsStatus = lens _gscsrsStatus (\ s a -> s{_gscsrsStatus = a})
-- | Detailed information about the status of the schema creation operation.
gscsrsDetails :: Lens' GetSchemaCreationStatusResponse (Maybe Text)
gscsrsDetails = lens _gscsrsDetails (\ s a -> s{_gscsrsDetails = a})
-- | -- | The response status code.
gscsrsResponseStatus :: Lens' GetSchemaCreationStatusResponse Int
gscsrsResponseStatus = lens _gscsrsResponseStatus (\ s a -> s{_gscsrsResponseStatus = a})
instance NFData GetSchemaCreationStatusResponse where