{-# 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.AppConfig.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) -- -- Retrieves information about an environment. An environment is a -- deployment group of AppConfig applications, such as applications in a -- @Production@ environment or in an @EU_Region@ environment. Each -- configuration deployment targets an environment. You can enable one or -- more Amazon CloudWatch alarms for an environment. If an alarm is -- triggered during a deployment, AppConfig roles back the configuration. module Amazonka.AppConfig.GetEnvironment ( -- * Creating a Request GetEnvironment (..), newGetEnvironment, -- * Request Lenses getEnvironment_applicationId, getEnvironment_environmentId, -- * Destructuring the Response Environment (..), newEnvironment, -- * Response Lenses environment_applicationId, environment_description, environment_id, environment_monitors, environment_name, environment_state, ) where import Amazonka.AppConfig.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:/ 'newGetEnvironment' smart constructor. data GetEnvironment = GetEnvironment' { -- | The ID of the application that includes the environment you want to get. applicationId :: Prelude.Text, -- | The ID of the environment that you want to get. 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: -- -- 'applicationId', 'getEnvironment_applicationId' - The ID of the application that includes the environment you want to get. -- -- 'environmentId', 'getEnvironment_environmentId' - The ID of the environment that you want to get. newGetEnvironment :: -- | 'applicationId' Prelude.Text -> -- | 'environmentId' Prelude.Text -> GetEnvironment newGetEnvironment pApplicationId_ pEnvironmentId_ = GetEnvironment' { applicationId = pApplicationId_, environmentId = pEnvironmentId_ } -- | The ID of the application that includes the environment you want to get. getEnvironment_applicationId :: Lens.Lens' GetEnvironment Prelude.Text getEnvironment_applicationId = Lens.lens (\GetEnvironment' {applicationId} -> applicationId) (\s@GetEnvironment' {} a -> s {applicationId = a} :: GetEnvironment) -- | The ID of the environment that you want to get. 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 = Environment request overrides = Request.get (overrides defaultService) response = Response.receiveJSON (\s h x -> Data.eitherParseJSON x) instance Prelude.Hashable GetEnvironment where hashWithSalt _salt GetEnvironment' {..} = _salt `Prelude.hashWithSalt` applicationId `Prelude.hashWithSalt` environmentId instance Prelude.NFData GetEnvironment where rnf GetEnvironment' {..} = Prelude.rnf applicationId `Prelude.seq` 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 [ "/applications/", Data.toBS applicationId, "/environments/", Data.toBS environmentId ] instance Data.ToQuery GetEnvironment where toQuery = Prelude.const Prelude.mempty