{-# 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.Batch.DeleteComputeEnvironment -- Copyright : (c) 2013-2017 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Deletes an AWS Batch compute environment. -- -- -- Before you can delete a compute environment, you must set its state to @DISABLED@ with the 'UpdateComputeEnvironment' API operation and disassociate it from any job queues with the 'UpdateJobQueue' API operation. -- module Network.AWS.Batch.DeleteComputeEnvironment ( -- * Creating a Request deleteComputeEnvironment , DeleteComputeEnvironment -- * Request Lenses , dceComputeEnvironment -- * Destructuring the Response , deleteComputeEnvironmentResponse , DeleteComputeEnvironmentResponse -- * Response Lenses , dcersResponseStatus ) where import Network.AWS.Batch.Types import Network.AWS.Batch.Types.Product import Network.AWS.Lens import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response -- | /See:/ 'deleteComputeEnvironment' smart constructor. newtype DeleteComputeEnvironment = DeleteComputeEnvironment' { _dceComputeEnvironment :: Text } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'DeleteComputeEnvironment' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'dceComputeEnvironment' - The name or Amazon Resource Name (ARN) of the compute environment to delete. deleteComputeEnvironment :: Text -- ^ 'dceComputeEnvironment' -> DeleteComputeEnvironment deleteComputeEnvironment pComputeEnvironment_ = DeleteComputeEnvironment' {_dceComputeEnvironment = pComputeEnvironment_} -- | The name or Amazon Resource Name (ARN) of the compute environment to delete. dceComputeEnvironment :: Lens' DeleteComputeEnvironment Text dceComputeEnvironment = lens _dceComputeEnvironment (\ s a -> s{_dceComputeEnvironment = a}); instance AWSRequest DeleteComputeEnvironment where type Rs DeleteComputeEnvironment = DeleteComputeEnvironmentResponse request = postJSON batch response = receiveEmpty (\ s h x -> DeleteComputeEnvironmentResponse' <$> (pure (fromEnum s))) instance Hashable DeleteComputeEnvironment where instance NFData DeleteComputeEnvironment where instance ToHeaders DeleteComputeEnvironment where toHeaders = const (mconcat ["Content-Type" =# ("application/x-amz-json-1.1" :: ByteString)]) instance ToJSON DeleteComputeEnvironment where toJSON DeleteComputeEnvironment'{..} = object (catMaybes [Just ("computeEnvironment" .= _dceComputeEnvironment)]) instance ToPath DeleteComputeEnvironment where toPath = const "/v1/deletecomputeenvironment" instance ToQuery DeleteComputeEnvironment where toQuery = const mempty -- | /See:/ 'deleteComputeEnvironmentResponse' smart constructor. newtype DeleteComputeEnvironmentResponse = DeleteComputeEnvironmentResponse' { _dcersResponseStatus :: Int } deriving (Eq, Read, Show, Data, Typeable, Generic) -- | Creates a value of 'DeleteComputeEnvironmentResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'dcersResponseStatus' - -- | The response status code. deleteComputeEnvironmentResponse :: Int -- ^ 'dcersResponseStatus' -> DeleteComputeEnvironmentResponse deleteComputeEnvironmentResponse pResponseStatus_ = DeleteComputeEnvironmentResponse' {_dcersResponseStatus = pResponseStatus_} -- | -- | The response status code. dcersResponseStatus :: Lens' DeleteComputeEnvironmentResponse Int dcersResponseStatus = lens _dcersResponseStatus (\ s a -> s{_dcersResponseStatus = a}); instance NFData DeleteComputeEnvironmentResponse where