{-# 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.EC2.Types.HostInstance -- 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.EC2.Types.HostInstance where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EC2.Internal import qualified Amazonka.Prelude as Prelude -- | Describes an instance running on a Dedicated Host. -- -- /See:/ 'newHostInstance' smart constructor. data HostInstance = HostInstance' { -- | The ID of instance that is running on the Dedicated Host. instanceId :: Prelude.Maybe Prelude.Text, -- | The instance type (for example, @m3.medium@) of the running instance. instanceType :: Prelude.Maybe Prelude.Text, -- | The ID of the Amazon Web Services account that owns the instance. ownerId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'HostInstance' 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: -- -- 'instanceId', 'hostInstance_instanceId' - The ID of instance that is running on the Dedicated Host. -- -- 'instanceType', 'hostInstance_instanceType' - The instance type (for example, @m3.medium@) of the running instance. -- -- 'ownerId', 'hostInstance_ownerId' - The ID of the Amazon Web Services account that owns the instance. newHostInstance :: HostInstance newHostInstance = HostInstance' { instanceId = Prelude.Nothing, instanceType = Prelude.Nothing, ownerId = Prelude.Nothing } -- | The ID of instance that is running on the Dedicated Host. hostInstance_instanceId :: Lens.Lens' HostInstance (Prelude.Maybe Prelude.Text) hostInstance_instanceId = Lens.lens (\HostInstance' {instanceId} -> instanceId) (\s@HostInstance' {} a -> s {instanceId = a} :: HostInstance) -- | The instance type (for example, @m3.medium@) of the running instance. hostInstance_instanceType :: Lens.Lens' HostInstance (Prelude.Maybe Prelude.Text) hostInstance_instanceType = Lens.lens (\HostInstance' {instanceType} -> instanceType) (\s@HostInstance' {} a -> s {instanceType = a} :: HostInstance) -- | The ID of the Amazon Web Services account that owns the instance. hostInstance_ownerId :: Lens.Lens' HostInstance (Prelude.Maybe Prelude.Text) hostInstance_ownerId = Lens.lens (\HostInstance' {ownerId} -> ownerId) (\s@HostInstance' {} a -> s {ownerId = a} :: HostInstance) instance Data.FromXML HostInstance where parseXML x = HostInstance' Prelude.<$> (x Data..@? "instanceId") Prelude.<*> (x Data..@? "instanceType") Prelude.<*> (x Data..@? "ownerId") instance Prelude.Hashable HostInstance where hashWithSalt _salt HostInstance' {..} = _salt `Prelude.hashWithSalt` instanceId `Prelude.hashWithSalt` instanceType `Prelude.hashWithSalt` ownerId instance Prelude.NFData HostInstance where rnf HostInstance' {..} = Prelude.rnf instanceId `Prelude.seq` Prelude.rnf instanceType `Prelude.seq` Prelude.rnf ownerId