module Stratosphere.SageMaker.AppImageConfig (
module Exports, AppImageConfig(..), mkAppImageConfig
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.SageMaker.AppImageConfig.CodeEditorAppImageConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.SageMaker.AppImageConfig.JupyterLabAppImageConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.SageMaker.AppImageConfig.KernelGatewayImageConfigProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data AppImageConfig
=
AppImageConfig {AppImageConfig -> ()
haddock_workaround_ :: (),
AppImageConfig -> Value Text
appImageConfigName :: (Value Prelude.Text),
AppImageConfig -> Maybe CodeEditorAppImageConfigProperty
codeEditorAppImageConfig :: (Prelude.Maybe CodeEditorAppImageConfigProperty),
AppImageConfig -> Maybe JupyterLabAppImageConfigProperty
jupyterLabAppImageConfig :: (Prelude.Maybe JupyterLabAppImageConfigProperty),
AppImageConfig -> Maybe KernelGatewayImageConfigProperty
kernelGatewayImageConfig :: (Prelude.Maybe KernelGatewayImageConfigProperty),
AppImageConfig -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
deriving stock (AppImageConfig -> AppImageConfig -> Bool
(AppImageConfig -> AppImageConfig -> Bool)
-> (AppImageConfig -> AppImageConfig -> Bool) -> Eq AppImageConfig
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: AppImageConfig -> AppImageConfig -> Bool
== :: AppImageConfig -> AppImageConfig -> Bool
$c/= :: AppImageConfig -> AppImageConfig -> Bool
/= :: AppImageConfig -> AppImageConfig -> Bool
Prelude.Eq, Int -> AppImageConfig -> ShowS
[AppImageConfig] -> ShowS
AppImageConfig -> String
(Int -> AppImageConfig -> ShowS)
-> (AppImageConfig -> String)
-> ([AppImageConfig] -> ShowS)
-> Show AppImageConfig
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> AppImageConfig -> ShowS
showsPrec :: Int -> AppImageConfig -> ShowS
$cshow :: AppImageConfig -> String
show :: AppImageConfig -> String
$cshowList :: [AppImageConfig] -> ShowS
showList :: [AppImageConfig] -> ShowS
Prelude.Show)
mkAppImageConfig :: Value Prelude.Text -> AppImageConfig
mkAppImageConfig :: Value Text -> AppImageConfig
mkAppImageConfig Value Text
appImageConfigName
= AppImageConfig
{haddock_workaround_ :: ()
haddock_workaround_ = (), appImageConfigName :: Value Text
appImageConfigName = Value Text
appImageConfigName,
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
codeEditorAppImageConfig = Maybe CodeEditorAppImageConfigProperty
forall a. Maybe a
Prelude.Nothing,
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
jupyterLabAppImageConfig = Maybe JupyterLabAppImageConfigProperty
forall a. Maybe a
Prelude.Nothing,
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
kernelGatewayImageConfig = Maybe KernelGatewayImageConfigProperty
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties AppImageConfig where
toResourceProperties :: AppImageConfig -> ResourceProperties
toResourceProperties AppImageConfig {Maybe [Tag]
Maybe CodeEditorAppImageConfigProperty
Maybe JupyterLabAppImageConfigProperty
Maybe KernelGatewayImageConfigProperty
()
Value Text
haddock_workaround_ :: AppImageConfig -> ()
appImageConfigName :: AppImageConfig -> Value Text
codeEditorAppImageConfig :: AppImageConfig -> Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: AppImageConfig -> Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: AppImageConfig -> Maybe KernelGatewayImageConfigProperty
tags :: AppImageConfig -> Maybe [Tag]
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::SageMaker::AppImageConfig",
supportsTags :: Bool
supportsTags = Bool
Prelude.True,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"AppImageConfigName" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
appImageConfigName]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> CodeEditorAppImageConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CodeEditorAppImageConfig"
(CodeEditorAppImageConfigProperty -> (Key, Value))
-> Maybe CodeEditorAppImageConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CodeEditorAppImageConfigProperty
codeEditorAppImageConfig,
Key -> JupyterLabAppImageConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"JupyterLabAppImageConfig"
(JupyterLabAppImageConfigProperty -> (Key, Value))
-> Maybe JupyterLabAppImageConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe JupyterLabAppImageConfigProperty
jupyterLabAppImageConfig,
Key -> KernelGatewayImageConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"KernelGatewayImageConfig"
(KernelGatewayImageConfigProperty -> (Key, Value))
-> Maybe KernelGatewayImageConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe KernelGatewayImageConfigProperty
kernelGatewayImageConfig,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags]))}
instance JSON.ToJSON AppImageConfig where
toJSON :: AppImageConfig -> Value
toJSON AppImageConfig {Maybe [Tag]
Maybe CodeEditorAppImageConfigProperty
Maybe JupyterLabAppImageConfigProperty
Maybe KernelGatewayImageConfigProperty
()
Value Text
haddock_workaround_ :: AppImageConfig -> ()
appImageConfigName :: AppImageConfig -> Value Text
codeEditorAppImageConfig :: AppImageConfig -> Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: AppImageConfig -> Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: AppImageConfig -> Maybe KernelGatewayImageConfigProperty
tags :: AppImageConfig -> Maybe [Tag]
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
[Key
"AppImageConfigName" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
appImageConfigName]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> CodeEditorAppImageConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"CodeEditorAppImageConfig"
(CodeEditorAppImageConfigProperty -> (Key, Value))
-> Maybe CodeEditorAppImageConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe CodeEditorAppImageConfigProperty
codeEditorAppImageConfig,
Key -> JupyterLabAppImageConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"JupyterLabAppImageConfig"
(JupyterLabAppImageConfigProperty -> (Key, Value))
-> Maybe JupyterLabAppImageConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe JupyterLabAppImageConfigProperty
jupyterLabAppImageConfig,
Key -> KernelGatewayImageConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"KernelGatewayImageConfig"
(KernelGatewayImageConfigProperty -> (Key, Value))
-> Maybe KernelGatewayImageConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe KernelGatewayImageConfigProperty
kernelGatewayImageConfig,
Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags])))
instance Property "AppImageConfigName" AppImageConfig where
type PropertyType "AppImageConfigName" AppImageConfig = Value Prelude.Text
set :: PropertyType "AppImageConfigName" AppImageConfig
-> AppImageConfig -> AppImageConfig
set PropertyType "AppImageConfigName" AppImageConfig
newValue AppImageConfig {Maybe [Tag]
Maybe CodeEditorAppImageConfigProperty
Maybe JupyterLabAppImageConfigProperty
Maybe KernelGatewayImageConfigProperty
()
Value Text
haddock_workaround_ :: AppImageConfig -> ()
appImageConfigName :: AppImageConfig -> Value Text
codeEditorAppImageConfig :: AppImageConfig -> Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: AppImageConfig -> Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: AppImageConfig -> Maybe KernelGatewayImageConfigProperty
tags :: AppImageConfig -> Maybe [Tag]
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
..}
= AppImageConfig {appImageConfigName :: Value Text
appImageConfigName = PropertyType "AppImageConfigName" AppImageConfig
Value Text
newValue, Maybe [Tag]
Maybe CodeEditorAppImageConfigProperty
Maybe JupyterLabAppImageConfigProperty
Maybe KernelGatewayImageConfigProperty
()
haddock_workaround_ :: ()
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
..}
instance Property "CodeEditorAppImageConfig" AppImageConfig where
type PropertyType "CodeEditorAppImageConfig" AppImageConfig = CodeEditorAppImageConfigProperty
set :: PropertyType "CodeEditorAppImageConfig" AppImageConfig
-> AppImageConfig -> AppImageConfig
set PropertyType "CodeEditorAppImageConfig" AppImageConfig
newValue AppImageConfig {Maybe [Tag]
Maybe CodeEditorAppImageConfigProperty
Maybe JupyterLabAppImageConfigProperty
Maybe KernelGatewayImageConfigProperty
()
Value Text
haddock_workaround_ :: AppImageConfig -> ()
appImageConfigName :: AppImageConfig -> Value Text
codeEditorAppImageConfig :: AppImageConfig -> Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: AppImageConfig -> Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: AppImageConfig -> Maybe KernelGatewayImageConfigProperty
tags :: AppImageConfig -> Maybe [Tag]
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
..}
= AppImageConfig
{codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
codeEditorAppImageConfig = CodeEditorAppImageConfigProperty
-> Maybe CodeEditorAppImageConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CodeEditorAppImageConfig" AppImageConfig
CodeEditorAppImageConfigProperty
newValue, Maybe [Tag]
Maybe JupyterLabAppImageConfigProperty
Maybe KernelGatewayImageConfigProperty
()
Value Text
haddock_workaround_ :: ()
appImageConfigName :: Value Text
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appImageConfigName :: Value Text
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
..}
instance Property "JupyterLabAppImageConfig" AppImageConfig where
type PropertyType "JupyterLabAppImageConfig" AppImageConfig = JupyterLabAppImageConfigProperty
set :: PropertyType "JupyterLabAppImageConfig" AppImageConfig
-> AppImageConfig -> AppImageConfig
set PropertyType "JupyterLabAppImageConfig" AppImageConfig
newValue AppImageConfig {Maybe [Tag]
Maybe CodeEditorAppImageConfigProperty
Maybe JupyterLabAppImageConfigProperty
Maybe KernelGatewayImageConfigProperty
()
Value Text
haddock_workaround_ :: AppImageConfig -> ()
appImageConfigName :: AppImageConfig -> Value Text
codeEditorAppImageConfig :: AppImageConfig -> Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: AppImageConfig -> Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: AppImageConfig -> Maybe KernelGatewayImageConfigProperty
tags :: AppImageConfig -> Maybe [Tag]
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
..}
= AppImageConfig
{jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
jupyterLabAppImageConfig = JupyterLabAppImageConfigProperty
-> Maybe JupyterLabAppImageConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "JupyterLabAppImageConfig" AppImageConfig
JupyterLabAppImageConfigProperty
newValue, Maybe [Tag]
Maybe CodeEditorAppImageConfigProperty
Maybe KernelGatewayImageConfigProperty
()
Value Text
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
..}
instance Property "KernelGatewayImageConfig" AppImageConfig where
type PropertyType "KernelGatewayImageConfig" AppImageConfig = KernelGatewayImageConfigProperty
set :: PropertyType "KernelGatewayImageConfig" AppImageConfig
-> AppImageConfig -> AppImageConfig
set PropertyType "KernelGatewayImageConfig" AppImageConfig
newValue AppImageConfig {Maybe [Tag]
Maybe CodeEditorAppImageConfigProperty
Maybe JupyterLabAppImageConfigProperty
Maybe KernelGatewayImageConfigProperty
()
Value Text
haddock_workaround_ :: AppImageConfig -> ()
appImageConfigName :: AppImageConfig -> Value Text
codeEditorAppImageConfig :: AppImageConfig -> Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: AppImageConfig -> Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: AppImageConfig -> Maybe KernelGatewayImageConfigProperty
tags :: AppImageConfig -> Maybe [Tag]
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
..}
= AppImageConfig
{kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
kernelGatewayImageConfig = KernelGatewayImageConfigProperty
-> Maybe KernelGatewayImageConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "KernelGatewayImageConfig" AppImageConfig
KernelGatewayImageConfigProperty
newValue, Maybe [Tag]
Maybe CodeEditorAppImageConfigProperty
Maybe JupyterLabAppImageConfigProperty
()
Value Text
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
tags :: Maybe [Tag]
..}
instance Property "Tags" AppImageConfig where
type PropertyType "Tags" AppImageConfig = [Tag]
set :: PropertyType "Tags" AppImageConfig
-> AppImageConfig -> AppImageConfig
set PropertyType "Tags" AppImageConfig
newValue AppImageConfig {Maybe [Tag]
Maybe CodeEditorAppImageConfigProperty
Maybe JupyterLabAppImageConfigProperty
Maybe KernelGatewayImageConfigProperty
()
Value Text
haddock_workaround_ :: AppImageConfig -> ()
appImageConfigName :: AppImageConfig -> Value Text
codeEditorAppImageConfig :: AppImageConfig -> Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: AppImageConfig -> Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: AppImageConfig -> Maybe KernelGatewayImageConfigProperty
tags :: AppImageConfig -> Maybe [Tag]
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
tags :: Maybe [Tag]
..}
= AppImageConfig {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" AppImageConfig
newValue, Maybe CodeEditorAppImageConfigProperty
Maybe JupyterLabAppImageConfigProperty
Maybe KernelGatewayImageConfigProperty
()
Value Text
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
haddock_workaround_ :: ()
appImageConfigName :: Value Text
codeEditorAppImageConfig :: Maybe CodeEditorAppImageConfigProperty
jupyterLabAppImageConfig :: Maybe JupyterLabAppImageConfigProperty
kernelGatewayImageConfig :: Maybe KernelGatewayImageConfigProperty
..}