{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.SageMaker.Types.AgentVersion -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.SageMaker.Types.AgentVersion where 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 -- | Edge Manager agent version. -- -- /See:/ 'newAgentVersion' smart constructor. data AgentVersion = AgentVersion' { -- | Version of the agent. version :: Prelude.Text, -- | The number of Edge Manager agents. agentCount :: Prelude.Integer } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'AgentVersion' 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: -- -- 'version', 'agentVersion_version' - Version of the agent. -- -- 'agentCount', 'agentVersion_agentCount' - The number of Edge Manager agents. newAgentVersion :: -- | 'version' Prelude.Text -> -- | 'agentCount' Prelude.Integer -> AgentVersion newAgentVersion pVersion_ pAgentCount_ = AgentVersion' { version = pVersion_, agentCount = pAgentCount_ } -- | Version of the agent. agentVersion_version :: Lens.Lens' AgentVersion Prelude.Text agentVersion_version = Lens.lens (\AgentVersion' {version} -> version) (\s@AgentVersion' {} a -> s {version = a} :: AgentVersion) -- | The number of Edge Manager agents. agentVersion_agentCount :: Lens.Lens' AgentVersion Prelude.Integer agentVersion_agentCount = Lens.lens (\AgentVersion' {agentCount} -> agentCount) (\s@AgentVersion' {} a -> s {agentCount = a} :: AgentVersion) instance Data.FromJSON AgentVersion where parseJSON = Data.withObject "AgentVersion" ( \x -> AgentVersion' Prelude.<$> (x Data..: "Version") Prelude.<*> (x Data..: "AgentCount") ) instance Prelude.Hashable AgentVersion where hashWithSalt _salt AgentVersion' {..} = _salt `Prelude.hashWithSalt` version `Prelude.hashWithSalt` agentCount instance Prelude.NFData AgentVersion where rnf AgentVersion' {..} = Prelude.rnf version `Prelude.seq` Prelude.rnf agentCount