{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- Module : Network.AWS.ElasticTranscoder.UpdatePipelineStatus -- Copyright : (c) 2013-2014 Brendan Hay -- License : This Source Code Form is subject to the terms of -- the Mozilla Public License, v. 2.0. -- A copy of the MPL can be found in the LICENSE file or -- you can obtain it at http://mozilla.org/MPL/2.0/. -- Maintainer : Brendan Hay -- Stability : experimental -- Portability : non-portable (GHC extensions) -- -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | The UpdatePipelineStatus operation pauses or reactivates a pipeline, so that -- the pipeline stops or restarts the processing of jobs. -- -- Changing the pipeline status is useful if you want to cancel one or more -- jobs. You can't cancel jobs after Elastic Transcoder has started processing -- them; if you pause the pipeline to which you submitted the jobs, you have -- more time to get the job IDs for the jobs that you want to cancel, and to -- send a 'CancelJob' request. -- -- module Network.AWS.ElasticTranscoder.UpdatePipelineStatus ( -- * Request UpdatePipelineStatus -- ** Request constructor , updatePipelineStatus -- ** Request lenses , upsId , upsStatus -- * Response , UpdatePipelineStatusResponse -- ** Response constructor , updatePipelineStatusResponse -- ** Response lenses , upsrPipeline ) where import Network.AWS.Data (Object) import Network.AWS.Prelude import Network.AWS.Request.RestJSON import Network.AWS.ElasticTranscoder.Types import qualified GHC.Exts data UpdatePipelineStatus = UpdatePipelineStatus { _upsId :: Text , _upsStatus :: Text } deriving (Eq, Ord, Read, Show) -- | 'UpdatePipelineStatus' constructor. -- -- The fields accessible through corresponding lenses are: -- -- * 'upsId' @::@ 'Text' -- -- * 'upsStatus' @::@ 'Text' -- updatePipelineStatus :: Text -- ^ 'upsId' -> Text -- ^ 'upsStatus' -> UpdatePipelineStatus updatePipelineStatus p1 p2 = UpdatePipelineStatus { _upsId = p1 , _upsStatus = p2 } -- | The identifier of the pipeline to update. upsId :: Lens' UpdatePipelineStatus Text upsId = lens _upsId (\s a -> s { _upsId = a }) -- | The desired status of the pipeline: -- -- 'Active': The pipeline is processing jobs. 'Paused': The pipeline is not -- currently processing jobs. upsStatus :: Lens' UpdatePipelineStatus Text upsStatus = lens _upsStatus (\s a -> s { _upsStatus = a }) newtype UpdatePipelineStatusResponse = UpdatePipelineStatusResponse { _upsrPipeline :: Maybe Pipeline } deriving (Eq, Read, Show) -- | 'UpdatePipelineStatusResponse' constructor. -- -- The fields accessible through corresponding lenses are: -- -- * 'upsrPipeline' @::@ 'Maybe' 'Pipeline' -- updatePipelineStatusResponse :: UpdatePipelineStatusResponse updatePipelineStatusResponse = UpdatePipelineStatusResponse { _upsrPipeline = Nothing } -- | A section of the response body that provides information about the pipeline. upsrPipeline :: Lens' UpdatePipelineStatusResponse (Maybe Pipeline) upsrPipeline = lens _upsrPipeline (\s a -> s { _upsrPipeline = a }) instance ToPath UpdatePipelineStatus where toPath UpdatePipelineStatus{..} = mconcat [ "/2012-09-25/pipelines/" , toText _upsId , "/status" ] instance ToQuery UpdatePipelineStatus where toQuery = const mempty instance ToHeaders UpdatePipelineStatus instance ToJSON UpdatePipelineStatus where toJSON UpdatePipelineStatus{..} = object [ "Status" .= _upsStatus ] instance AWSRequest UpdatePipelineStatus where type Sv UpdatePipelineStatus = ElasticTranscoder type Rs UpdatePipelineStatus = UpdatePipelineStatusResponse request = post response = jsonResponse instance FromJSON UpdatePipelineStatusResponse where parseJSON = withObject "UpdatePipelineStatusResponse" $ \o -> UpdatePipelineStatusResponse <$> o .:? "Pipeline"