amazonka-robomaker-2.0: gen/Amazonka/RobOMaker/DescribeWorldGenerationJob.hs
{-# 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.RobOMaker.DescribeWorldGenerationJob
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Describes a world generation job.
module Amazonka.RobOMaker.DescribeWorldGenerationJob
( -- * Creating a Request
DescribeWorldGenerationJob (..),
newDescribeWorldGenerationJob,
-- * Request Lenses
describeWorldGenerationJob_job,
-- * Destructuring the Response
DescribeWorldGenerationJobResponse (..),
newDescribeWorldGenerationJobResponse,
-- * Response Lenses
describeWorldGenerationJobResponse_arn,
describeWorldGenerationJobResponse_clientRequestToken,
describeWorldGenerationJobResponse_createdAt,
describeWorldGenerationJobResponse_failureCode,
describeWorldGenerationJobResponse_failureReason,
describeWorldGenerationJobResponse_finishedWorldsSummary,
describeWorldGenerationJobResponse_status,
describeWorldGenerationJobResponse_tags,
describeWorldGenerationJobResponse_template,
describeWorldGenerationJobResponse_worldCount,
describeWorldGenerationJobResponse_worldTags,
describeWorldGenerationJobResponse_httpStatus,
)
where
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
import Amazonka.RobOMaker.Types
-- | /See:/ 'newDescribeWorldGenerationJob' smart constructor.
data DescribeWorldGenerationJob = DescribeWorldGenerationJob'
{ -- | The Amazon Resource Name (arn) of the world generation job to describe.
job :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DescribeWorldGenerationJob' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'job', 'describeWorldGenerationJob_job' - The Amazon Resource Name (arn) of the world generation job to describe.
newDescribeWorldGenerationJob ::
-- | 'job'
Prelude.Text ->
DescribeWorldGenerationJob
newDescribeWorldGenerationJob pJob_ =
DescribeWorldGenerationJob' {job = pJob_}
-- | The Amazon Resource Name (arn) of the world generation job to describe.
describeWorldGenerationJob_job :: Lens.Lens' DescribeWorldGenerationJob Prelude.Text
describeWorldGenerationJob_job = Lens.lens (\DescribeWorldGenerationJob' {job} -> job) (\s@DescribeWorldGenerationJob' {} a -> s {job = a} :: DescribeWorldGenerationJob)
instance Core.AWSRequest DescribeWorldGenerationJob where
type
AWSResponse DescribeWorldGenerationJob =
DescribeWorldGenerationJobResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
DescribeWorldGenerationJobResponse'
Prelude.<$> (x Data..?> "arn")
Prelude.<*> (x Data..?> "clientRequestToken")
Prelude.<*> (x Data..?> "createdAt")
Prelude.<*> (x Data..?> "failureCode")
Prelude.<*> (x Data..?> "failureReason")
Prelude.<*> (x Data..?> "finishedWorldsSummary")
Prelude.<*> (x Data..?> "status")
Prelude.<*> (x Data..?> "tags" Core..!@ Prelude.mempty)
Prelude.<*> (x Data..?> "template")
Prelude.<*> (x Data..?> "worldCount")
Prelude.<*> (x Data..?> "worldTags" Core..!@ Prelude.mempty)
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable DescribeWorldGenerationJob where
hashWithSalt _salt DescribeWorldGenerationJob' {..} =
_salt `Prelude.hashWithSalt` job
instance Prelude.NFData DescribeWorldGenerationJob where
rnf DescribeWorldGenerationJob' {..} = Prelude.rnf job
instance Data.ToHeaders DescribeWorldGenerationJob where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON DescribeWorldGenerationJob where
toJSON DescribeWorldGenerationJob' {..} =
Data.object
( Prelude.catMaybes
[Prelude.Just ("job" Data..= job)]
)
instance Data.ToPath DescribeWorldGenerationJob where
toPath = Prelude.const "/describeWorldGenerationJob"
instance Data.ToQuery DescribeWorldGenerationJob where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newDescribeWorldGenerationJobResponse' smart constructor.
data DescribeWorldGenerationJobResponse = DescribeWorldGenerationJobResponse'
{ -- | The Amazon Resource Name (ARN) of the world generation job.
arn :: Prelude.Maybe Prelude.Text,
-- | Unique, case-sensitive identifier that you provide to ensure the
-- idempotency of the request.
clientRequestToken :: Prelude.Maybe Prelude.Text,
-- | The time, in milliseconds since the epoch, when the world generation job
-- was created.
createdAt :: Prelude.Maybe Data.POSIX,
-- | The failure code of the world generation job if it failed:
--
-- [InternalServiceError]
-- Internal service error.
--
-- [LimitExceeded]
-- The requested resource exceeds the maximum number allowed, or the
-- number of concurrent stream requests exceeds the maximum number
-- allowed.
--
-- [ResourceNotFound]
-- The specified resource could not be found.
--
-- [RequestThrottled]
-- The request was throttled.
--
-- [InvalidInput]
-- An input parameter in the request is not valid.
failureCode :: Prelude.Maybe WorldGenerationJobErrorCode,
-- | The reason why the world generation job failed.
failureReason :: Prelude.Maybe Prelude.Text,
-- | Summary information about finished worlds.
finishedWorldsSummary :: Prelude.Maybe FinishedWorldsSummary,
-- | The status of the world generation job:
--
-- [Pending]
-- The world generation job request is pending.
--
-- [Running]
-- The world generation job is running.
--
-- [Completed]
-- The world generation job completed.
--
-- [Failed]
-- The world generation job failed. See @failureCode@ for more
-- information.
--
-- [PartialFailed]
-- Some worlds did not generate.
--
-- [Canceled]
-- The world generation job was cancelled.
--
-- [Canceling]
-- The world generation job is being cancelled.
status :: Prelude.Maybe WorldGenerationJobStatus,
-- | A map that contains tag keys and tag values that are attached to the
-- world generation job.
tags :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text),
-- | The Amazon Resource Name (arn) of the world template.
template :: Prelude.Maybe Prelude.Text,
-- | Information about the world count.
worldCount :: Prelude.Maybe WorldCount,
-- | A map that contains tag keys and tag values that are attached to the
-- generated worlds.
worldTags :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text),
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DescribeWorldGenerationJobResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'arn', 'describeWorldGenerationJobResponse_arn' - The Amazon Resource Name (ARN) of the world generation job.
--
-- 'clientRequestToken', 'describeWorldGenerationJobResponse_clientRequestToken' - Unique, case-sensitive identifier that you provide to ensure the
-- idempotency of the request.
--
-- 'createdAt', 'describeWorldGenerationJobResponse_createdAt' - The time, in milliseconds since the epoch, when the world generation job
-- was created.
--
-- 'failureCode', 'describeWorldGenerationJobResponse_failureCode' - The failure code of the world generation job if it failed:
--
-- [InternalServiceError]
-- Internal service error.
--
-- [LimitExceeded]
-- The requested resource exceeds the maximum number allowed, or the
-- number of concurrent stream requests exceeds the maximum number
-- allowed.
--
-- [ResourceNotFound]
-- The specified resource could not be found.
--
-- [RequestThrottled]
-- The request was throttled.
--
-- [InvalidInput]
-- An input parameter in the request is not valid.
--
-- 'failureReason', 'describeWorldGenerationJobResponse_failureReason' - The reason why the world generation job failed.
--
-- 'finishedWorldsSummary', 'describeWorldGenerationJobResponse_finishedWorldsSummary' - Summary information about finished worlds.
--
-- 'status', 'describeWorldGenerationJobResponse_status' - The status of the world generation job:
--
-- [Pending]
-- The world generation job request is pending.
--
-- [Running]
-- The world generation job is running.
--
-- [Completed]
-- The world generation job completed.
--
-- [Failed]
-- The world generation job failed. See @failureCode@ for more
-- information.
--
-- [PartialFailed]
-- Some worlds did not generate.
--
-- [Canceled]
-- The world generation job was cancelled.
--
-- [Canceling]
-- The world generation job is being cancelled.
--
-- 'tags', 'describeWorldGenerationJobResponse_tags' - A map that contains tag keys and tag values that are attached to the
-- world generation job.
--
-- 'template', 'describeWorldGenerationJobResponse_template' - The Amazon Resource Name (arn) of the world template.
--
-- 'worldCount', 'describeWorldGenerationJobResponse_worldCount' - Information about the world count.
--
-- 'worldTags', 'describeWorldGenerationJobResponse_worldTags' - A map that contains tag keys and tag values that are attached to the
-- generated worlds.
--
-- 'httpStatus', 'describeWorldGenerationJobResponse_httpStatus' - The response's http status code.
newDescribeWorldGenerationJobResponse ::
-- | 'httpStatus'
Prelude.Int ->
DescribeWorldGenerationJobResponse
newDescribeWorldGenerationJobResponse pHttpStatus_ =
DescribeWorldGenerationJobResponse'
{ arn =
Prelude.Nothing,
clientRequestToken = Prelude.Nothing,
createdAt = Prelude.Nothing,
failureCode = Prelude.Nothing,
failureReason = Prelude.Nothing,
finishedWorldsSummary = Prelude.Nothing,
status = Prelude.Nothing,
tags = Prelude.Nothing,
template = Prelude.Nothing,
worldCount = Prelude.Nothing,
worldTags = Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | The Amazon Resource Name (ARN) of the world generation job.
describeWorldGenerationJobResponse_arn :: Lens.Lens' DescribeWorldGenerationJobResponse (Prelude.Maybe Prelude.Text)
describeWorldGenerationJobResponse_arn = Lens.lens (\DescribeWorldGenerationJobResponse' {arn} -> arn) (\s@DescribeWorldGenerationJobResponse' {} a -> s {arn = a} :: DescribeWorldGenerationJobResponse)
-- | Unique, case-sensitive identifier that you provide to ensure the
-- idempotency of the request.
describeWorldGenerationJobResponse_clientRequestToken :: Lens.Lens' DescribeWorldGenerationJobResponse (Prelude.Maybe Prelude.Text)
describeWorldGenerationJobResponse_clientRequestToken = Lens.lens (\DescribeWorldGenerationJobResponse' {clientRequestToken} -> clientRequestToken) (\s@DescribeWorldGenerationJobResponse' {} a -> s {clientRequestToken = a} :: DescribeWorldGenerationJobResponse)
-- | The time, in milliseconds since the epoch, when the world generation job
-- was created.
describeWorldGenerationJobResponse_createdAt :: Lens.Lens' DescribeWorldGenerationJobResponse (Prelude.Maybe Prelude.UTCTime)
describeWorldGenerationJobResponse_createdAt = Lens.lens (\DescribeWorldGenerationJobResponse' {createdAt} -> createdAt) (\s@DescribeWorldGenerationJobResponse' {} a -> s {createdAt = a} :: DescribeWorldGenerationJobResponse) Prelude.. Lens.mapping Data._Time
-- | The failure code of the world generation job if it failed:
--
-- [InternalServiceError]
-- Internal service error.
--
-- [LimitExceeded]
-- The requested resource exceeds the maximum number allowed, or the
-- number of concurrent stream requests exceeds the maximum number
-- allowed.
--
-- [ResourceNotFound]
-- The specified resource could not be found.
--
-- [RequestThrottled]
-- The request was throttled.
--
-- [InvalidInput]
-- An input parameter in the request is not valid.
describeWorldGenerationJobResponse_failureCode :: Lens.Lens' DescribeWorldGenerationJobResponse (Prelude.Maybe WorldGenerationJobErrorCode)
describeWorldGenerationJobResponse_failureCode = Lens.lens (\DescribeWorldGenerationJobResponse' {failureCode} -> failureCode) (\s@DescribeWorldGenerationJobResponse' {} a -> s {failureCode = a} :: DescribeWorldGenerationJobResponse)
-- | The reason why the world generation job failed.
describeWorldGenerationJobResponse_failureReason :: Lens.Lens' DescribeWorldGenerationJobResponse (Prelude.Maybe Prelude.Text)
describeWorldGenerationJobResponse_failureReason = Lens.lens (\DescribeWorldGenerationJobResponse' {failureReason} -> failureReason) (\s@DescribeWorldGenerationJobResponse' {} a -> s {failureReason = a} :: DescribeWorldGenerationJobResponse)
-- | Summary information about finished worlds.
describeWorldGenerationJobResponse_finishedWorldsSummary :: Lens.Lens' DescribeWorldGenerationJobResponse (Prelude.Maybe FinishedWorldsSummary)
describeWorldGenerationJobResponse_finishedWorldsSummary = Lens.lens (\DescribeWorldGenerationJobResponse' {finishedWorldsSummary} -> finishedWorldsSummary) (\s@DescribeWorldGenerationJobResponse' {} a -> s {finishedWorldsSummary = a} :: DescribeWorldGenerationJobResponse)
-- | The status of the world generation job:
--
-- [Pending]
-- The world generation job request is pending.
--
-- [Running]
-- The world generation job is running.
--
-- [Completed]
-- The world generation job completed.
--
-- [Failed]
-- The world generation job failed. See @failureCode@ for more
-- information.
--
-- [PartialFailed]
-- Some worlds did not generate.
--
-- [Canceled]
-- The world generation job was cancelled.
--
-- [Canceling]
-- The world generation job is being cancelled.
describeWorldGenerationJobResponse_status :: Lens.Lens' DescribeWorldGenerationJobResponse (Prelude.Maybe WorldGenerationJobStatus)
describeWorldGenerationJobResponse_status = Lens.lens (\DescribeWorldGenerationJobResponse' {status} -> status) (\s@DescribeWorldGenerationJobResponse' {} a -> s {status = a} :: DescribeWorldGenerationJobResponse)
-- | A map that contains tag keys and tag values that are attached to the
-- world generation job.
describeWorldGenerationJobResponse_tags :: Lens.Lens' DescribeWorldGenerationJobResponse (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
describeWorldGenerationJobResponse_tags = Lens.lens (\DescribeWorldGenerationJobResponse' {tags} -> tags) (\s@DescribeWorldGenerationJobResponse' {} a -> s {tags = a} :: DescribeWorldGenerationJobResponse) Prelude.. Lens.mapping Lens.coerced
-- | The Amazon Resource Name (arn) of the world template.
describeWorldGenerationJobResponse_template :: Lens.Lens' DescribeWorldGenerationJobResponse (Prelude.Maybe Prelude.Text)
describeWorldGenerationJobResponse_template = Lens.lens (\DescribeWorldGenerationJobResponse' {template} -> template) (\s@DescribeWorldGenerationJobResponse' {} a -> s {template = a} :: DescribeWorldGenerationJobResponse)
-- | Information about the world count.
describeWorldGenerationJobResponse_worldCount :: Lens.Lens' DescribeWorldGenerationJobResponse (Prelude.Maybe WorldCount)
describeWorldGenerationJobResponse_worldCount = Lens.lens (\DescribeWorldGenerationJobResponse' {worldCount} -> worldCount) (\s@DescribeWorldGenerationJobResponse' {} a -> s {worldCount = a} :: DescribeWorldGenerationJobResponse)
-- | A map that contains tag keys and tag values that are attached to the
-- generated worlds.
describeWorldGenerationJobResponse_worldTags :: Lens.Lens' DescribeWorldGenerationJobResponse (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
describeWorldGenerationJobResponse_worldTags = Lens.lens (\DescribeWorldGenerationJobResponse' {worldTags} -> worldTags) (\s@DescribeWorldGenerationJobResponse' {} a -> s {worldTags = a} :: DescribeWorldGenerationJobResponse) Prelude.. Lens.mapping Lens.coerced
-- | The response's http status code.
describeWorldGenerationJobResponse_httpStatus :: Lens.Lens' DescribeWorldGenerationJobResponse Prelude.Int
describeWorldGenerationJobResponse_httpStatus = Lens.lens (\DescribeWorldGenerationJobResponse' {httpStatus} -> httpStatus) (\s@DescribeWorldGenerationJobResponse' {} a -> s {httpStatus = a} :: DescribeWorldGenerationJobResponse)
instance
Prelude.NFData
DescribeWorldGenerationJobResponse
where
rnf DescribeWorldGenerationJobResponse' {..} =
Prelude.rnf arn
`Prelude.seq` Prelude.rnf clientRequestToken
`Prelude.seq` Prelude.rnf createdAt
`Prelude.seq` Prelude.rnf failureCode
`Prelude.seq` Prelude.rnf failureReason
`Prelude.seq` Prelude.rnf finishedWorldsSummary
`Prelude.seq` Prelude.rnf status
`Prelude.seq` Prelude.rnf tags
`Prelude.seq` Prelude.rnf template
`Prelude.seq` Prelude.rnf worldCount
`Prelude.seq` Prelude.rnf worldTags
`Prelude.seq` Prelude.rnf httpStatus