amazonka-clouddirectory-2.0: gen/Amazonka/CloudDirectory/GetDirectory.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.CloudDirectory.GetDirectory
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Retrieves metadata about a directory.
module Amazonka.CloudDirectory.GetDirectory
( -- * Creating a Request
GetDirectory (..),
newGetDirectory,
-- * Request Lenses
getDirectory_directoryArn,
-- * Destructuring the Response
GetDirectoryResponse (..),
newGetDirectoryResponse,
-- * Response Lenses
getDirectoryResponse_httpStatus,
getDirectoryResponse_directory,
)
where
import Amazonka.CloudDirectory.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:/ 'newGetDirectory' smart constructor.
data GetDirectory = GetDirectory'
{ -- | The ARN of the directory.
directoryArn :: Prelude.Text
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'GetDirectory' 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:
--
-- 'directoryArn', 'getDirectory_directoryArn' - The ARN of the directory.
newGetDirectory ::
-- | 'directoryArn'
Prelude.Text ->
GetDirectory
newGetDirectory pDirectoryArn_ =
GetDirectory' {directoryArn = pDirectoryArn_}
-- | The ARN of the directory.
getDirectory_directoryArn :: Lens.Lens' GetDirectory Prelude.Text
getDirectory_directoryArn = Lens.lens (\GetDirectory' {directoryArn} -> directoryArn) (\s@GetDirectory' {} a -> s {directoryArn = a} :: GetDirectory)
instance Core.AWSRequest GetDirectory where
type AWSResponse GetDirectory = GetDirectoryResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
GetDirectoryResponse'
Prelude.<$> (Prelude.pure (Prelude.fromEnum s))
Prelude.<*> (x Data..:> "Directory")
)
instance Prelude.Hashable GetDirectory where
hashWithSalt _salt GetDirectory' {..} =
_salt `Prelude.hashWithSalt` directoryArn
instance Prelude.NFData GetDirectory where
rnf GetDirectory' {..} = Prelude.rnf directoryArn
instance Data.ToHeaders GetDirectory where
toHeaders GetDirectory' {..} =
Prelude.mconcat
["x-amz-data-partition" Data.=# directoryArn]
instance Data.ToJSON GetDirectory where
toJSON = Prelude.const (Data.Object Prelude.mempty)
instance Data.ToPath GetDirectory where
toPath =
Prelude.const
"/amazonclouddirectory/2017-01-11/directory/get"
instance Data.ToQuery GetDirectory where
toQuery = Prelude.const Prelude.mempty
-- | /See:/ 'newGetDirectoryResponse' smart constructor.
data GetDirectoryResponse = GetDirectoryResponse'
{ -- | The response's http status code.
httpStatus :: Prelude.Int,
-- | Metadata about the directory.
directory :: Directory
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'GetDirectoryResponse' 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:
--
-- 'httpStatus', 'getDirectoryResponse_httpStatus' - The response's http status code.
--
-- 'directory', 'getDirectoryResponse_directory' - Metadata about the directory.
newGetDirectoryResponse ::
-- | 'httpStatus'
Prelude.Int ->
-- | 'directory'
Directory ->
GetDirectoryResponse
newGetDirectoryResponse pHttpStatus_ pDirectory_ =
GetDirectoryResponse'
{ httpStatus = pHttpStatus_,
directory = pDirectory_
}
-- | The response's http status code.
getDirectoryResponse_httpStatus :: Lens.Lens' GetDirectoryResponse Prelude.Int
getDirectoryResponse_httpStatus = Lens.lens (\GetDirectoryResponse' {httpStatus} -> httpStatus) (\s@GetDirectoryResponse' {} a -> s {httpStatus = a} :: GetDirectoryResponse)
-- | Metadata about the directory.
getDirectoryResponse_directory :: Lens.Lens' GetDirectoryResponse Directory
getDirectoryResponse_directory = Lens.lens (\GetDirectoryResponse' {directory} -> directory) (\s@GetDirectoryResponse' {} a -> s {directory = a} :: GetDirectoryResponse)
instance Prelude.NFData GetDirectoryResponse where
rnf GetDirectoryResponse' {..} =
Prelude.rnf httpStatus
`Prelude.seq` Prelude.rnf directory