module Stratosphere.EC2.NetworkInterfaceAttachment (
module Exports, NetworkInterfaceAttachment(..),
mkNetworkInterfaceAttachment
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.EC2.NetworkInterfaceAttachment.EnaSrdSpecificationProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data NetworkInterfaceAttachment
=
NetworkInterfaceAttachment {NetworkInterfaceAttachment -> ()
haddock_workaround_ :: (),
NetworkInterfaceAttachment -> Maybe (Value Bool)
deleteOnTermination :: (Prelude.Maybe (Value Prelude.Bool)),
NetworkInterfaceAttachment -> Value Text
deviceIndex :: (Value Prelude.Text),
NetworkInterfaceAttachment -> Maybe (Value Integer)
enaQueueCount :: (Prelude.Maybe (Value Prelude.Integer)),
NetworkInterfaceAttachment -> Maybe EnaSrdSpecificationProperty
enaSrdSpecification :: (Prelude.Maybe EnaSrdSpecificationProperty),
NetworkInterfaceAttachment -> Value Text
instanceId :: (Value Prelude.Text),
NetworkInterfaceAttachment -> Value Text
networkInterfaceId :: (Value Prelude.Text)}
deriving stock (NetworkInterfaceAttachment -> NetworkInterfaceAttachment -> Bool
(NetworkInterfaceAttachment -> NetworkInterfaceAttachment -> Bool)
-> (NetworkInterfaceAttachment
-> NetworkInterfaceAttachment -> Bool)
-> Eq NetworkInterfaceAttachment
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: NetworkInterfaceAttachment -> NetworkInterfaceAttachment -> Bool
== :: NetworkInterfaceAttachment -> NetworkInterfaceAttachment -> Bool
$c/= :: NetworkInterfaceAttachment -> NetworkInterfaceAttachment -> Bool
/= :: NetworkInterfaceAttachment -> NetworkInterfaceAttachment -> Bool
Prelude.Eq, Int -> NetworkInterfaceAttachment -> ShowS
[NetworkInterfaceAttachment] -> ShowS
NetworkInterfaceAttachment -> String
(Int -> NetworkInterfaceAttachment -> ShowS)
-> (NetworkInterfaceAttachment -> String)
-> ([NetworkInterfaceAttachment] -> ShowS)
-> Show NetworkInterfaceAttachment
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> NetworkInterfaceAttachment -> ShowS
showsPrec :: Int -> NetworkInterfaceAttachment -> ShowS
$cshow :: NetworkInterfaceAttachment -> String
show :: NetworkInterfaceAttachment -> String
$cshowList :: [NetworkInterfaceAttachment] -> ShowS
showList :: [NetworkInterfaceAttachment] -> ShowS
Prelude.Show)
mkNetworkInterfaceAttachment ::
Value Prelude.Text
-> Value Prelude.Text
-> Value Prelude.Text -> NetworkInterfaceAttachment
mkNetworkInterfaceAttachment :: Value Text
-> Value Text -> Value Text -> NetworkInterfaceAttachment
mkNetworkInterfaceAttachment
Value Text
deviceIndex
Value Text
instanceId
Value Text
networkInterfaceId
= NetworkInterfaceAttachment
{haddock_workaround_ :: ()
haddock_workaround_ = (), deviceIndex :: Value Text
deviceIndex = Value Text
deviceIndex,
instanceId :: Value Text
instanceId = Value Text
instanceId, networkInterfaceId :: Value Text
networkInterfaceId = Value Text
networkInterfaceId,
deleteOnTermination :: Maybe (Value Bool)
deleteOnTermination = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
enaQueueCount :: Maybe (Value Integer)
enaQueueCount = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
enaSrdSpecification = Maybe EnaSrdSpecificationProperty
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties NetworkInterfaceAttachment where
toResourceProperties :: NetworkInterfaceAttachment -> ResourceProperties
toResourceProperties NetworkInterfaceAttachment {Maybe (Value Bool)
Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: NetworkInterfaceAttachment -> ()
deleteOnTermination :: NetworkInterfaceAttachment -> Maybe (Value Bool)
deviceIndex :: NetworkInterfaceAttachment -> Value Text
enaQueueCount :: NetworkInterfaceAttachment -> Maybe (Value Integer)
enaSrdSpecification :: NetworkInterfaceAttachment -> Maybe EnaSrdSpecificationProperty
instanceId :: NetworkInterfaceAttachment -> Value Text
networkInterfaceId :: NetworkInterfaceAttachment -> Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::EC2::NetworkInterfaceAttachment",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
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
"DeviceIndex" 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
deviceIndex,
Key
"InstanceId" 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
instanceId,
Key
"NetworkInterfaceId" 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
networkInterfaceId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DeleteOnTermination" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
deleteOnTermination,
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
"EnaQueueCount" (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)
enaQueueCount,
Key -> EnaSrdSpecificationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EnaSrdSpecification" (EnaSrdSpecificationProperty -> (Key, Value))
-> Maybe EnaSrdSpecificationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe EnaSrdSpecificationProperty
enaSrdSpecification]))}
instance JSON.ToJSON NetworkInterfaceAttachment where
toJSON :: NetworkInterfaceAttachment -> Value
toJSON NetworkInterfaceAttachment {Maybe (Value Bool)
Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: NetworkInterfaceAttachment -> ()
deleteOnTermination :: NetworkInterfaceAttachment -> Maybe (Value Bool)
deviceIndex :: NetworkInterfaceAttachment -> Value Text
enaQueueCount :: NetworkInterfaceAttachment -> Maybe (Value Integer)
enaSrdSpecification :: NetworkInterfaceAttachment -> Maybe EnaSrdSpecificationProperty
instanceId :: NetworkInterfaceAttachment -> Value Text
networkInterfaceId :: NetworkInterfaceAttachment -> Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: 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
"DeviceIndex" 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
deviceIndex,
Key
"InstanceId" 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
instanceId,
Key
"NetworkInterfaceId" 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
networkInterfaceId]
([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DeleteOnTermination" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
deleteOnTermination,
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
"EnaQueueCount" (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)
enaQueueCount,
Key -> EnaSrdSpecificationProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EnaSrdSpecification" (EnaSrdSpecificationProperty -> (Key, Value))
-> Maybe EnaSrdSpecificationProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe EnaSrdSpecificationProperty
enaSrdSpecification])))
instance Property "DeleteOnTermination" NetworkInterfaceAttachment where
type PropertyType "DeleteOnTermination" NetworkInterfaceAttachment = Value Prelude.Bool
set :: PropertyType "DeleteOnTermination" NetworkInterfaceAttachment
-> NetworkInterfaceAttachment -> NetworkInterfaceAttachment
set PropertyType "DeleteOnTermination" NetworkInterfaceAttachment
newValue NetworkInterfaceAttachment {Maybe (Value Bool)
Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: NetworkInterfaceAttachment -> ()
deleteOnTermination :: NetworkInterfaceAttachment -> Maybe (Value Bool)
deviceIndex :: NetworkInterfaceAttachment -> Value Text
enaQueueCount :: NetworkInterfaceAttachment -> Maybe (Value Integer)
enaSrdSpecification :: NetworkInterfaceAttachment -> Maybe EnaSrdSpecificationProperty
instanceId :: NetworkInterfaceAttachment -> Value Text
networkInterfaceId :: NetworkInterfaceAttachment -> Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
..}
= NetworkInterfaceAttachment
{deleteOnTermination :: Maybe (Value Bool)
deleteOnTermination = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DeleteOnTermination" NetworkInterfaceAttachment
Value Bool
newValue, Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: ()
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
haddock_workaround_ :: ()
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
..}
instance Property "DeviceIndex" NetworkInterfaceAttachment where
type PropertyType "DeviceIndex" NetworkInterfaceAttachment = Value Prelude.Text
set :: PropertyType "DeviceIndex" NetworkInterfaceAttachment
-> NetworkInterfaceAttachment -> NetworkInterfaceAttachment
set PropertyType "DeviceIndex" NetworkInterfaceAttachment
newValue NetworkInterfaceAttachment {Maybe (Value Bool)
Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: NetworkInterfaceAttachment -> ()
deleteOnTermination :: NetworkInterfaceAttachment -> Maybe (Value Bool)
deviceIndex :: NetworkInterfaceAttachment -> Value Text
enaQueueCount :: NetworkInterfaceAttachment -> Maybe (Value Integer)
enaSrdSpecification :: NetworkInterfaceAttachment -> Maybe EnaSrdSpecificationProperty
instanceId :: NetworkInterfaceAttachment -> Value Text
networkInterfaceId :: NetworkInterfaceAttachment -> Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
..}
= NetworkInterfaceAttachment {deviceIndex :: Value Text
deviceIndex = PropertyType "DeviceIndex" NetworkInterfaceAttachment
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
..}
instance Property "EnaQueueCount" NetworkInterfaceAttachment where
type PropertyType "EnaQueueCount" NetworkInterfaceAttachment = Value Prelude.Integer
set :: PropertyType "EnaQueueCount" NetworkInterfaceAttachment
-> NetworkInterfaceAttachment -> NetworkInterfaceAttachment
set PropertyType "EnaQueueCount" NetworkInterfaceAttachment
newValue NetworkInterfaceAttachment {Maybe (Value Bool)
Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: NetworkInterfaceAttachment -> ()
deleteOnTermination :: NetworkInterfaceAttachment -> Maybe (Value Bool)
deviceIndex :: NetworkInterfaceAttachment -> Value Text
enaQueueCount :: NetworkInterfaceAttachment -> Maybe (Value Integer)
enaSrdSpecification :: NetworkInterfaceAttachment -> Maybe EnaSrdSpecificationProperty
instanceId :: NetworkInterfaceAttachment -> Value Text
networkInterfaceId :: NetworkInterfaceAttachment -> Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
..}
= NetworkInterfaceAttachment
{enaQueueCount :: Maybe (Value Integer)
enaQueueCount = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EnaQueueCount" NetworkInterfaceAttachment
Value Integer
newValue, Maybe (Value Bool)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
..}
instance Property "EnaSrdSpecification" NetworkInterfaceAttachment where
type PropertyType "EnaSrdSpecification" NetworkInterfaceAttachment = EnaSrdSpecificationProperty
set :: PropertyType "EnaSrdSpecification" NetworkInterfaceAttachment
-> NetworkInterfaceAttachment -> NetworkInterfaceAttachment
set PropertyType "EnaSrdSpecification" NetworkInterfaceAttachment
newValue NetworkInterfaceAttachment {Maybe (Value Bool)
Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: NetworkInterfaceAttachment -> ()
deleteOnTermination :: NetworkInterfaceAttachment -> Maybe (Value Bool)
deviceIndex :: NetworkInterfaceAttachment -> Value Text
enaQueueCount :: NetworkInterfaceAttachment -> Maybe (Value Integer)
enaSrdSpecification :: NetworkInterfaceAttachment -> Maybe EnaSrdSpecificationProperty
instanceId :: NetworkInterfaceAttachment -> Value Text
networkInterfaceId :: NetworkInterfaceAttachment -> Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
..}
= NetworkInterfaceAttachment
{enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
enaSrdSpecification = EnaSrdSpecificationProperty -> Maybe EnaSrdSpecificationProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EnaSrdSpecification" NetworkInterfaceAttachment
EnaSrdSpecificationProperty
newValue, Maybe (Value Bool)
Maybe (Value Integer)
()
Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
instanceId :: Value Text
networkInterfaceId :: Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
instanceId :: Value Text
networkInterfaceId :: Value Text
..}
instance Property "InstanceId" NetworkInterfaceAttachment where
type PropertyType "InstanceId" NetworkInterfaceAttachment = Value Prelude.Text
set :: PropertyType "InstanceId" NetworkInterfaceAttachment
-> NetworkInterfaceAttachment -> NetworkInterfaceAttachment
set PropertyType "InstanceId" NetworkInterfaceAttachment
newValue NetworkInterfaceAttachment {Maybe (Value Bool)
Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: NetworkInterfaceAttachment -> ()
deleteOnTermination :: NetworkInterfaceAttachment -> Maybe (Value Bool)
deviceIndex :: NetworkInterfaceAttachment -> Value Text
enaQueueCount :: NetworkInterfaceAttachment -> Maybe (Value Integer)
enaSrdSpecification :: NetworkInterfaceAttachment -> Maybe EnaSrdSpecificationProperty
instanceId :: NetworkInterfaceAttachment -> Value Text
networkInterfaceId :: NetworkInterfaceAttachment -> Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
..}
= NetworkInterfaceAttachment {instanceId :: Value Text
instanceId = PropertyType "InstanceId" NetworkInterfaceAttachment
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
networkInterfaceId :: Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
networkInterfaceId :: Value Text
..}
instance Property "NetworkInterfaceId" NetworkInterfaceAttachment where
type PropertyType "NetworkInterfaceId" NetworkInterfaceAttachment = Value Prelude.Text
set :: PropertyType "NetworkInterfaceId" NetworkInterfaceAttachment
-> NetworkInterfaceAttachment -> NetworkInterfaceAttachment
set PropertyType "NetworkInterfaceId" NetworkInterfaceAttachment
newValue NetworkInterfaceAttachment {Maybe (Value Bool)
Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: NetworkInterfaceAttachment -> ()
deleteOnTermination :: NetworkInterfaceAttachment -> Maybe (Value Bool)
deviceIndex :: NetworkInterfaceAttachment -> Value Text
enaQueueCount :: NetworkInterfaceAttachment -> Maybe (Value Integer)
enaSrdSpecification :: NetworkInterfaceAttachment -> Maybe EnaSrdSpecificationProperty
instanceId :: NetworkInterfaceAttachment -> Value Text
networkInterfaceId :: NetworkInterfaceAttachment -> Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
networkInterfaceId :: Value Text
..}
= NetworkInterfaceAttachment {networkInterfaceId :: Value Text
networkInterfaceId = PropertyType "NetworkInterfaceId" NetworkInterfaceAttachment
Value Text
newValue, Maybe (Value Bool)
Maybe (Value Integer)
Maybe EnaSrdSpecificationProperty
()
Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
haddock_workaround_ :: ()
deleteOnTermination :: Maybe (Value Bool)
deviceIndex :: Value Text
enaQueueCount :: Maybe (Value Integer)
enaSrdSpecification :: Maybe EnaSrdSpecificationProperty
instanceId :: Value Text
..}