amazonka-sagemaker-2.0: gen/Amazonka/SageMaker/Types/KernelGatewayAppSettings.hs
{-# 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.KernelGatewayAppSettings
-- 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.KernelGatewayAppSettings 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
import Amazonka.SageMaker.Types.CustomImage
import Amazonka.SageMaker.Types.ResourceSpec
-- | The KernelGateway app settings.
--
-- /See:/ 'newKernelGatewayAppSettings' smart constructor.
data KernelGatewayAppSettings = KernelGatewayAppSettings'
{ -- | A list of custom SageMaker images that are configured to run as a
-- KernelGateway app.
customImages :: Prelude.Maybe [CustomImage],
-- | The default instance type and the Amazon Resource Name (ARN) of the
-- default SageMaker image used by the KernelGateway app.
--
-- The Amazon SageMaker Studio UI does not use the default instance type
-- value set here. The default instance type set here is used when Apps are
-- created using the Amazon Web Services Command Line Interface or Amazon
-- Web Services CloudFormation and the instance type parameter value is not
-- passed.
defaultResourceSpec :: Prelude.Maybe ResourceSpec,
-- | The Amazon Resource Name (ARN) of the Lifecycle Configurations attached
-- to the the user profile or domain.
--
-- To remove a Lifecycle Config, you must set @LifecycleConfigArns@ to an
-- empty list.
lifecycleConfigArns :: Prelude.Maybe [Prelude.Text]
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'KernelGatewayAppSettings' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'customImages', 'kernelGatewayAppSettings_customImages' - A list of custom SageMaker images that are configured to run as a
-- KernelGateway app.
--
-- 'defaultResourceSpec', 'kernelGatewayAppSettings_defaultResourceSpec' - The default instance type and the Amazon Resource Name (ARN) of the
-- default SageMaker image used by the KernelGateway app.
--
-- The Amazon SageMaker Studio UI does not use the default instance type
-- value set here. The default instance type set here is used when Apps are
-- created using the Amazon Web Services Command Line Interface or Amazon
-- Web Services CloudFormation and the instance type parameter value is not
-- passed.
--
-- 'lifecycleConfigArns', 'kernelGatewayAppSettings_lifecycleConfigArns' - The Amazon Resource Name (ARN) of the Lifecycle Configurations attached
-- to the the user profile or domain.
--
-- To remove a Lifecycle Config, you must set @LifecycleConfigArns@ to an
-- empty list.
newKernelGatewayAppSettings ::
KernelGatewayAppSettings
newKernelGatewayAppSettings =
KernelGatewayAppSettings'
{ customImages =
Prelude.Nothing,
defaultResourceSpec = Prelude.Nothing,
lifecycleConfigArns = Prelude.Nothing
}
-- | A list of custom SageMaker images that are configured to run as a
-- KernelGateway app.
kernelGatewayAppSettings_customImages :: Lens.Lens' KernelGatewayAppSettings (Prelude.Maybe [CustomImage])
kernelGatewayAppSettings_customImages = Lens.lens (\KernelGatewayAppSettings' {customImages} -> customImages) (\s@KernelGatewayAppSettings' {} a -> s {customImages = a} :: KernelGatewayAppSettings) Prelude.. Lens.mapping Lens.coerced
-- | The default instance type and the Amazon Resource Name (ARN) of the
-- default SageMaker image used by the KernelGateway app.
--
-- The Amazon SageMaker Studio UI does not use the default instance type
-- value set here. The default instance type set here is used when Apps are
-- created using the Amazon Web Services Command Line Interface or Amazon
-- Web Services CloudFormation and the instance type parameter value is not
-- passed.
kernelGatewayAppSettings_defaultResourceSpec :: Lens.Lens' KernelGatewayAppSettings (Prelude.Maybe ResourceSpec)
kernelGatewayAppSettings_defaultResourceSpec = Lens.lens (\KernelGatewayAppSettings' {defaultResourceSpec} -> defaultResourceSpec) (\s@KernelGatewayAppSettings' {} a -> s {defaultResourceSpec = a} :: KernelGatewayAppSettings)
-- | The Amazon Resource Name (ARN) of the Lifecycle Configurations attached
-- to the the user profile or domain.
--
-- To remove a Lifecycle Config, you must set @LifecycleConfigArns@ to an
-- empty list.
kernelGatewayAppSettings_lifecycleConfigArns :: Lens.Lens' KernelGatewayAppSettings (Prelude.Maybe [Prelude.Text])
kernelGatewayAppSettings_lifecycleConfigArns = Lens.lens (\KernelGatewayAppSettings' {lifecycleConfigArns} -> lifecycleConfigArns) (\s@KernelGatewayAppSettings' {} a -> s {lifecycleConfigArns = a} :: KernelGatewayAppSettings) Prelude.. Lens.mapping Lens.coerced
instance Data.FromJSON KernelGatewayAppSettings where
parseJSON =
Data.withObject
"KernelGatewayAppSettings"
( \x ->
KernelGatewayAppSettings'
Prelude.<$> (x Data..:? "CustomImages" Data..!= Prelude.mempty)
Prelude.<*> (x Data..:? "DefaultResourceSpec")
Prelude.<*> ( x
Data..:? "LifecycleConfigArns"
Data..!= Prelude.mempty
)
)
instance Prelude.Hashable KernelGatewayAppSettings where
hashWithSalt _salt KernelGatewayAppSettings' {..} =
_salt
`Prelude.hashWithSalt` customImages
`Prelude.hashWithSalt` defaultResourceSpec
`Prelude.hashWithSalt` lifecycleConfigArns
instance Prelude.NFData KernelGatewayAppSettings where
rnf KernelGatewayAppSettings' {..} =
Prelude.rnf customImages
`Prelude.seq` Prelude.rnf defaultResourceSpec
`Prelude.seq` Prelude.rnf lifecycleConfigArns
instance Data.ToJSON KernelGatewayAppSettings where
toJSON KernelGatewayAppSettings' {..} =
Data.object
( Prelude.catMaybes
[ ("CustomImages" Data..=) Prelude.<$> customImages,
("DefaultResourceSpec" Data..=)
Prelude.<$> defaultResourceSpec,
("LifecycleConfigArns" Data..=)
Prelude.<$> lifecycleConfigArns
]
)