amazonka-lexv2-models-2.0: gen/Amazonka/LexV2Models/DescribeImport.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.LexV2Models.DescribeImport
-- 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 information about a specific import.
module Amazonka.LexV2Models.DescribeImport
( -- * Creating a Request
DescribeImport (..),
newDescribeImport,
-- * Request Lenses
describeImport_importId,
-- * Destructuring the Response
DescribeImportResponse (..),
newDescribeImportResponse,
-- * Response Lenses
describeImportResponse_creationDateTime,
describeImportResponse_failureReasons,
describeImportResponse_importId,
describeImportResponse_importStatus,
describeImportResponse_importedResourceId,
describeImportResponse_importedResourceName,
describeImportResponse_lastUpdatedDateTime,
describeImportResponse_mergeStrategy,
describeImportResponse_resourceSpecification,
describeImportResponse_httpStatus,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.LexV2Models.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | /See:/ 'newDescribeImport' smart constructor.
data DescribeImport = DescribeImport'
{ -- | The unique identifier of the import to describe.
importId :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DescribeImport' 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:
--
-- 'importId', 'describeImport_importId' - The unique identifier of the import to describe.
newDescribeImport ::
-- | 'importId'
Prelude.Text ->
DescribeImport
newDescribeImport pImportId_ =
DescribeImport' {importId = pImportId_}
-- | The unique identifier of the import to describe.
describeImport_importId :: Lens.Lens' DescribeImport Prelude.Text
describeImport_importId = Lens.lens (\DescribeImport' {importId} -> importId) (\s@DescribeImport' {} a -> s {importId = a} :: DescribeImport)
instance Core.AWSRequest DescribeImport where
type
AWSResponse DescribeImport =
DescribeImportResponse
request overrides =
Request.get (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
DescribeImportResponse'
Prelude.<$> (x Data..?> "creationDateTime")
Prelude.<*> (x Data..?> "failureReasons" Core..!@ Prelude.mempty)
Prelude.<*> (x Data..?> "importId")
Prelude.<*> (x Data..?> "importStatus")
Prelude.<*> (x Data..?> "importedResourceId")
Prelude.<*> (x Data..?> "importedResourceName")
Prelude.<*> (x Data..?> "lastUpdatedDateTime")
Prelude.<*> (x Data..?> "mergeStrategy")
Prelude.<*> (x Data..?> "resourceSpecification")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable DescribeImport where
hashWithSalt _salt DescribeImport' {..} =
_salt `Prelude.hashWithSalt` importId
instance Prelude.NFData DescribeImport where
rnf DescribeImport' {..} = Prelude.rnf importId
instance Data.ToHeaders DescribeImport where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToPath DescribeImport where
toPath DescribeImport' {..} =
Prelude.mconcat
["/imports/", Data.toBS importId, "/"]
instance Data.ToQuery DescribeImport where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newDescribeImportResponse' smart constructor.
data DescribeImportResponse = DescribeImportResponse'
{ -- | The date and time that the import was created.
creationDateTime :: Prelude.Maybe Data.POSIX,
-- | If the @importStatus@ field is @Failed@, this provides one or more
-- reasons for the failure.
failureReasons :: Prelude.Maybe [Prelude.Text],
-- | The unique identifier of the described import.
importId :: Prelude.Maybe Prelude.Text,
-- | The status of the import process. When the status is @Completed@ the
-- resource is imported and ready for use.
importStatus :: Prelude.Maybe ImportStatus,
-- | The unique identifier that Amazon Lex assigned to the resource created
-- by the import.
importedResourceId :: Prelude.Maybe Prelude.Text,
-- | The name of the imported resource.
importedResourceName :: Prelude.Maybe Prelude.Text,
-- | The date and time that the import was last updated.
lastUpdatedDateTime :: Prelude.Maybe Data.POSIX,
-- | The strategy used when there was a name conflict between the imported
-- resource and an existing resource. When the merge strategy is
-- @FailOnConflict@ existing resources are not overwritten and the import
-- fails.
mergeStrategy :: Prelude.Maybe MergeStrategy,
-- | The specifications of the imported bot, bot locale, or custom
-- vocabulary.
resourceSpecification :: Prelude.Maybe ImportResourceSpecification,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'DescribeImportResponse' 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:
--
-- 'creationDateTime', 'describeImportResponse_creationDateTime' - The date and time that the import was created.
--
-- 'failureReasons', 'describeImportResponse_failureReasons' - If the @importStatus@ field is @Failed@, this provides one or more
-- reasons for the failure.
--
-- 'importId', 'describeImportResponse_importId' - The unique identifier of the described import.
--
-- 'importStatus', 'describeImportResponse_importStatus' - The status of the import process. When the status is @Completed@ the
-- resource is imported and ready for use.
--
-- 'importedResourceId', 'describeImportResponse_importedResourceId' - The unique identifier that Amazon Lex assigned to the resource created
-- by the import.
--
-- 'importedResourceName', 'describeImportResponse_importedResourceName' - The name of the imported resource.
--
-- 'lastUpdatedDateTime', 'describeImportResponse_lastUpdatedDateTime' - The date and time that the import was last updated.
--
-- 'mergeStrategy', 'describeImportResponse_mergeStrategy' - The strategy used when there was a name conflict between the imported
-- resource and an existing resource. When the merge strategy is
-- @FailOnConflict@ existing resources are not overwritten and the import
-- fails.
--
-- 'resourceSpecification', 'describeImportResponse_resourceSpecification' - The specifications of the imported bot, bot locale, or custom
-- vocabulary.
--
-- 'httpStatus', 'describeImportResponse_httpStatus' - The response's http status code.
newDescribeImportResponse ::
-- | 'httpStatus'
Prelude.Int ->
DescribeImportResponse
newDescribeImportResponse pHttpStatus_ =
DescribeImportResponse'
{ creationDateTime =
Prelude.Nothing,
failureReasons = Prelude.Nothing,
importId = Prelude.Nothing,
importStatus = Prelude.Nothing,
importedResourceId = Prelude.Nothing,
importedResourceName = Prelude.Nothing,
lastUpdatedDateTime = Prelude.Nothing,
mergeStrategy = Prelude.Nothing,
resourceSpecification = Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | The date and time that the import was created.
describeImportResponse_creationDateTime :: Lens.Lens' DescribeImportResponse (Prelude.Maybe Prelude.UTCTime)
describeImportResponse_creationDateTime = Lens.lens (\DescribeImportResponse' {creationDateTime} -> creationDateTime) (\s@DescribeImportResponse' {} a -> s {creationDateTime = a} :: DescribeImportResponse) Prelude.. Lens.mapping Data._Time
-- | If the @importStatus@ field is @Failed@, this provides one or more
-- reasons for the failure.
describeImportResponse_failureReasons :: Lens.Lens' DescribeImportResponse (Prelude.Maybe [Prelude.Text])
describeImportResponse_failureReasons = Lens.lens (\DescribeImportResponse' {failureReasons} -> failureReasons) (\s@DescribeImportResponse' {} a -> s {failureReasons = a} :: DescribeImportResponse) Prelude.. Lens.mapping Lens.coerced
-- | The unique identifier of the described import.
describeImportResponse_importId :: Lens.Lens' DescribeImportResponse (Prelude.Maybe Prelude.Text)
describeImportResponse_importId = Lens.lens (\DescribeImportResponse' {importId} -> importId) (\s@DescribeImportResponse' {} a -> s {importId = a} :: DescribeImportResponse)
-- | The status of the import process. When the status is @Completed@ the
-- resource is imported and ready for use.
describeImportResponse_importStatus :: Lens.Lens' DescribeImportResponse (Prelude.Maybe ImportStatus)
describeImportResponse_importStatus = Lens.lens (\DescribeImportResponse' {importStatus} -> importStatus) (\s@DescribeImportResponse' {} a -> s {importStatus = a} :: DescribeImportResponse)
-- | The unique identifier that Amazon Lex assigned to the resource created
-- by the import.
describeImportResponse_importedResourceId :: Lens.Lens' DescribeImportResponse (Prelude.Maybe Prelude.Text)
describeImportResponse_importedResourceId = Lens.lens (\DescribeImportResponse' {importedResourceId} -> importedResourceId) (\s@DescribeImportResponse' {} a -> s {importedResourceId = a} :: DescribeImportResponse)
-- | The name of the imported resource.
describeImportResponse_importedResourceName :: Lens.Lens' DescribeImportResponse (Prelude.Maybe Prelude.Text)
describeImportResponse_importedResourceName = Lens.lens (\DescribeImportResponse' {importedResourceName} -> importedResourceName) (\s@DescribeImportResponse' {} a -> s {importedResourceName = a} :: DescribeImportResponse)
-- | The date and time that the import was last updated.
describeImportResponse_lastUpdatedDateTime :: Lens.Lens' DescribeImportResponse (Prelude.Maybe Prelude.UTCTime)
describeImportResponse_lastUpdatedDateTime = Lens.lens (\DescribeImportResponse' {lastUpdatedDateTime} -> lastUpdatedDateTime) (\s@DescribeImportResponse' {} a -> s {lastUpdatedDateTime = a} :: DescribeImportResponse) Prelude.. Lens.mapping Data._Time
-- | The strategy used when there was a name conflict between the imported
-- resource and an existing resource. When the merge strategy is
-- @FailOnConflict@ existing resources are not overwritten and the import
-- fails.
describeImportResponse_mergeStrategy :: Lens.Lens' DescribeImportResponse (Prelude.Maybe MergeStrategy)
describeImportResponse_mergeStrategy = Lens.lens (\DescribeImportResponse' {mergeStrategy} -> mergeStrategy) (\s@DescribeImportResponse' {} a -> s {mergeStrategy = a} :: DescribeImportResponse)
-- | The specifications of the imported bot, bot locale, or custom
-- vocabulary.
describeImportResponse_resourceSpecification :: Lens.Lens' DescribeImportResponse (Prelude.Maybe ImportResourceSpecification)
describeImportResponse_resourceSpecification = Lens.lens (\DescribeImportResponse' {resourceSpecification} -> resourceSpecification) (\s@DescribeImportResponse' {} a -> s {resourceSpecification = a} :: DescribeImportResponse)
-- | The response's http status code.
describeImportResponse_httpStatus :: Lens.Lens' DescribeImportResponse Prelude.Int
describeImportResponse_httpStatus = Lens.lens (\DescribeImportResponse' {httpStatus} -> httpStatus) (\s@DescribeImportResponse' {} a -> s {httpStatus = a} :: DescribeImportResponse)
instance Prelude.NFData DescribeImportResponse where
rnf DescribeImportResponse' {..} =
Prelude.rnf creationDateTime
`Prelude.seq` Prelude.rnf failureReasons
`Prelude.seq` Prelude.rnf importId
`Prelude.seq` Prelude.rnf importStatus
`Prelude.seq` Prelude.rnf importedResourceId
`Prelude.seq` Prelude.rnf importedResourceName
`Prelude.seq` Prelude.rnf lastUpdatedDateTime
`Prelude.seq` Prelude.rnf mergeStrategy
`Prelude.seq` Prelude.rnf resourceSpecification
`Prelude.seq` Prelude.rnf httpStatus