{-# 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.GetJob -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Retrieve the JSON for a specific completed transcoding job. module Amazonka.MediaConvert.GetJob ( -- * Creating a Request GetJob (..), newGetJob, -- * Request Lenses getJob_id, -- * Destructuring the Response GetJobResponse (..), newGetJobResponse, -- * Response Lenses getJobResponse_job, getJobResponse_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:/ 'newGetJob' smart constructor. data GetJob = GetJob' { -- | the job ID of the job. id :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetJob' 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', 'getJob_id' - the job ID of the job. newGetJob :: -- | 'id' Prelude.Text -> GetJob newGetJob pId_ = GetJob' {id = pId_} -- | the job ID of the job. getJob_id :: Lens.Lens' GetJob Prelude.Text getJob_id = Lens.lens (\GetJob' {id} -> id) (\s@GetJob' {} a -> s {id = a} :: GetJob) instance Core.AWSRequest GetJob where type AWSResponse GetJob = GetJobResponse request overrides = Request.get (overrides defaultService) response = Response.receiveJSON ( \s h x -> GetJobResponse' Prelude.<$> (x Data..?> "job") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable GetJob where hashWithSalt _salt GetJob' {..} = _salt `Prelude.hashWithSalt` id instance Prelude.NFData GetJob where rnf GetJob' {..} = Prelude.rnf id instance Data.ToHeaders GetJob where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath GetJob where toPath GetJob' {..} = Prelude.mconcat ["/2017-08-29/jobs/", Data.toBS id] instance Data.ToQuery GetJob where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newGetJobResponse' smart constructor. data GetJobResponse = GetJobResponse' { -- | Each job converts an input file into an output file or files. For more -- information, see the User Guide at -- https:\/\/docs.aws.amazon.com\/mediaconvert\/latest\/ug\/what-is.html job :: Prelude.Maybe Job, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetJobResponse' 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: -- -- 'job', 'getJobResponse_job' - Each job converts an input file into an output file or files. For more -- information, see the User Guide at -- https:\/\/docs.aws.amazon.com\/mediaconvert\/latest\/ug\/what-is.html -- -- 'httpStatus', 'getJobResponse_httpStatus' - The response's http status code. newGetJobResponse :: -- | 'httpStatus' Prelude.Int -> GetJobResponse newGetJobResponse pHttpStatus_ = GetJobResponse' { job = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Each job converts an input file into an output file or files. For more -- information, see the User Guide at -- https:\/\/docs.aws.amazon.com\/mediaconvert\/latest\/ug\/what-is.html getJobResponse_job :: Lens.Lens' GetJobResponse (Prelude.Maybe Job) getJobResponse_job = Lens.lens (\GetJobResponse' {job} -> job) (\s@GetJobResponse' {} a -> s {job = a} :: GetJobResponse) -- | The response's http status code. getJobResponse_httpStatus :: Lens.Lens' GetJobResponse Prelude.Int getJobResponse_httpStatus = Lens.lens (\GetJobResponse' {httpStatus} -> httpStatus) (\s@GetJobResponse' {} a -> s {httpStatus = a} :: GetJobResponse) instance Prelude.NFData GetJobResponse where rnf GetJobResponse' {..} = Prelude.rnf job `Prelude.seq` Prelude.rnf httpStatus