module Stratosphere.GameLift.ContainerGroupDefinition (
module Exports, ContainerGroupDefinition(..),
mkContainerGroupDefinition
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.GameLift.ContainerGroupDefinition.GameServerContainerDefinitionProperty as Exports
import {-# SOURCE #-} Stratosphere.GameLift.ContainerGroupDefinition.SupportContainerDefinitionProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data ContainerGroupDefinition
=
ContainerGroupDefinition {ContainerGroupDefinition -> ()
haddock_workaround_ :: (),
ContainerGroupDefinition -> Maybe (Value Text)
containerGroupType :: (Prelude.Maybe (Value Prelude.Text)),
ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
gameServerContainerDefinition :: (Prelude.Maybe GameServerContainerDefinitionProperty),
ContainerGroupDefinition -> Value Text
name :: (Value Prelude.Text),
ContainerGroupDefinition -> Value Text
operatingSystem :: (Value Prelude.Text),
ContainerGroupDefinition -> Maybe (Value Integer)
sourceVersionNumber :: (Prelude.Maybe (Value Prelude.Integer)),
ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
supportContainerDefinitions :: (Prelude.Maybe [SupportContainerDefinitionProperty]),
ContainerGroupDefinition -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
ContainerGroupDefinition -> Value Integer
totalMemoryLimitMebibytes :: (Value Prelude.Integer),
ContainerGroupDefinition -> Value Double
totalVcpuLimit :: (Value Prelude.Double),
ContainerGroupDefinition -> Maybe (Value Text)
versionDescription :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (ContainerGroupDefinition -> ContainerGroupDefinition -> Bool
(ContainerGroupDefinition -> ContainerGroupDefinition -> Bool)
-> (ContainerGroupDefinition -> ContainerGroupDefinition -> Bool)
-> Eq ContainerGroupDefinition
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ContainerGroupDefinition -> ContainerGroupDefinition -> Bool
== :: ContainerGroupDefinition -> ContainerGroupDefinition -> Bool
$c/= :: ContainerGroupDefinition -> ContainerGroupDefinition -> Bool
/= :: ContainerGroupDefinition -> ContainerGroupDefinition -> Bool
Prelude.Eq, Int -> ContainerGroupDefinition -> ShowS
[ContainerGroupDefinition] -> ShowS
ContainerGroupDefinition -> String
(Int -> ContainerGroupDefinition -> ShowS)
-> (ContainerGroupDefinition -> String)
-> ([ContainerGroupDefinition] -> ShowS)
-> Show ContainerGroupDefinition
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ContainerGroupDefinition -> ShowS
showsPrec :: Int -> ContainerGroupDefinition -> ShowS
$cshow :: ContainerGroupDefinition -> String
show :: ContainerGroupDefinition -> String
$cshowList :: [ContainerGroupDefinition] -> ShowS
showList :: [ContainerGroupDefinition] -> ShowS
Prelude.Show)
mkContainerGroupDefinition ::
Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Integer
-> Value Prelude.Double -> ContainerGroupDefinition
mkContainerGroupDefinition :: Value Text
-> Value Text
-> Value Integer
-> Value Double
-> ContainerGroupDefinition
mkContainerGroupDefinition
Value Text
name
Value Text
operatingSystem
Value Integer
totalMemoryLimitMebibytes
Value Double
totalVcpuLimit
= ContainerGroupDefinition
{haddock_workaround_ :: ()
haddock_workaround_ = (), name :: Value Text
name = Value Text
name,
operatingSystem :: Value Text
operatingSystem = Value Text
operatingSystem,
totalMemoryLimitMebibytes :: Value Integer
totalMemoryLimitMebibytes = Value Integer
totalMemoryLimitMebibytes,
totalVcpuLimit :: Value Double
totalVcpuLimit = Value Double
totalVcpuLimit,
containerGroupType :: Maybe (Value Text)
containerGroupType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
gameServerContainerDefinition = Maybe GameServerContainerDefinitionProperty
forall a. Maybe a
Prelude.Nothing,
sourceVersionNumber :: Maybe (Value Integer)
sourceVersionNumber = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
supportContainerDefinitions = Maybe [SupportContainerDefinitionProperty]
forall a. Maybe a
Prelude.Nothing,
tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing, versionDescription :: Maybe (Value Text)
versionDescription = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ContainerGroupDefinition where
toResourceProperties :: ContainerGroupDefinition -> ResourceProperties
toResourceProperties ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::GameLift::ContainerGroupDefinition",
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
"Name" 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
name, Key
"OperatingSystem" 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
operatingSystem,
Key
"TotalMemoryLimitMebibytes" Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Integer
totalMemoryLimitMebibytes,
Key
"TotalVcpuLimit" Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Double
totalVcpuLimit]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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..=) Key
"ContainerGroupType" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
containerGroupType,
Key -> GameServerContainerDefinitionProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"GameServerContainerDefinition"
(GameServerContainerDefinitionProperty -> (Key, Value))
-> Maybe GameServerContainerDefinitionProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe GameServerContainerDefinitionProperty
gameServerContainerDefinition,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SourceVersionNumber" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
sourceVersionNumber,
Key -> [SupportContainerDefinitionProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SupportContainerDefinitions"
([SupportContainerDefinitionProperty] -> (Key, Value))
-> Maybe [SupportContainerDefinitionProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [SupportContainerDefinitionProperty]
supportContainerDefinitions,
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,
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..=) Key
"VersionDescription" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
versionDescription]))}
instance JSON.ToJSON ContainerGroupDefinition where
toJSON :: ContainerGroupDefinition -> Value
toJSON ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= [(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
"Name" 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
name, Key
"OperatingSystem" 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
operatingSystem,
Key
"TotalMemoryLimitMebibytes" Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Integer
totalMemoryLimitMebibytes,
Key
"TotalVcpuLimit" Key -> Value Double -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Double
totalVcpuLimit]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[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..=) Key
"ContainerGroupType" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
containerGroupType,
Key -> GameServerContainerDefinitionProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"GameServerContainerDefinition"
(GameServerContainerDefinitionProperty -> (Key, Value))
-> Maybe GameServerContainerDefinitionProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe GameServerContainerDefinitionProperty
gameServerContainerDefinition,
Key -> Value Integer -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SourceVersionNumber" (Value Integer -> (Key, Value))
-> Maybe (Value Integer) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Integer)
sourceVersionNumber,
Key -> [SupportContainerDefinitionProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"SupportContainerDefinitions"
([SupportContainerDefinitionProperty] -> (Key, Value))
-> Maybe [SupportContainerDefinitionProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [SupportContainerDefinitionProperty]
supportContainerDefinitions,
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,
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..=) Key
"VersionDescription" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
versionDescription])))
instance Property "ContainerGroupType" ContainerGroupDefinition where
type PropertyType "ContainerGroupType" ContainerGroupDefinition = Value Prelude.Text
set :: PropertyType "ContainerGroupType" ContainerGroupDefinition
-> ContainerGroupDefinition -> ContainerGroupDefinition
set PropertyType "ContainerGroupType" ContainerGroupDefinition
newValue ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= ContainerGroupDefinition
{containerGroupType :: Maybe (Value Text)
containerGroupType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ContainerGroupType" ContainerGroupDefinition
Value Text
newValue, Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ()
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
haddock_workaround_ :: ()
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
instance Property "GameServerContainerDefinition" ContainerGroupDefinition where
type PropertyType "GameServerContainerDefinition" ContainerGroupDefinition = GameServerContainerDefinitionProperty
set :: PropertyType
"GameServerContainerDefinition" ContainerGroupDefinition
-> ContainerGroupDefinition -> ContainerGroupDefinition
set PropertyType
"GameServerContainerDefinition" ContainerGroupDefinition
newValue ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= ContainerGroupDefinition
{gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
gameServerContainerDefinition = GameServerContainerDefinitionProperty
-> Maybe GameServerContainerDefinitionProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType
"GameServerContainerDefinition" ContainerGroupDefinition
GameServerContainerDefinitionProperty
newValue, Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
instance Property "Name" ContainerGroupDefinition where
type PropertyType "Name" ContainerGroupDefinition = Value Prelude.Text
set :: PropertyType "Name" ContainerGroupDefinition
-> ContainerGroupDefinition -> ContainerGroupDefinition
set PropertyType "Name" ContainerGroupDefinition
newValue ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= ContainerGroupDefinition {name :: Value Text
name = PropertyType "Name" ContainerGroupDefinition
Value Text
newValue, Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
instance Property "OperatingSystem" ContainerGroupDefinition where
type PropertyType "OperatingSystem" ContainerGroupDefinition = Value Prelude.Text
set :: PropertyType "OperatingSystem" ContainerGroupDefinition
-> ContainerGroupDefinition -> ContainerGroupDefinition
set PropertyType "OperatingSystem" ContainerGroupDefinition
newValue ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= ContainerGroupDefinition {operatingSystem :: Value Text
operatingSystem = PropertyType "OperatingSystem" ContainerGroupDefinition
Value Text
newValue, Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
instance Property "SourceVersionNumber" ContainerGroupDefinition where
type PropertyType "SourceVersionNumber" ContainerGroupDefinition = Value Prelude.Integer
set :: PropertyType "SourceVersionNumber" ContainerGroupDefinition
-> ContainerGroupDefinition -> ContainerGroupDefinition
set PropertyType "SourceVersionNumber" ContainerGroupDefinition
newValue ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= ContainerGroupDefinition
{sourceVersionNumber :: Maybe (Value Integer)
sourceVersionNumber = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SourceVersionNumber" ContainerGroupDefinition
Value Integer
newValue, Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
instance Property "SupportContainerDefinitions" ContainerGroupDefinition where
type PropertyType "SupportContainerDefinitions" ContainerGroupDefinition = [SupportContainerDefinitionProperty]
set :: PropertyType "SupportContainerDefinitions" ContainerGroupDefinition
-> ContainerGroupDefinition -> ContainerGroupDefinition
set PropertyType "SupportContainerDefinitions" ContainerGroupDefinition
newValue ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= ContainerGroupDefinition
{supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
supportContainerDefinitions = [SupportContainerDefinitionProperty]
-> Maybe [SupportContainerDefinitionProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [SupportContainerDefinitionProperty]
PropertyType "SupportContainerDefinitions" ContainerGroupDefinition
newValue, Maybe [Tag]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
instance Property "Tags" ContainerGroupDefinition where
type PropertyType "Tags" ContainerGroupDefinition = [Tag]
set :: PropertyType "Tags" ContainerGroupDefinition
-> ContainerGroupDefinition -> ContainerGroupDefinition
set PropertyType "Tags" ContainerGroupDefinition
newValue ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= ContainerGroupDefinition {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" ContainerGroupDefinition
newValue, Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
instance Property "TotalMemoryLimitMebibytes" ContainerGroupDefinition where
type PropertyType "TotalMemoryLimitMebibytes" ContainerGroupDefinition = Value Prelude.Integer
set :: PropertyType "TotalMemoryLimitMebibytes" ContainerGroupDefinition
-> ContainerGroupDefinition -> ContainerGroupDefinition
set PropertyType "TotalMemoryLimitMebibytes" ContainerGroupDefinition
newValue ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= ContainerGroupDefinition
{totalMemoryLimitMebibytes :: Value Integer
totalMemoryLimitMebibytes = PropertyType "TotalMemoryLimitMebibytes" ContainerGroupDefinition
Value Integer
newValue, Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Text
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
instance Property "TotalVcpuLimit" ContainerGroupDefinition where
type PropertyType "TotalVcpuLimit" ContainerGroupDefinition = Value Prelude.Double
set :: PropertyType "TotalVcpuLimit" ContainerGroupDefinition
-> ContainerGroupDefinition -> ContainerGroupDefinition
set PropertyType "TotalVcpuLimit" ContainerGroupDefinition
newValue ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= ContainerGroupDefinition {totalVcpuLimit :: Value Double
totalVcpuLimit = PropertyType "TotalVcpuLimit" ContainerGroupDefinition
Value Double
newValue, Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Integer
Value Text
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
versionDescription :: Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
versionDescription :: Maybe (Value Text)
..}
instance Property "VersionDescription" ContainerGroupDefinition where
type PropertyType "VersionDescription" ContainerGroupDefinition = Value Prelude.Text
set :: PropertyType "VersionDescription" ContainerGroupDefinition
-> ContainerGroupDefinition -> ContainerGroupDefinition
set PropertyType "VersionDescription" ContainerGroupDefinition
newValue ContainerGroupDefinition {Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ContainerGroupDefinition -> ()
containerGroupType :: ContainerGroupDefinition -> Maybe (Value Text)
gameServerContainerDefinition :: ContainerGroupDefinition
-> Maybe GameServerContainerDefinitionProperty
name :: ContainerGroupDefinition -> Value Text
operatingSystem :: ContainerGroupDefinition -> Value Text
sourceVersionNumber :: ContainerGroupDefinition -> Maybe (Value Integer)
supportContainerDefinitions :: ContainerGroupDefinition
-> Maybe [SupportContainerDefinitionProperty]
tags :: ContainerGroupDefinition -> Maybe [Tag]
totalMemoryLimitMebibytes :: ContainerGroupDefinition -> Value Integer
totalVcpuLimit :: ContainerGroupDefinition -> Value Double
versionDescription :: ContainerGroupDefinition -> Maybe (Value Text)
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
versionDescription :: Maybe (Value Text)
..}
= ContainerGroupDefinition
{versionDescription :: Maybe (Value Text)
versionDescription = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "VersionDescription" ContainerGroupDefinition
Value Text
newValue, Maybe [Tag]
Maybe [SupportContainerDefinitionProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe GameServerContainerDefinitionProperty
()
Value Double
Value Integer
Value Text
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
haddock_workaround_ :: ()
containerGroupType :: Maybe (Value Text)
gameServerContainerDefinition :: Maybe GameServerContainerDefinitionProperty
name :: Value Text
operatingSystem :: Value Text
sourceVersionNumber :: Maybe (Value Integer)
supportContainerDefinitions :: Maybe [SupportContainerDefinitionProperty]
tags :: Maybe [Tag]
totalMemoryLimitMebibytes :: Value Integer
totalVcpuLimit :: Value Double
..}