{-# 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.Batch.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) -- -- Cancels a job in an Batch job queue. Jobs that are in the @SUBMITTED@, -- @PENDING@, or @RUNNABLE@ state are canceled. Jobs that progressed to the -- @STARTING@ or @RUNNING@ state aren\'t canceled. However, the API -- operation still succeeds, even if no job is canceled. These jobs must be -- terminated with the TerminateJob operation. module Amazonka.Batch.CancelJob ( -- * Creating a Request CancelJob (..), newCancelJob, -- * Request Lenses cancelJob_jobId, cancelJob_reason, -- * Destructuring the Response CancelJobResponse (..), newCancelJobResponse, -- * Response Lenses cancelJobResponse_httpStatus, ) where import Amazonka.Batch.Types import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | Contains the parameters for @CancelJob@. -- -- /See:/ 'newCancelJob' smart constructor. data CancelJob = CancelJob' { -- | The Batch job ID of the job to cancel. jobId :: Prelude.Text, -- | A message to attach to the job that explains the reason for canceling -- it. This message is returned by future DescribeJobs operations on the -- job. This message is also recorded in the Batch activity logs. reason :: 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: -- -- 'jobId', 'cancelJob_jobId' - The Batch job ID of the job to cancel. -- -- 'reason', 'cancelJob_reason' - A message to attach to the job that explains the reason for canceling -- it. This message is returned by future DescribeJobs operations on the -- job. This message is also recorded in the Batch activity logs. newCancelJob :: -- | 'jobId' Prelude.Text -> -- | 'reason' Prelude.Text -> CancelJob newCancelJob pJobId_ pReason_ = CancelJob' {jobId = pJobId_, reason = pReason_} -- | The Batch job ID of the job to cancel. cancelJob_jobId :: Lens.Lens' CancelJob Prelude.Text cancelJob_jobId = Lens.lens (\CancelJob' {jobId} -> jobId) (\s@CancelJob' {} a -> s {jobId = a} :: CancelJob) -- | A message to attach to the job that explains the reason for canceling -- it. This message is returned by future DescribeJobs operations on the -- job. This message is also recorded in the Batch activity logs. cancelJob_reason :: Lens.Lens' CancelJob Prelude.Text cancelJob_reason = Lens.lens (\CancelJob' {reason} -> reason) (\s@CancelJob' {} a -> s {reason = a} :: CancelJob) instance Core.AWSRequest CancelJob where type AWSResponse CancelJob = CancelJobResponse request overrides = Request.postJSON (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` jobId `Prelude.hashWithSalt` reason instance Prelude.NFData CancelJob where rnf CancelJob' {..} = Prelude.rnf jobId `Prelude.seq` Prelude.rnf reason instance Data.ToHeaders CancelJob where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON CancelJob where toJSON CancelJob' {..} = Data.object ( Prelude.catMaybes [ Prelude.Just ("jobId" Data..= jobId), Prelude.Just ("reason" Data..= reason) ] ) instance Data.ToPath CancelJob where toPath = Prelude.const "/v1/canceljob" 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