{-# 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.Comprehend.DescribeTopicsDetectionJob -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Gets the properties associated with a topic detection job. Use this -- operation to get the status of a detection job. module Amazonka.Comprehend.DescribeTopicsDetectionJob ( -- * Creating a Request DescribeTopicsDetectionJob (..), newDescribeTopicsDetectionJob, -- * Request Lenses describeTopicsDetectionJob_jobId, -- * Destructuring the Response DescribeTopicsDetectionJobResponse (..), newDescribeTopicsDetectionJobResponse, -- * Response Lenses describeTopicsDetectionJobResponse_topicsDetectionJobProperties, describeTopicsDetectionJobResponse_httpStatus, ) where import Amazonka.Comprehend.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 -- | /See:/ 'newDescribeTopicsDetectionJob' smart constructor. data DescribeTopicsDetectionJob = DescribeTopicsDetectionJob' { -- | The identifier assigned by the user to the detection job. jobId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeTopicsDetectionJob' 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', 'describeTopicsDetectionJob_jobId' - The identifier assigned by the user to the detection job. newDescribeTopicsDetectionJob :: -- | 'jobId' Prelude.Text -> DescribeTopicsDetectionJob newDescribeTopicsDetectionJob pJobId_ = DescribeTopicsDetectionJob' {jobId = pJobId_} -- | The identifier assigned by the user to the detection job. describeTopicsDetectionJob_jobId :: Lens.Lens' DescribeTopicsDetectionJob Prelude.Text describeTopicsDetectionJob_jobId = Lens.lens (\DescribeTopicsDetectionJob' {jobId} -> jobId) (\s@DescribeTopicsDetectionJob' {} a -> s {jobId = a} :: DescribeTopicsDetectionJob) instance Core.AWSRequest DescribeTopicsDetectionJob where type AWSResponse DescribeTopicsDetectionJob = DescribeTopicsDetectionJobResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> DescribeTopicsDetectionJobResponse' Prelude.<$> (x Data..?> "TopicsDetectionJobProperties") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable DescribeTopicsDetectionJob where hashWithSalt _salt DescribeTopicsDetectionJob' {..} = _salt `Prelude.hashWithSalt` jobId instance Prelude.NFData DescribeTopicsDetectionJob where rnf DescribeTopicsDetectionJob' {..} = Prelude.rnf jobId instance Data.ToHeaders DescribeTopicsDetectionJob where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "Comprehend_20171127.DescribeTopicsDetectionJob" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON DescribeTopicsDetectionJob where toJSON DescribeTopicsDetectionJob' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("JobId" Data..= jobId)] ) instance Data.ToPath DescribeTopicsDetectionJob where toPath = Prelude.const "/" instance Data.ToQuery DescribeTopicsDetectionJob where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newDescribeTopicsDetectionJobResponse' smart constructor. data DescribeTopicsDetectionJobResponse = DescribeTopicsDetectionJobResponse' { -- | The list of properties for the requested job. topicsDetectionJobProperties :: Prelude.Maybe TopicsDetectionJobProperties, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'DescribeTopicsDetectionJobResponse' 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: -- -- 'topicsDetectionJobProperties', 'describeTopicsDetectionJobResponse_topicsDetectionJobProperties' - The list of properties for the requested job. -- -- 'httpStatus', 'describeTopicsDetectionJobResponse_httpStatus' - The response's http status code. newDescribeTopicsDetectionJobResponse :: -- | 'httpStatus' Prelude.Int -> DescribeTopicsDetectionJobResponse newDescribeTopicsDetectionJobResponse pHttpStatus_ = DescribeTopicsDetectionJobResponse' { topicsDetectionJobProperties = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The list of properties for the requested job. describeTopicsDetectionJobResponse_topicsDetectionJobProperties :: Lens.Lens' DescribeTopicsDetectionJobResponse (Prelude.Maybe TopicsDetectionJobProperties) describeTopicsDetectionJobResponse_topicsDetectionJobProperties = Lens.lens (\DescribeTopicsDetectionJobResponse' {topicsDetectionJobProperties} -> topicsDetectionJobProperties) (\s@DescribeTopicsDetectionJobResponse' {} a -> s {topicsDetectionJobProperties = a} :: DescribeTopicsDetectionJobResponse) -- | The response's http status code. describeTopicsDetectionJobResponse_httpStatus :: Lens.Lens' DescribeTopicsDetectionJobResponse Prelude.Int describeTopicsDetectionJobResponse_httpStatus = Lens.lens (\DescribeTopicsDetectionJobResponse' {httpStatus} -> httpStatus) (\s@DescribeTopicsDetectionJobResponse' {} a -> s {httpStatus = a} :: DescribeTopicsDetectionJobResponse) instance Prelude.NFData DescribeTopicsDetectionJobResponse where rnf DescribeTopicsDetectionJobResponse' {..} = Prelude.rnf topicsDetectionJobProperties `Prelude.seq` Prelude.rnf httpStatus