{-# 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.ECS.Types.Device -- 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.ECS.Types.Device where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.ECS.Types.DeviceCgroupPermission import qualified Amazonka.Prelude as Prelude -- | An object representing a container instance host device. -- -- /See:/ 'newDevice' smart constructor. data Device = Device' { -- | The path inside the container at which to expose the host device. containerPath :: Prelude.Maybe Prelude.Text, -- | The explicit permissions to provide to the container for the device. By -- default, the container has permissions for @read@, @write@, and @mknod@ -- for the device. permissions :: Prelude.Maybe [DeviceCgroupPermission], -- | The path for the device on the host container instance. hostPath :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Device' 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: -- -- 'containerPath', 'device_containerPath' - The path inside the container at which to expose the host device. -- -- 'permissions', 'device_permissions' - The explicit permissions to provide to the container for the device. By -- default, the container has permissions for @read@, @write@, and @mknod@ -- for the device. -- -- 'hostPath', 'device_hostPath' - The path for the device on the host container instance. newDevice :: -- | 'hostPath' Prelude.Text -> Device newDevice pHostPath_ = Device' { containerPath = Prelude.Nothing, permissions = Prelude.Nothing, hostPath = pHostPath_ } -- | The path inside the container at which to expose the host device. device_containerPath :: Lens.Lens' Device (Prelude.Maybe Prelude.Text) device_containerPath = Lens.lens (\Device' {containerPath} -> containerPath) (\s@Device' {} a -> s {containerPath = a} :: Device) -- | The explicit permissions to provide to the container for the device. By -- default, the container has permissions for @read@, @write@, and @mknod@ -- for the device. device_permissions :: Lens.Lens' Device (Prelude.Maybe [DeviceCgroupPermission]) device_permissions = Lens.lens (\Device' {permissions} -> permissions) (\s@Device' {} a -> s {permissions = a} :: Device) Prelude.. Lens.mapping Lens.coerced -- | The path for the device on the host container instance. device_hostPath :: Lens.Lens' Device Prelude.Text device_hostPath = Lens.lens (\Device' {hostPath} -> hostPath) (\s@Device' {} a -> s {hostPath = a} :: Device) instance Data.FromJSON Device where parseJSON = Data.withObject "Device" ( \x -> Device' Prelude.<$> (x Data..:? "containerPath") Prelude.<*> (x Data..:? "permissions" Data..!= Prelude.mempty) Prelude.<*> (x Data..: "hostPath") ) instance Prelude.Hashable Device where hashWithSalt _salt Device' {..} = _salt `Prelude.hashWithSalt` containerPath `Prelude.hashWithSalt` permissions `Prelude.hashWithSalt` hostPath instance Prelude.NFData Device where rnf Device' {..} = Prelude.rnf containerPath `Prelude.seq` Prelude.rnf permissions `Prelude.seq` Prelude.rnf hostPath instance Data.ToJSON Device where toJSON Device' {..} = Data.object ( Prelude.catMaybes [ ("containerPath" Data..=) Prelude.<$> containerPath, ("permissions" Data..=) Prelude.<$> permissions, Prelude.Just ("hostPath" Data..= hostPath) ] )