module Stratosphere.GroundStation.DataflowEndpointGroup.AwsGroundStationAgentEndpointProperty (
module Exports, AwsGroundStationAgentEndpointProperty(..),
mkAwsGroundStationAgentEndpointProperty
) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.GroundStation.DataflowEndpointGroup.ConnectionDetailsProperty as Exports
import {-# SOURCE #-} Stratosphere.GroundStation.DataflowEndpointGroup.RangedConnectionDetailsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data AwsGroundStationAgentEndpointProperty
=
AwsGroundStationAgentEndpointProperty {AwsGroundStationAgentEndpointProperty -> ()
haddock_workaround_ :: (),
AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
agentStatus :: (Prelude.Maybe (Value Prelude.Text)),
AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
auditResults :: (Prelude.Maybe (Value Prelude.Text)),
AwsGroundStationAgentEndpointProperty
-> Maybe ConnectionDetailsProperty
egressAddress :: (Prelude.Maybe ConnectionDetailsProperty),
AwsGroundStationAgentEndpointProperty
-> Maybe RangedConnectionDetailsProperty
ingressAddress :: (Prelude.Maybe RangedConnectionDetailsProperty),
AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
name :: (Prelude.Maybe (Value Prelude.Text))}
deriving stock (AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty -> Bool
(AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty -> Bool)
-> (AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty -> Bool)
-> Eq AwsGroundStationAgentEndpointProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty -> Bool
== :: AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty -> Bool
$c/= :: AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty -> Bool
/= :: AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty -> Bool
Prelude.Eq, Int -> AwsGroundStationAgentEndpointProperty -> ShowS
[AwsGroundStationAgentEndpointProperty] -> ShowS
AwsGroundStationAgentEndpointProperty -> String
(Int -> AwsGroundStationAgentEndpointProperty -> ShowS)
-> (AwsGroundStationAgentEndpointProperty -> String)
-> ([AwsGroundStationAgentEndpointProperty] -> ShowS)
-> Show AwsGroundStationAgentEndpointProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> AwsGroundStationAgentEndpointProperty -> ShowS
showsPrec :: Int -> AwsGroundStationAgentEndpointProperty -> ShowS
$cshow :: AwsGroundStationAgentEndpointProperty -> String
show :: AwsGroundStationAgentEndpointProperty -> String
$cshowList :: [AwsGroundStationAgentEndpointProperty] -> ShowS
showList :: [AwsGroundStationAgentEndpointProperty] -> ShowS
Prelude.Show)
mkAwsGroundStationAgentEndpointProperty ::
AwsGroundStationAgentEndpointProperty
mkAwsGroundStationAgentEndpointProperty :: AwsGroundStationAgentEndpointProperty
mkAwsGroundStationAgentEndpointProperty
= AwsGroundStationAgentEndpointProperty
{haddock_workaround_ :: ()
haddock_workaround_ = (), agentStatus :: Maybe (Value Text)
agentStatus = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
auditResults :: Maybe (Value Text)
auditResults = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, egressAddress :: Maybe ConnectionDetailsProperty
egressAddress = Maybe ConnectionDetailsProperty
forall a. Maybe a
Prelude.Nothing,
ingressAddress :: Maybe RangedConnectionDetailsProperty
ingressAddress = Maybe RangedConnectionDetailsProperty
forall a. Maybe a
Prelude.Nothing, name :: Maybe (Value Text)
name = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties AwsGroundStationAgentEndpointProperty where
toResourceProperties :: AwsGroundStationAgentEndpointProperty -> ResourceProperties
toResourceProperties AwsGroundStationAgentEndpointProperty {Maybe (Value Text)
Maybe RangedConnectionDetailsProperty
Maybe ConnectionDetailsProperty
()
haddock_workaround_ :: AwsGroundStationAgentEndpointProperty -> ()
agentStatus :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
auditResults :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
egressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe ConnectionDetailsProperty
ingressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe RangedConnectionDetailsProperty
name :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
..}
= ResourceProperties
{awsType :: Text
awsType = Text
"AWS::GroundStation::DataflowEndpointGroup.AwsGroundStationAgentEndpoint",
supportsTags :: Bool
supportsTags = Bool
Prelude.False,
properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
([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
"AgentStatus" (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)
agentStatus,
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
"AuditResults" (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)
auditResults,
Key -> ConnectionDetailsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EgressAddress" (ConnectionDetailsProperty -> (Key, Value))
-> Maybe ConnectionDetailsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ConnectionDetailsProperty
egressAddress,
Key -> RangedConnectionDetailsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IngressAddress" (RangedConnectionDetailsProperty -> (Key, Value))
-> Maybe RangedConnectionDetailsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RangedConnectionDetailsProperty
ingressAddress,
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
"Name" (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)
name])}
instance JSON.ToJSON AwsGroundStationAgentEndpointProperty where
toJSON :: AwsGroundStationAgentEndpointProperty -> Value
toJSON AwsGroundStationAgentEndpointProperty {Maybe (Value Text)
Maybe RangedConnectionDetailsProperty
Maybe ConnectionDetailsProperty
()
haddock_workaround_ :: AwsGroundStationAgentEndpointProperty -> ()
agentStatus :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
auditResults :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
egressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe ConnectionDetailsProperty
ingressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe RangedConnectionDetailsProperty
name :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
..}
= [(Key, Value)] -> Value
JSON.object
([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
([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
"AgentStatus" (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)
agentStatus,
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
"AuditResults" (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)
auditResults,
Key -> ConnectionDetailsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"EgressAddress" (ConnectionDetailsProperty -> (Key, Value))
-> Maybe ConnectionDetailsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ConnectionDetailsProperty
egressAddress,
Key -> RangedConnectionDetailsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"IngressAddress" (RangedConnectionDetailsProperty -> (Key, Value))
-> Maybe RangedConnectionDetailsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RangedConnectionDetailsProperty
ingressAddress,
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
"Name" (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)
name]))
instance Property "AgentStatus" AwsGroundStationAgentEndpointProperty where
type PropertyType "AgentStatus" AwsGroundStationAgentEndpointProperty = Value Prelude.Text
set :: PropertyType "AgentStatus" AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty
set PropertyType "AgentStatus" AwsGroundStationAgentEndpointProperty
newValue AwsGroundStationAgentEndpointProperty {Maybe (Value Text)
Maybe RangedConnectionDetailsProperty
Maybe ConnectionDetailsProperty
()
haddock_workaround_ :: AwsGroundStationAgentEndpointProperty -> ()
agentStatus :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
auditResults :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
egressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe ConnectionDetailsProperty
ingressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe RangedConnectionDetailsProperty
name :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
..}
= AwsGroundStationAgentEndpointProperty
{agentStatus :: Maybe (Value Text)
agentStatus = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AgentStatus" AwsGroundStationAgentEndpointProperty
Value Text
newValue, Maybe (Value Text)
Maybe RangedConnectionDetailsProperty
Maybe ConnectionDetailsProperty
()
haddock_workaround_ :: ()
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
haddock_workaround_ :: ()
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
..}
instance Property "AuditResults" AwsGroundStationAgentEndpointProperty where
type PropertyType "AuditResults" AwsGroundStationAgentEndpointProperty = Value Prelude.Text
set :: PropertyType "AuditResults" AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty
set PropertyType "AuditResults" AwsGroundStationAgentEndpointProperty
newValue AwsGroundStationAgentEndpointProperty {Maybe (Value Text)
Maybe RangedConnectionDetailsProperty
Maybe ConnectionDetailsProperty
()
haddock_workaround_ :: AwsGroundStationAgentEndpointProperty -> ()
agentStatus :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
auditResults :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
egressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe ConnectionDetailsProperty
ingressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe RangedConnectionDetailsProperty
name :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
..}
= AwsGroundStationAgentEndpointProperty
{auditResults :: Maybe (Value Text)
auditResults = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AuditResults" AwsGroundStationAgentEndpointProperty
Value Text
newValue, Maybe (Value Text)
Maybe RangedConnectionDetailsProperty
Maybe ConnectionDetailsProperty
()
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
..}
instance Property "EgressAddress" AwsGroundStationAgentEndpointProperty where
type PropertyType "EgressAddress" AwsGroundStationAgentEndpointProperty = ConnectionDetailsProperty
set :: PropertyType "EgressAddress" AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty
set PropertyType "EgressAddress" AwsGroundStationAgentEndpointProperty
newValue AwsGroundStationAgentEndpointProperty {Maybe (Value Text)
Maybe RangedConnectionDetailsProperty
Maybe ConnectionDetailsProperty
()
haddock_workaround_ :: AwsGroundStationAgentEndpointProperty -> ()
agentStatus :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
auditResults :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
egressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe ConnectionDetailsProperty
ingressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe RangedConnectionDetailsProperty
name :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
..}
= AwsGroundStationAgentEndpointProperty
{egressAddress :: Maybe ConnectionDetailsProperty
egressAddress = ConnectionDetailsProperty -> Maybe ConnectionDetailsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "EgressAddress" AwsGroundStationAgentEndpointProperty
ConnectionDetailsProperty
newValue, Maybe (Value Text)
Maybe RangedConnectionDetailsProperty
()
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
..}
instance Property "IngressAddress" AwsGroundStationAgentEndpointProperty where
type PropertyType "IngressAddress" AwsGroundStationAgentEndpointProperty = RangedConnectionDetailsProperty
set :: PropertyType "IngressAddress" AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty
set PropertyType "IngressAddress" AwsGroundStationAgentEndpointProperty
newValue AwsGroundStationAgentEndpointProperty {Maybe (Value Text)
Maybe RangedConnectionDetailsProperty
Maybe ConnectionDetailsProperty
()
haddock_workaround_ :: AwsGroundStationAgentEndpointProperty -> ()
agentStatus :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
auditResults :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
egressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe ConnectionDetailsProperty
ingressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe RangedConnectionDetailsProperty
name :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
..}
= AwsGroundStationAgentEndpointProperty
{ingressAddress :: Maybe RangedConnectionDetailsProperty
ingressAddress = RangedConnectionDetailsProperty
-> Maybe RangedConnectionDetailsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IngressAddress" AwsGroundStationAgentEndpointProperty
RangedConnectionDetailsProperty
newValue, Maybe (Value Text)
Maybe ConnectionDetailsProperty
()
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
name :: Maybe (Value Text)
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
name :: Maybe (Value Text)
..}
instance Property "Name" AwsGroundStationAgentEndpointProperty where
type PropertyType "Name" AwsGroundStationAgentEndpointProperty = Value Prelude.Text
set :: PropertyType "Name" AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty
-> AwsGroundStationAgentEndpointProperty
set PropertyType "Name" AwsGroundStationAgentEndpointProperty
newValue AwsGroundStationAgentEndpointProperty {Maybe (Value Text)
Maybe RangedConnectionDetailsProperty
Maybe ConnectionDetailsProperty
()
haddock_workaround_ :: AwsGroundStationAgentEndpointProperty -> ()
agentStatus :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
auditResults :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
egressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe ConnectionDetailsProperty
ingressAddress :: AwsGroundStationAgentEndpointProperty
-> Maybe RangedConnectionDetailsProperty
name :: AwsGroundStationAgentEndpointProperty -> Maybe (Value Text)
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
name :: Maybe (Value Text)
..}
= AwsGroundStationAgentEndpointProperty
{name :: Maybe (Value Text)
name = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Name" AwsGroundStationAgentEndpointProperty
Value Text
newValue, Maybe (Value Text)
Maybe RangedConnectionDetailsProperty
Maybe ConnectionDetailsProperty
()
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
haddock_workaround_ :: ()
agentStatus :: Maybe (Value Text)
auditResults :: Maybe (Value Text)
egressAddress :: Maybe ConnectionDetailsProperty
ingressAddress :: Maybe RangedConnectionDetailsProperty
..}