module Stratosphere.AppRunner.Service (
module Exports, Service(..), mkService
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.AppRunner.Service.EncryptionConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.AppRunner.Service.HealthCheckConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.AppRunner.Service.InstanceConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.AppRunner.Service.NetworkConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.AppRunner.Service.ServiceObservabilityConfigurationProperty as Exports
import {-# SOURCE #-} Stratosphere.AppRunner.Service.SourceConfigurationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data Service
=
Service {Service -> ()
haddock_workaround_ :: (),
Service -> Maybe (Value Text)
autoScalingConfigurationArn :: (Prelude.Maybe (Value Prelude.Text)),
Service -> Maybe EncryptionConfigurationProperty
encryptionConfiguration :: (Prelude.Maybe EncryptionConfigurationProperty),
Service -> Maybe HealthCheckConfigurationProperty
healthCheckConfiguration :: (Prelude.Maybe HealthCheckConfigurationProperty),
Service -> Maybe InstanceConfigurationProperty
instanceConfiguration :: (Prelude.Maybe InstanceConfigurationProperty),
Service -> Maybe NetworkConfigurationProperty
networkConfiguration :: (Prelude.Maybe NetworkConfigurationProperty),
Service -> Maybe ServiceObservabilityConfigurationProperty
observabilityConfiguration :: (Prelude.Maybe ServiceObservabilityConfigurationProperty),
Service -> Maybe (Value Text)
serviceName :: (Prelude.Maybe (Value Prelude.Text)),
Service -> SourceConfigurationProperty
sourceConfiguration :: SourceConfigurationProperty,
Service -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag])}
deriving stock (Service -> Service -> Bool
(Service -> Service -> Bool)
-> (Service -> Service -> Bool) -> Eq Service
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Service -> Service -> Bool
== :: Service -> Service -> Bool
$c/= :: Service -> Service -> Bool
/= :: Service -> Service -> Bool
Prelude.Eq, Int -> Service -> ShowS
[Service] -> ShowS
Service -> String
(Int -> Service -> ShowS)
-> (Service -> String) -> ([Service] -> ShowS) -> Show Service
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Service -> ShowS
showsPrec :: Int -> Service -> ShowS
$cshow :: Service -> String
show :: Service -> String
$cshowList :: [Service] -> ShowS
showList :: [Service] -> ShowS
Prelude.Show)
mkService :: SourceConfigurationProperty -> Service
mkService :: SourceConfigurationProperty -> Service
mkService SourceConfigurationProperty
sourceConfiguration
= Service
{haddock_workaround_ :: ()
haddock_workaround_ = (),
sourceConfiguration :: SourceConfigurationProperty
sourceConfiguration = SourceConfigurationProperty
sourceConfiguration,
autoScalingConfigurationArn :: Maybe (Value Text)
autoScalingConfigurationArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
encryptionConfiguration = Maybe EncryptionConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
healthCheckConfiguration = Maybe HealthCheckConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
instanceConfiguration :: Maybe InstanceConfigurationProperty
instanceConfiguration = Maybe InstanceConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
networkConfiguration :: Maybe NetworkConfigurationProperty
networkConfiguration = Maybe NetworkConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
observabilityConfiguration = Maybe ServiceObservabilityConfigurationProperty
forall a. Maybe a
Prelude.Nothing,
serviceName :: Maybe (Value Text)
serviceName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties Service where
toResourceProperties :: Service -> ResourceProperties
toResourceProperties Service {Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: Service -> ()
autoScalingConfigurationArn :: Service -> Maybe (Value Text)
encryptionConfiguration :: Service -> Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Service -> Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Service -> Maybe InstanceConfigurationProperty
networkConfiguration :: Service -> Maybe NetworkConfigurationProperty
observabilityConfiguration :: Service -> Maybe ServiceObservabilityConfigurationProperty
serviceName :: Service -> Maybe (Value Text)
sourceConfiguration :: Service -> SourceConfigurationProperty
tags :: Service -> Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::AppRunner::Service", 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
"SourceConfiguration" Key -> SourceConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= SourceConfigurationProperty
sourceConfiguration]
([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
"AutoScalingConfigurationArn"
(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)
autoScalingConfigurationArn,
Key -> EncryptionConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EncryptionConfiguration"
(EncryptionConfigurationProperty -> (Key, Value))
-> Maybe EncryptionConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe EncryptionConfigurationProperty
encryptionConfiguration,
Key -> HealthCheckConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HealthCheckConfiguration"
(HealthCheckConfigurationProperty -> (Key, Value))
-> Maybe HealthCheckConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe HealthCheckConfigurationProperty
healthCheckConfiguration,
Key -> InstanceConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"InstanceConfiguration"
(InstanceConfigurationProperty -> (Key, Value))
-> Maybe InstanceConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe InstanceConfigurationProperty
instanceConfiguration,
Key -> NetworkConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"NetworkConfiguration" (NetworkConfigurationProperty -> (Key, Value))
-> Maybe NetworkConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NetworkConfigurationProperty
networkConfiguration,
Key -> ServiceObservabilityConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ObservabilityConfiguration"
(ServiceObservabilityConfigurationProperty -> (Key, Value))
-> Maybe ServiceObservabilityConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ServiceObservabilityConfigurationProperty
observabilityConfiguration,
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
"ServiceName" (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)
serviceName,
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 Service where
toJSON :: Service -> Value
toJSON Service {Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: Service -> ()
autoScalingConfigurationArn :: Service -> Maybe (Value Text)
encryptionConfiguration :: Service -> Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Service -> Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Service -> Maybe InstanceConfigurationProperty
networkConfiguration :: Service -> Maybe NetworkConfigurationProperty
observabilityConfiguration :: Service -> Maybe ServiceObservabilityConfigurationProperty
serviceName :: Service -> Maybe (Value Text)
sourceConfiguration :: Service -> SourceConfigurationProperty
tags :: Service -> Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
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
"SourceConfiguration" Key -> SourceConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= SourceConfigurationProperty
sourceConfiguration]
([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
"AutoScalingConfigurationArn"
(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)
autoScalingConfigurationArn,
Key -> EncryptionConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EncryptionConfiguration"
(EncryptionConfigurationProperty -> (Key, Value))
-> Maybe EncryptionConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe EncryptionConfigurationProperty
encryptionConfiguration,
Key -> HealthCheckConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HealthCheckConfiguration"
(HealthCheckConfigurationProperty -> (Key, Value))
-> Maybe HealthCheckConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe HealthCheckConfigurationProperty
healthCheckConfiguration,
Key -> InstanceConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"InstanceConfiguration"
(InstanceConfigurationProperty -> (Key, Value))
-> Maybe InstanceConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe InstanceConfigurationProperty
instanceConfiguration,
Key -> NetworkConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"NetworkConfiguration" (NetworkConfigurationProperty -> (Key, Value))
-> Maybe NetworkConfigurationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe NetworkConfigurationProperty
networkConfiguration,
Key -> ServiceObservabilityConfigurationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ObservabilityConfiguration"
(ServiceObservabilityConfigurationProperty -> (Key, Value))
-> Maybe ServiceObservabilityConfigurationProperty
-> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ServiceObservabilityConfigurationProperty
observabilityConfiguration,
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
"ServiceName" (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)
serviceName,
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 "AutoScalingConfigurationArn" Service where
type PropertyType "AutoScalingConfigurationArn" Service = Value Prelude.Text
set :: PropertyType "AutoScalingConfigurationArn" Service
-> Service -> Service
set PropertyType "AutoScalingConfigurationArn" Service
newValue Service {Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: Service -> ()
autoScalingConfigurationArn :: Service -> Maybe (Value Text)
encryptionConfiguration :: Service -> Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Service -> Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Service -> Maybe InstanceConfigurationProperty
networkConfiguration :: Service -> Maybe NetworkConfigurationProperty
observabilityConfiguration :: Service -> Maybe ServiceObservabilityConfigurationProperty
serviceName :: Service -> Maybe (Value Text)
sourceConfiguration :: Service -> SourceConfigurationProperty
tags :: Service -> Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
= Service {autoScalingConfigurationArn :: Maybe (Value Text)
autoScalingConfigurationArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AutoScalingConfigurationArn" Service
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: ()
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
instance Property "EncryptionConfiguration" Service where
type PropertyType "EncryptionConfiguration" Service = EncryptionConfigurationProperty
set :: PropertyType "EncryptionConfiguration" Service
-> Service -> Service
set PropertyType "EncryptionConfiguration" Service
newValue Service {Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: Service -> ()
autoScalingConfigurationArn :: Service -> Maybe (Value Text)
encryptionConfiguration :: Service -> Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Service -> Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Service -> Maybe InstanceConfigurationProperty
networkConfiguration :: Service -> Maybe NetworkConfigurationProperty
observabilityConfiguration :: Service -> Maybe ServiceObservabilityConfigurationProperty
serviceName :: Service -> Maybe (Value Text)
sourceConfiguration :: Service -> SourceConfigurationProperty
tags :: Service -> Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
= Service {encryptionConfiguration :: Maybe EncryptionConfigurationProperty
encryptionConfiguration = EncryptionConfigurationProperty
-> Maybe EncryptionConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EncryptionConfiguration" Service
EncryptionConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
instance Property "HealthCheckConfiguration" Service where
type PropertyType "HealthCheckConfiguration" Service = HealthCheckConfigurationProperty
set :: PropertyType "HealthCheckConfiguration" Service
-> Service -> Service
set PropertyType "HealthCheckConfiguration" Service
newValue Service {Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: Service -> ()
autoScalingConfigurationArn :: Service -> Maybe (Value Text)
encryptionConfiguration :: Service -> Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Service -> Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Service -> Maybe InstanceConfigurationProperty
networkConfiguration :: Service -> Maybe NetworkConfigurationProperty
observabilityConfiguration :: Service -> Maybe ServiceObservabilityConfigurationProperty
serviceName :: Service -> Maybe (Value Text)
sourceConfiguration :: Service -> SourceConfigurationProperty
tags :: Service -> Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
= Service {healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
healthCheckConfiguration = HealthCheckConfigurationProperty
-> Maybe HealthCheckConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HealthCheckConfiguration" Service
HealthCheckConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
instance Property "InstanceConfiguration" Service where
type PropertyType "InstanceConfiguration" Service = InstanceConfigurationProperty
set :: PropertyType "InstanceConfiguration" Service -> Service -> Service
set PropertyType "InstanceConfiguration" Service
newValue Service {Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: Service -> ()
autoScalingConfigurationArn :: Service -> Maybe (Value Text)
encryptionConfiguration :: Service -> Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Service -> Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Service -> Maybe InstanceConfigurationProperty
networkConfiguration :: Service -> Maybe NetworkConfigurationProperty
observabilityConfiguration :: Service -> Maybe ServiceObservabilityConfigurationProperty
serviceName :: Service -> Maybe (Value Text)
sourceConfiguration :: Service -> SourceConfigurationProperty
tags :: Service -> Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
= Service {instanceConfiguration :: Maybe InstanceConfigurationProperty
instanceConfiguration = InstanceConfigurationProperty
-> Maybe InstanceConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "InstanceConfiguration" Service
InstanceConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
instance Property "NetworkConfiguration" Service where
type PropertyType "NetworkConfiguration" Service = NetworkConfigurationProperty
set :: PropertyType "NetworkConfiguration" Service -> Service -> Service
set PropertyType "NetworkConfiguration" Service
newValue Service {Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: Service -> ()
autoScalingConfigurationArn :: Service -> Maybe (Value Text)
encryptionConfiguration :: Service -> Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Service -> Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Service -> Maybe InstanceConfigurationProperty
networkConfiguration :: Service -> Maybe NetworkConfigurationProperty
observabilityConfiguration :: Service -> Maybe ServiceObservabilityConfigurationProperty
serviceName :: Service -> Maybe (Value Text)
sourceConfiguration :: Service -> SourceConfigurationProperty
tags :: Service -> Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
= Service {networkConfiguration :: Maybe NetworkConfigurationProperty
networkConfiguration = NetworkConfigurationProperty -> Maybe NetworkConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "NetworkConfiguration" Service
NetworkConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
instance Property "ObservabilityConfiguration" Service where
type PropertyType "ObservabilityConfiguration" Service = ServiceObservabilityConfigurationProperty
set :: PropertyType "ObservabilityConfiguration" Service
-> Service -> Service
set PropertyType "ObservabilityConfiguration" Service
newValue Service {Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: Service -> ()
autoScalingConfigurationArn :: Service -> Maybe (Value Text)
encryptionConfiguration :: Service -> Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Service -> Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Service -> Maybe InstanceConfigurationProperty
networkConfiguration :: Service -> Maybe NetworkConfigurationProperty
observabilityConfiguration :: Service -> Maybe ServiceObservabilityConfigurationProperty
serviceName :: Service -> Maybe (Value Text)
sourceConfiguration :: Service -> SourceConfigurationProperty
tags :: Service -> Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
= Service {observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
observabilityConfiguration = ServiceObservabilityConfigurationProperty
-> Maybe ServiceObservabilityConfigurationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ObservabilityConfiguration" Service
ServiceObservabilityConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
instance Property "ServiceName" Service where
type PropertyType "ServiceName" Service = Value Prelude.Text
set :: PropertyType "ServiceName" Service -> Service -> Service
set PropertyType "ServiceName" Service
newValue Service {Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: Service -> ()
autoScalingConfigurationArn :: Service -> Maybe (Value Text)
encryptionConfiguration :: Service -> Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Service -> Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Service -> Maybe InstanceConfigurationProperty
networkConfiguration :: Service -> Maybe NetworkConfigurationProperty
observabilityConfiguration :: Service -> Maybe ServiceObservabilityConfigurationProperty
serviceName :: Service -> Maybe (Value Text)
sourceConfiguration :: Service -> SourceConfigurationProperty
tags :: Service -> Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
= Service {serviceName :: Maybe (Value Text)
serviceName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ServiceName" Service
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
instance Property "SourceConfiguration" Service where
type PropertyType "SourceConfiguration" Service = SourceConfigurationProperty
set :: PropertyType "SourceConfiguration" Service -> Service -> Service
set PropertyType "SourceConfiguration" Service
newValue Service {Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: Service -> ()
autoScalingConfigurationArn :: Service -> Maybe (Value Text)
encryptionConfiguration :: Service -> Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Service -> Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Service -> Maybe InstanceConfigurationProperty
networkConfiguration :: Service -> Maybe NetworkConfigurationProperty
observabilityConfiguration :: Service -> Maybe ServiceObservabilityConfigurationProperty
serviceName :: Service -> Maybe (Value Text)
sourceConfiguration :: Service -> SourceConfigurationProperty
tags :: Service -> Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
= Service {sourceConfiguration :: SourceConfigurationProperty
sourceConfiguration = PropertyType "SourceConfiguration" Service
SourceConfigurationProperty
newValue, Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
tags :: Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
tags :: Maybe [Tag]
..}
instance Property "Tags" Service where
type PropertyType "Tags" Service = [Tag]
set :: PropertyType "Tags" Service -> Service -> Service
set PropertyType "Tags" Service
newValue Service {Maybe [Tag]
Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: Service -> ()
autoScalingConfigurationArn :: Service -> Maybe (Value Text)
encryptionConfiguration :: Service -> Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Service -> Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Service -> Maybe InstanceConfigurationProperty
networkConfiguration :: Service -> Maybe NetworkConfigurationProperty
observabilityConfiguration :: Service -> Maybe ServiceObservabilityConfigurationProperty
serviceName :: Service -> Maybe (Value Text)
sourceConfiguration :: Service -> SourceConfigurationProperty
tags :: Service -> Maybe [Tag]
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
tags :: Maybe [Tag]
..}
= Service {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" Service
newValue, Maybe (Value Text)
Maybe EncryptionConfigurationProperty
Maybe HealthCheckConfigurationProperty
Maybe InstanceConfigurationProperty
Maybe NetworkConfigurationProperty
Maybe ServiceObservabilityConfigurationProperty
()
SourceConfigurationProperty
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
haddock_workaround_ :: ()
autoScalingConfigurationArn :: Maybe (Value Text)
encryptionConfiguration :: Maybe EncryptionConfigurationProperty
healthCheckConfiguration :: Maybe HealthCheckConfigurationProperty
instanceConfiguration :: Maybe InstanceConfigurationProperty
networkConfiguration :: Maybe NetworkConfigurationProperty
observabilityConfiguration :: Maybe ServiceObservabilityConfigurationProperty
serviceName :: Maybe (Value Text)
sourceConfiguration :: SourceConfigurationProperty
..}