{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.MediaConvert.CancelJob -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Permanently cancel a job. Once you have canceled a job, you can\'t start -- it again. module Amazonka.MediaConvert.CancelJob ( -- * Creating a Request CancelJob (..), newCancelJob, -- * Request Lenses cancelJob_id, -- * Destructuring the Response CancelJobResponse (..), newCancelJobResponse, -- * Response Lenses cancelJobResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.MediaConvert.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newCancelJob' smart constructor. data CancelJob = CancelJob' { -- | The Job ID of the job to be cancelled. id :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CancelJob' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'id', 'cancelJob_id' - The Job ID of the job to be cancelled. newCancelJob :: -- | 'id' Prelude.Text -> CancelJob newCancelJob pId_ = CancelJob' {id = pId_} -- | The Job ID of the job to be cancelled. cancelJob_id :: Lens.Lens' CancelJob Prelude.Text cancelJob_id = Lens.lens (\CancelJob' {id} -> id) (\s@CancelJob' {} a -> s {id = a} :: CancelJob) instance Core.AWSRequest CancelJob where type AWSResponse CancelJob = CancelJobResponse request overrides = Request.delete (overrides defaultService) response = Response.receiveEmpty ( \s h x -> CancelJobResponse' Prelude.<$> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable CancelJob where hashWithSalt _salt CancelJob' {..} = _salt `Prelude.hashWithSalt` id instance Prelude.NFData CancelJob where rnf CancelJob' {..} = Prelude.rnf id instance Data.ToHeaders CancelJob where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath CancelJob where toPath CancelJob' {..} = Prelude.mconcat ["/2017-08-29/jobs/", Data.toBS id] instance Data.ToQuery CancelJob where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newCancelJobResponse' smart constructor. data CancelJobResponse = CancelJobResponse' { -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'CancelJobResponse' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'httpStatus', 'cancelJobResponse_httpStatus' - The response's http status code. newCancelJobResponse :: -- | 'httpStatus' Prelude.Int -> CancelJobResponse newCancelJobResponse pHttpStatus_ = CancelJobResponse' {httpStatus = pHttpStatus_} -- | The response's http status code. cancelJobResponse_httpStatus :: Lens.Lens' CancelJobResponse Prelude.Int cancelJobResponse_httpStatus = Lens.lens (\CancelJobResponse' {httpStatus} -> httpStatus) (\s@CancelJobResponse' {} a -> s {httpStatus = a} :: CancelJobResponse) instance Prelude.NFData CancelJobResponse where rnf CancelJobResponse' {..} = Prelude.rnf httpStatus