{-# 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.GetDeployment -- 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 a configuration deployment. module Amazonka.AppConfig.GetDeployment ( -- * Creating a Request GetDeployment (..), newGetDeployment, -- * Request Lenses getDeployment_applicationId, getDeployment_environmentId, getDeployment_deploymentNumber, -- * Destructuring the Response Deployment (..), newDeployment, -- * Response Lenses deployment_applicationId, deployment_appliedExtensions, deployment_completedAt, deployment_configurationLocationUri, deployment_configurationName, deployment_configurationProfileId, deployment_configurationVersion, deployment_deploymentDurationInMinutes, deployment_deploymentNumber, deployment_deploymentStrategyId, deployment_description, deployment_environmentId, deployment_eventLog, deployment_finalBakeTimeInMinutes, deployment_growthFactor, deployment_growthType, deployment_percentageComplete, deployment_startedAt, deployment_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:/ 'newGetDeployment' smart constructor. data GetDeployment = GetDeployment' { -- | The ID of the application that includes the deployment you want to get. applicationId :: Prelude.Text, -- | The ID of the environment that includes the deployment you want to get. environmentId :: Prelude.Text, -- | The sequence number of the deployment. deploymentNumber :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetDeployment' 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', 'getDeployment_applicationId' - The ID of the application that includes the deployment you want to get. -- -- 'environmentId', 'getDeployment_environmentId' - The ID of the environment that includes the deployment you want to get. -- -- 'deploymentNumber', 'getDeployment_deploymentNumber' - The sequence number of the deployment. newGetDeployment :: -- | 'applicationId' Prelude.Text -> -- | 'environmentId' Prelude.Text -> -- | 'deploymentNumber' Prelude.Int -> GetDeployment newGetDeployment pApplicationId_ pEnvironmentId_ pDeploymentNumber_ = GetDeployment' { applicationId = pApplicationId_, environmentId = pEnvironmentId_, deploymentNumber = pDeploymentNumber_ } -- | The ID of the application that includes the deployment you want to get. getDeployment_applicationId :: Lens.Lens' GetDeployment Prelude.Text getDeployment_applicationId = Lens.lens (\GetDeployment' {applicationId} -> applicationId) (\s@GetDeployment' {} a -> s {applicationId = a} :: GetDeployment) -- | The ID of the environment that includes the deployment you want to get. getDeployment_environmentId :: Lens.Lens' GetDeployment Prelude.Text getDeployment_environmentId = Lens.lens (\GetDeployment' {environmentId} -> environmentId) (\s@GetDeployment' {} a -> s {environmentId = a} :: GetDeployment) -- | The sequence number of the deployment. getDeployment_deploymentNumber :: Lens.Lens' GetDeployment Prelude.Int getDeployment_deploymentNumber = Lens.lens (\GetDeployment' {deploymentNumber} -> deploymentNumber) (\s@GetDeployment' {} a -> s {deploymentNumber = a} :: GetDeployment) instance Core.AWSRequest GetDeployment where type AWSResponse GetDeployment = Deployment request overrides = Request.get (overrides defaultService) response = Response.receiveJSON (\s h x -> Data.eitherParseJSON x) instance Prelude.Hashable GetDeployment where hashWithSalt _salt GetDeployment' {..} = _salt `Prelude.hashWithSalt` applicationId `Prelude.hashWithSalt` environmentId `Prelude.hashWithSalt` deploymentNumber instance Prelude.NFData GetDeployment where rnf GetDeployment' {..} = Prelude.rnf applicationId `Prelude.seq` Prelude.rnf environmentId `Prelude.seq` Prelude.rnf deploymentNumber instance Data.ToHeaders GetDeployment where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath GetDeployment where toPath GetDeployment' {..} = Prelude.mconcat [ "/applications/", Data.toBS applicationId, "/environments/", Data.toBS environmentId, "/deployments/", Data.toBS deploymentNumber ] instance Data.ToQuery GetDeployment where toQuery = Prelude.const Prelude.mempty