{-# 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.DeviceFarm.Types.InstanceProfile -- 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.DeviceFarm.Types.InstanceProfile 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 -- | Represents the instance profile. -- -- /See:/ 'newInstanceProfile' smart constructor. data InstanceProfile = InstanceProfile' { -- | The Amazon Resource Name (ARN) of the instance profile. arn :: Prelude.Maybe Prelude.Text, -- | The description of the instance profile. description :: Prelude.Maybe Prelude.Text, -- | An array of strings containing the list of app packages that should not -- be cleaned up from the device after a test run completes. -- -- The list of packages is considered only if you set @packageCleanup@ to -- @true@. excludeAppPackagesFromCleanup :: Prelude.Maybe [Prelude.Text], -- | The name of the instance profile. name :: Prelude.Maybe Prelude.Text, -- | When set to @true@, Device Farm removes app packages after a test run. -- The default value is @false@ for private devices. packageCleanup :: Prelude.Maybe Prelude.Bool, -- | When set to @true@, Device Farm reboots the instance after a test run. -- The default value is @true@. rebootAfterUse :: Prelude.Maybe Prelude.Bool } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'InstanceProfile' 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: -- -- 'arn', 'instanceProfile_arn' - The Amazon Resource Name (ARN) of the instance profile. -- -- 'description', 'instanceProfile_description' - The description of the instance profile. -- -- 'excludeAppPackagesFromCleanup', 'instanceProfile_excludeAppPackagesFromCleanup' - An array of strings containing the list of app packages that should not -- be cleaned up from the device after a test run completes. -- -- The list of packages is considered only if you set @packageCleanup@ to -- @true@. -- -- 'name', 'instanceProfile_name' - The name of the instance profile. -- -- 'packageCleanup', 'instanceProfile_packageCleanup' - When set to @true@, Device Farm removes app packages after a test run. -- The default value is @false@ for private devices. -- -- 'rebootAfterUse', 'instanceProfile_rebootAfterUse' - When set to @true@, Device Farm reboots the instance after a test run. -- The default value is @true@. newInstanceProfile :: InstanceProfile newInstanceProfile = InstanceProfile' { arn = Prelude.Nothing, description = Prelude.Nothing, excludeAppPackagesFromCleanup = Prelude.Nothing, name = Prelude.Nothing, packageCleanup = Prelude.Nothing, rebootAfterUse = Prelude.Nothing } -- | The Amazon Resource Name (ARN) of the instance profile. instanceProfile_arn :: Lens.Lens' InstanceProfile (Prelude.Maybe Prelude.Text) instanceProfile_arn = Lens.lens (\InstanceProfile' {arn} -> arn) (\s@InstanceProfile' {} a -> s {arn = a} :: InstanceProfile) -- | The description of the instance profile. instanceProfile_description :: Lens.Lens' InstanceProfile (Prelude.Maybe Prelude.Text) instanceProfile_description = Lens.lens (\InstanceProfile' {description} -> description) (\s@InstanceProfile' {} a -> s {description = a} :: InstanceProfile) -- | An array of strings containing the list of app packages that should not -- be cleaned up from the device after a test run completes. -- -- The list of packages is considered only if you set @packageCleanup@ to -- @true@. instanceProfile_excludeAppPackagesFromCleanup :: Lens.Lens' InstanceProfile (Prelude.Maybe [Prelude.Text]) instanceProfile_excludeAppPackagesFromCleanup = Lens.lens (\InstanceProfile' {excludeAppPackagesFromCleanup} -> excludeAppPackagesFromCleanup) (\s@InstanceProfile' {} a -> s {excludeAppPackagesFromCleanup = a} :: InstanceProfile) Prelude.. Lens.mapping Lens.coerced -- | The name of the instance profile. instanceProfile_name :: Lens.Lens' InstanceProfile (Prelude.Maybe Prelude.Text) instanceProfile_name = Lens.lens (\InstanceProfile' {name} -> name) (\s@InstanceProfile' {} a -> s {name = a} :: InstanceProfile) -- | When set to @true@, Device Farm removes app packages after a test run. -- The default value is @false@ for private devices. instanceProfile_packageCleanup :: Lens.Lens' InstanceProfile (Prelude.Maybe Prelude.Bool) instanceProfile_packageCleanup = Lens.lens (\InstanceProfile' {packageCleanup} -> packageCleanup) (\s@InstanceProfile' {} a -> s {packageCleanup = a} :: InstanceProfile) -- | When set to @true@, Device Farm reboots the instance after a test run. -- The default value is @true@. instanceProfile_rebootAfterUse :: Lens.Lens' InstanceProfile (Prelude.Maybe Prelude.Bool) instanceProfile_rebootAfterUse = Lens.lens (\InstanceProfile' {rebootAfterUse} -> rebootAfterUse) (\s@InstanceProfile' {} a -> s {rebootAfterUse = a} :: InstanceProfile) instance Data.FromJSON InstanceProfile where parseJSON = Data.withObject "InstanceProfile" ( \x -> InstanceProfile' Prelude.<$> (x Data..:? "arn") Prelude.<*> (x Data..:? "description") Prelude.<*> ( x Data..:? "excludeAppPackagesFromCleanup" Data..!= Prelude.mempty ) Prelude.<*> (x Data..:? "name") Prelude.<*> (x Data..:? "packageCleanup") Prelude.<*> (x Data..:? "rebootAfterUse") ) instance Prelude.Hashable InstanceProfile where hashWithSalt _salt InstanceProfile' {..} = _salt `Prelude.hashWithSalt` arn `Prelude.hashWithSalt` description `Prelude.hashWithSalt` excludeAppPackagesFromCleanup `Prelude.hashWithSalt` name `Prelude.hashWithSalt` packageCleanup `Prelude.hashWithSalt` rebootAfterUse instance Prelude.NFData InstanceProfile where rnf InstanceProfile' {..} = Prelude.rnf arn `Prelude.seq` Prelude.rnf description `Prelude.seq` Prelude.rnf excludeAppPackagesFromCleanup `Prelude.seq` Prelude.rnf name `Prelude.seq` Prelude.rnf packageCleanup `Prelude.seq` Prelude.rnf rebootAfterUse