module Stratosphere.EC2.VPCPeeringConnection (
        VPCPeeringConnection(..), mkVPCPeeringConnection
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data VPCPeeringConnection
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html>
    VPCPeeringConnection {VPCPeeringConnection -> ()
haddock_workaround_ :: (),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerownerid>
                          VPCPeeringConnection -> Maybe (Value Text)
peerOwnerId :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerregion>
                          VPCPeeringConnection -> Maybe (Value Text)
peerRegion :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peerrolearn>
                          VPCPeeringConnection -> Maybe (Value Text)
peerRoleArn :: (Prelude.Maybe (Value Prelude.Text)),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-peervpcid>
                          VPCPeeringConnection -> Value Text
peerVpcId :: (Value Prelude.Text),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-tags>
                          VPCPeeringConnection -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
                          -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcpeeringconnection.html#cfn-ec2-vpcpeeringconnection-vpcid>
                          VPCPeeringConnection -> Value Text
vpcId :: (Value Prelude.Text)}
  deriving stock (VPCPeeringConnection -> VPCPeeringConnection -> Bool
(VPCPeeringConnection -> VPCPeeringConnection -> Bool)
-> (VPCPeeringConnection -> VPCPeeringConnection -> Bool)
-> Eq VPCPeeringConnection
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: VPCPeeringConnection -> VPCPeeringConnection -> Bool
== :: VPCPeeringConnection -> VPCPeeringConnection -> Bool
$c/= :: VPCPeeringConnection -> VPCPeeringConnection -> Bool
/= :: VPCPeeringConnection -> VPCPeeringConnection -> Bool
Prelude.Eq, Int -> VPCPeeringConnection -> ShowS
[VPCPeeringConnection] -> ShowS
VPCPeeringConnection -> String
(Int -> VPCPeeringConnection -> ShowS)
-> (VPCPeeringConnection -> String)
-> ([VPCPeeringConnection] -> ShowS)
-> Show VPCPeeringConnection
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> VPCPeeringConnection -> ShowS
showsPrec :: Int -> VPCPeeringConnection -> ShowS
$cshow :: VPCPeeringConnection -> String
show :: VPCPeeringConnection -> String
$cshowList :: [VPCPeeringConnection] -> ShowS
showList :: [VPCPeeringConnection] -> ShowS
Prelude.Show)
mkVPCPeeringConnection ::
  Value Prelude.Text -> Value Prelude.Text -> VPCPeeringConnection
mkVPCPeeringConnection :: Value Text -> Value Text -> VPCPeeringConnection
mkVPCPeeringConnection Value Text
peerVpcId Value Text
vpcId
  = VPCPeeringConnection
      {haddock_workaround_ :: ()
haddock_workaround_ = (), peerVpcId :: Value Text
peerVpcId = Value Text
peerVpcId, vpcId :: Value Text
vpcId = Value Text
vpcId,
       peerOwnerId :: Maybe (Value Text)
peerOwnerId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, peerRegion :: Maybe (Value Text)
peerRegion = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       peerRoleArn :: Maybe (Value Text)
peerRoleArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties VPCPeeringConnection where
  toResourceProperties :: VPCPeeringConnection -> ResourceProperties
toResourceProperties VPCPeeringConnection {Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: VPCPeeringConnection -> ()
peerOwnerId :: VPCPeeringConnection -> Maybe (Value Text)
peerRegion :: VPCPeeringConnection -> Maybe (Value Text)
peerRoleArn :: VPCPeeringConnection -> Maybe (Value Text)
peerVpcId :: VPCPeeringConnection -> Value Text
tags :: VPCPeeringConnection -> Maybe [Tag]
vpcId :: VPCPeeringConnection -> Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::EC2::VPCPeeringConnection",
         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
"PeerVpcId" 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
peerVpcId, Key
"VpcId" 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
vpcId]
                           ([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
"PeerOwnerId" (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)
peerOwnerId,
                               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
"PeerRegion" (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)
peerRegion,
                               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
"PeerRoleArn" (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)
peerRoleArn,
                               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 VPCPeeringConnection where
  toJSON :: VPCPeeringConnection -> Value
toJSON VPCPeeringConnection {Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: VPCPeeringConnection -> ()
peerOwnerId :: VPCPeeringConnection -> Maybe (Value Text)
peerRegion :: VPCPeeringConnection -> Maybe (Value Text)
peerRoleArn :: VPCPeeringConnection -> Maybe (Value Text)
peerVpcId :: VPCPeeringConnection -> Value Text
tags :: VPCPeeringConnection -> Maybe [Tag]
vpcId :: VPCPeeringConnection -> Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: 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
"PeerVpcId" 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
peerVpcId, Key
"VpcId" 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
vpcId]
              ([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
"PeerOwnerId" (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)
peerOwnerId,
                  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
"PeerRegion" (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)
peerRegion,
                  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
"PeerRoleArn" (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)
peerRoleArn,
                  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 "PeerOwnerId" VPCPeeringConnection where
  type PropertyType "PeerOwnerId" VPCPeeringConnection = Value Prelude.Text
  set :: PropertyType "PeerOwnerId" VPCPeeringConnection
-> VPCPeeringConnection -> VPCPeeringConnection
set PropertyType "PeerOwnerId" VPCPeeringConnection
newValue VPCPeeringConnection {Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: VPCPeeringConnection -> ()
peerOwnerId :: VPCPeeringConnection -> Maybe (Value Text)
peerRegion :: VPCPeeringConnection -> Maybe (Value Text)
peerRoleArn :: VPCPeeringConnection -> Maybe (Value Text)
peerVpcId :: VPCPeeringConnection -> Value Text
tags :: VPCPeeringConnection -> Maybe [Tag]
vpcId :: VPCPeeringConnection -> Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
..}
    = VPCPeeringConnection {peerOwnerId :: Maybe (Value Text)
peerOwnerId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PeerOwnerId" VPCPeeringConnection
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
haddock_workaround_ :: ()
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
..}
instance Property "PeerRegion" VPCPeeringConnection where
  type PropertyType "PeerRegion" VPCPeeringConnection = Value Prelude.Text
  set :: PropertyType "PeerRegion" VPCPeeringConnection
-> VPCPeeringConnection -> VPCPeeringConnection
set PropertyType "PeerRegion" VPCPeeringConnection
newValue VPCPeeringConnection {Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: VPCPeeringConnection -> ()
peerOwnerId :: VPCPeeringConnection -> Maybe (Value Text)
peerRegion :: VPCPeeringConnection -> Maybe (Value Text)
peerRoleArn :: VPCPeeringConnection -> Maybe (Value Text)
peerVpcId :: VPCPeeringConnection -> Value Text
tags :: VPCPeeringConnection -> Maybe [Tag]
vpcId :: VPCPeeringConnection -> Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
..}
    = VPCPeeringConnection {peerRegion :: Maybe (Value Text)
peerRegion = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PeerRegion" VPCPeeringConnection
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
..}
instance Property "PeerRoleArn" VPCPeeringConnection where
  type PropertyType "PeerRoleArn" VPCPeeringConnection = Value Prelude.Text
  set :: PropertyType "PeerRoleArn" VPCPeeringConnection
-> VPCPeeringConnection -> VPCPeeringConnection
set PropertyType "PeerRoleArn" VPCPeeringConnection
newValue VPCPeeringConnection {Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: VPCPeeringConnection -> ()
peerOwnerId :: VPCPeeringConnection -> Maybe (Value Text)
peerRegion :: VPCPeeringConnection -> Maybe (Value Text)
peerRoleArn :: VPCPeeringConnection -> Maybe (Value Text)
peerVpcId :: VPCPeeringConnection -> Value Text
tags :: VPCPeeringConnection -> Maybe [Tag]
vpcId :: VPCPeeringConnection -> Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
..}
    = VPCPeeringConnection {peerRoleArn :: Maybe (Value Text)
peerRoleArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "PeerRoleArn" VPCPeeringConnection
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
..}
instance Property "PeerVpcId" VPCPeeringConnection where
  type PropertyType "PeerVpcId" VPCPeeringConnection = Value Prelude.Text
  set :: PropertyType "PeerVpcId" VPCPeeringConnection
-> VPCPeeringConnection -> VPCPeeringConnection
set PropertyType "PeerVpcId" VPCPeeringConnection
newValue VPCPeeringConnection {Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: VPCPeeringConnection -> ()
peerOwnerId :: VPCPeeringConnection -> Maybe (Value Text)
peerRegion :: VPCPeeringConnection -> Maybe (Value Text)
peerRoleArn :: VPCPeeringConnection -> Maybe (Value Text)
peerVpcId :: VPCPeeringConnection -> Value Text
tags :: VPCPeeringConnection -> Maybe [Tag]
vpcId :: VPCPeeringConnection -> Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
..}
    = VPCPeeringConnection {peerVpcId :: Value Text
peerVpcId = PropertyType "PeerVpcId" VPCPeeringConnection
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
tags :: Maybe [Tag]
vpcId :: Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
tags :: Maybe [Tag]
vpcId :: Value Text
..}
instance Property "Tags" VPCPeeringConnection where
  type PropertyType "Tags" VPCPeeringConnection = [Tag]
  set :: PropertyType "Tags" VPCPeeringConnection
-> VPCPeeringConnection -> VPCPeeringConnection
set PropertyType "Tags" VPCPeeringConnection
newValue VPCPeeringConnection {Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: VPCPeeringConnection -> ()
peerOwnerId :: VPCPeeringConnection -> Maybe (Value Text)
peerRegion :: VPCPeeringConnection -> Maybe (Value Text)
peerRoleArn :: VPCPeeringConnection -> Maybe (Value Text)
peerVpcId :: VPCPeeringConnection -> Value Text
tags :: VPCPeeringConnection -> Maybe [Tag]
vpcId :: VPCPeeringConnection -> Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
..}
    = VPCPeeringConnection {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" VPCPeeringConnection
newValue, Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
vpcId :: Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
vpcId :: Value Text
..}
instance Property "VpcId" VPCPeeringConnection where
  type PropertyType "VpcId" VPCPeeringConnection = Value Prelude.Text
  set :: PropertyType "VpcId" VPCPeeringConnection
-> VPCPeeringConnection -> VPCPeeringConnection
set PropertyType "VpcId" VPCPeeringConnection
newValue VPCPeeringConnection {Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: VPCPeeringConnection -> ()
peerOwnerId :: VPCPeeringConnection -> Maybe (Value Text)
peerRegion :: VPCPeeringConnection -> Maybe (Value Text)
peerRoleArn :: VPCPeeringConnection -> Maybe (Value Text)
peerVpcId :: VPCPeeringConnection -> Value Text
tags :: VPCPeeringConnection -> Maybe [Tag]
vpcId :: VPCPeeringConnection -> Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
vpcId :: Value Text
..}
    = VPCPeeringConnection {vpcId :: Value Text
vpcId = PropertyType "VpcId" VPCPeeringConnection
Value Text
newValue, Maybe [Tag]
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
haddock_workaround_ :: ()
peerOwnerId :: Maybe (Value Text)
peerRegion :: Maybe (Value Text)
peerRoleArn :: Maybe (Value Text)
peerVpcId :: Value Text
tags :: Maybe [Tag]
..}