{-# 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.ImportExport.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) -- -- This operation cancels a specified job. Only the job owner can cancel -- it. The operation fails if the job has already started or is complete. module Amazonka.ImportExport.CancelJob ( -- * Creating a Request CancelJob (..), newCancelJob, -- * Request Lenses cancelJob_aPIVersion, cancelJob_jobId, -- * Destructuring the Response CancelJobResponse (..), newCancelJobResponse, -- * Response Lenses cancelJobResponse_success, 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.ImportExport.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | Input structure for the CancelJob operation. -- -- /See:/ 'newCancelJob' smart constructor. data CancelJob = CancelJob' { aPIVersion :: Prelude.Maybe Prelude.Text, jobId :: 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: -- -- 'aPIVersion', 'cancelJob_aPIVersion' - Undocumented member. -- -- 'jobId', 'cancelJob_jobId' - Undocumented member. newCancelJob :: -- | 'jobId' Prelude.Text -> CancelJob newCancelJob pJobId_ = CancelJob' { aPIVersion = Prelude.Nothing, jobId = pJobId_ } -- | Undocumented member. cancelJob_aPIVersion :: Lens.Lens' CancelJob (Prelude.Maybe Prelude.Text) cancelJob_aPIVersion = Lens.lens (\CancelJob' {aPIVersion} -> aPIVersion) (\s@CancelJob' {} a -> s {aPIVersion = a} :: CancelJob) -- | Undocumented member. cancelJob_jobId :: Lens.Lens' CancelJob Prelude.Text cancelJob_jobId = Lens.lens (\CancelJob' {jobId} -> jobId) (\s@CancelJob' {} a -> s {jobId = a} :: CancelJob) instance Core.AWSRequest CancelJob where type AWSResponse CancelJob = CancelJobResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXMLWrapper "CancelJobResult" ( \s h x -> CancelJobResponse' Prelude.<$> (x Data..@? "Success") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable CancelJob where hashWithSalt _salt CancelJob' {..} = _salt `Prelude.hashWithSalt` aPIVersion `Prelude.hashWithSalt` jobId instance Prelude.NFData CancelJob where rnf CancelJob' {..} = Prelude.rnf aPIVersion `Prelude.seq` Prelude.rnf jobId instance Data.ToHeaders CancelJob where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath CancelJob where toPath = Prelude.const "/" instance Data.ToQuery CancelJob where toQuery CancelJob' {..} = Prelude.mconcat [ "Operation=CancelJob", "Action" Data.=: ("CancelJob" :: Prelude.ByteString), "Version" Data.=: ("2010-06-01" :: Prelude.ByteString), "APIVersion" Data.=: aPIVersion, "JobId" Data.=: jobId ] -- | Output structure for the CancelJob operation. -- -- /See:/ 'newCancelJobResponse' smart constructor. data CancelJobResponse = CancelJobResponse' { success :: Prelude.Maybe Prelude.Bool, -- | 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: -- -- 'success', 'cancelJobResponse_success' - Undocumented member. -- -- 'httpStatus', 'cancelJobResponse_httpStatus' - The response's http status code. newCancelJobResponse :: -- | 'httpStatus' Prelude.Int -> CancelJobResponse newCancelJobResponse pHttpStatus_ = CancelJobResponse' { success = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Undocumented member. cancelJobResponse_success :: Lens.Lens' CancelJobResponse (Prelude.Maybe Prelude.Bool) cancelJobResponse_success = Lens.lens (\CancelJobResponse' {success} -> success) (\s@CancelJobResponse' {} a -> s {success = a} :: CancelJobResponse) -- | 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 success `Prelude.seq` Prelude.rnf httpStatus