{-# 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.FinSpace.GetEnvironment -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Returns the FinSpace environment object. module Amazonka.FinSpace.GetEnvironment ( -- * Creating a Request GetEnvironment (..), newGetEnvironment, -- * Request Lenses getEnvironment_environmentId, -- * Destructuring the Response GetEnvironmentResponse (..), newGetEnvironmentResponse, -- * Response Lenses getEnvironmentResponse_environment, getEnvironmentResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.FinSpace.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newGetEnvironment' smart constructor. data GetEnvironment = GetEnvironment' { -- | The identifier of the FinSpace environment. environmentId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetEnvironment' 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: -- -- 'environmentId', 'getEnvironment_environmentId' - The identifier of the FinSpace environment. newGetEnvironment :: -- | 'environmentId' Prelude.Text -> GetEnvironment newGetEnvironment pEnvironmentId_ = GetEnvironment' {environmentId = pEnvironmentId_} -- | The identifier of the FinSpace environment. getEnvironment_environmentId :: Lens.Lens' GetEnvironment Prelude.Text getEnvironment_environmentId = Lens.lens (\GetEnvironment' {environmentId} -> environmentId) (\s@GetEnvironment' {} a -> s {environmentId = a} :: GetEnvironment) instance Core.AWSRequest GetEnvironment where type AWSResponse GetEnvironment = GetEnvironmentResponse request overrides = Request.get (overrides defaultService) response = Response.receiveJSON ( \s h x -> GetEnvironmentResponse' Prelude.<$> (x Data..?> "environment") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable GetEnvironment where hashWithSalt _salt GetEnvironment' {..} = _salt `Prelude.hashWithSalt` environmentId instance Prelude.NFData GetEnvironment where rnf GetEnvironment' {..} = Prelude.rnf environmentId instance Data.ToHeaders GetEnvironment where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath GetEnvironment where toPath GetEnvironment' {..} = Prelude.mconcat ["/environment/", Data.toBS environmentId] instance Data.ToQuery GetEnvironment where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newGetEnvironmentResponse' smart constructor. data GetEnvironmentResponse = GetEnvironmentResponse' { -- | The name of the FinSpace environment. environment :: Prelude.Maybe Environment, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetEnvironmentResponse' 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: -- -- 'environment', 'getEnvironmentResponse_environment' - The name of the FinSpace environment. -- -- 'httpStatus', 'getEnvironmentResponse_httpStatus' - The response's http status code. newGetEnvironmentResponse :: -- | 'httpStatus' Prelude.Int -> GetEnvironmentResponse newGetEnvironmentResponse pHttpStatus_ = GetEnvironmentResponse' { environment = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The name of the FinSpace environment. getEnvironmentResponse_environment :: Lens.Lens' GetEnvironmentResponse (Prelude.Maybe Environment) getEnvironmentResponse_environment = Lens.lens (\GetEnvironmentResponse' {environment} -> environment) (\s@GetEnvironmentResponse' {} a -> s {environment = a} :: GetEnvironmentResponse) -- | The response's http status code. getEnvironmentResponse_httpStatus :: Lens.Lens' GetEnvironmentResponse Prelude.Int getEnvironmentResponse_httpStatus = Lens.lens (\GetEnvironmentResponse' {httpStatus} -> httpStatus) (\s@GetEnvironmentResponse' {} a -> s {httpStatus = a} :: GetEnvironmentResponse) instance Prelude.NFData GetEnvironmentResponse where rnf GetEnvironmentResponse' {..} = Prelude.rnf environment `Prelude.seq` Prelude.rnf httpStatus