amazonka-glue-1.6.0: gen/Network/AWS/Glue/GetCatalogImportStatus.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.Glue.GetCatalogImportStatus
-- 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 status of a migration operation.
--
--
module Network.AWS.Glue.GetCatalogImportStatus
(
-- * Creating a Request
getCatalogImportStatus
, GetCatalogImportStatus
-- * Request Lenses
, gcisCatalogId
-- * Destructuring the Response
, getCatalogImportStatusResponse
, GetCatalogImportStatusResponse
-- * Response Lenses
, gcisrsImportStatus
, gcisrsResponseStatus
) where
import Network.AWS.Glue.Types
import Network.AWS.Glue.Types.Product
import Network.AWS.Lens
import Network.AWS.Prelude
import Network.AWS.Request
import Network.AWS.Response
-- | /See:/ 'getCatalogImportStatus' smart constructor.
newtype GetCatalogImportStatus = GetCatalogImportStatus'
{ _gcisCatalogId :: Maybe Text
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'GetCatalogImportStatus' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'gcisCatalogId' - The ID of the catalog to migrate. Currently, this should be the AWS account ID.
getCatalogImportStatus
:: GetCatalogImportStatus
getCatalogImportStatus = GetCatalogImportStatus' {_gcisCatalogId = Nothing}
-- | The ID of the catalog to migrate. Currently, this should be the AWS account ID.
gcisCatalogId :: Lens' GetCatalogImportStatus (Maybe Text)
gcisCatalogId = lens _gcisCatalogId (\ s a -> s{_gcisCatalogId = a})
instance AWSRequest GetCatalogImportStatus where
type Rs GetCatalogImportStatus =
GetCatalogImportStatusResponse
request = postJSON glue
response
= receiveJSON
(\ s h x ->
GetCatalogImportStatusResponse' <$>
(x .?> "ImportStatus") <*> (pure (fromEnum s)))
instance Hashable GetCatalogImportStatus where
instance NFData GetCatalogImportStatus where
instance ToHeaders GetCatalogImportStatus where
toHeaders
= const
(mconcat
["X-Amz-Target" =#
("AWSGlue.GetCatalogImportStatus" :: ByteString),
"Content-Type" =#
("application/x-amz-json-1.1" :: ByteString)])
instance ToJSON GetCatalogImportStatus where
toJSON GetCatalogImportStatus'{..}
= object
(catMaybes [("CatalogId" .=) <$> _gcisCatalogId])
instance ToPath GetCatalogImportStatus where
toPath = const "/"
instance ToQuery GetCatalogImportStatus where
toQuery = const mempty
-- | /See:/ 'getCatalogImportStatusResponse' smart constructor.
data GetCatalogImportStatusResponse = GetCatalogImportStatusResponse'
{ _gcisrsImportStatus :: !(Maybe CatalogImportStatus)
, _gcisrsResponseStatus :: !Int
} deriving (Eq, Read, Show, Data, Typeable, Generic)
-- | Creates a value of 'GetCatalogImportStatusResponse' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'gcisrsImportStatus' - The status of the specified catalog migration.
--
-- * 'gcisrsResponseStatus' - -- | The response status code.
getCatalogImportStatusResponse
:: Int -- ^ 'gcisrsResponseStatus'
-> GetCatalogImportStatusResponse
getCatalogImportStatusResponse pResponseStatus_ =
GetCatalogImportStatusResponse'
{_gcisrsImportStatus = Nothing, _gcisrsResponseStatus = pResponseStatus_}
-- | The status of the specified catalog migration.
gcisrsImportStatus :: Lens' GetCatalogImportStatusResponse (Maybe CatalogImportStatus)
gcisrsImportStatus = lens _gcisrsImportStatus (\ s a -> s{_gcisrsImportStatus = a})
-- | -- | The response status code.
gcisrsResponseStatus :: Lens' GetCatalogImportStatusResponse Int
gcisrsResponseStatus = lens _gcisrsResponseStatus (\ s a -> s{_gcisrsResponseStatus = a})
instance NFData GetCatalogImportStatusResponse where