module Stratosphere.EC2.SecurityGroup.IngressProperty (
        IngressProperty(..), mkIngressProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import Stratosphere.ResourceProperties
import Stratosphere.Value
data IngressProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-ingress.html>
    IngressProperty {IngressProperty -> ()
haddock_workaround_ :: (),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-ingress.html#cfn-ec2-securitygroup-ingress-cidrip>
                     IngressProperty -> Maybe (Value Text)
cidrIp :: (Prelude.Maybe (Value Prelude.Text)),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-ingress.html#cfn-ec2-securitygroup-ingress-cidripv6>
                     IngressProperty -> Maybe (Value Text)
cidrIpv6 :: (Prelude.Maybe (Value Prelude.Text)),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-ingress.html#cfn-ec2-securitygroup-ingress-description>
                     IngressProperty -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-ingress.html#cfn-ec2-securitygroup-ingress-fromport>
                     IngressProperty -> Maybe (Value Integer)
fromPort :: (Prelude.Maybe (Value Prelude.Integer)),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-ingress.html#cfn-ec2-securitygroup-ingress-ipprotocol>
                     IngressProperty -> Value Text
ipProtocol :: (Value Prelude.Text),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-ingress.html#cfn-ec2-securitygroup-ingress-sourceprefixlistid>
                     IngressProperty -> Maybe (Value Text)
sourcePrefixListId :: (Prelude.Maybe (Value Prelude.Text)),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-ingress.html#cfn-ec2-securitygroup-ingress-sourcesecuritygroupid>
                     IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: (Prelude.Maybe (Value Prelude.Text)),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-ingress.html#cfn-ec2-securitygroup-ingress-sourcesecuritygroupname>
                     IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: (Prelude.Maybe (Value Prelude.Text)),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-ingress.html#cfn-ec2-securitygroup-ingress-sourcesecuritygroupownerid>
                     IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: (Prelude.Maybe (Value Prelude.Text)),
                     -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-securitygroup-ingress.html#cfn-ec2-securitygroup-ingress-toport>
                     IngressProperty -> Maybe (Value Integer)
toPort :: (Prelude.Maybe (Value Prelude.Integer))}
  deriving stock (IngressProperty -> IngressProperty -> Bool
(IngressProperty -> IngressProperty -> Bool)
-> (IngressProperty -> IngressProperty -> Bool)
-> Eq IngressProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: IngressProperty -> IngressProperty -> Bool
== :: IngressProperty -> IngressProperty -> Bool
$c/= :: IngressProperty -> IngressProperty -> Bool
/= :: IngressProperty -> IngressProperty -> Bool
Prelude.Eq, Int -> IngressProperty -> ShowS
[IngressProperty] -> ShowS
IngressProperty -> String
(Int -> IngressProperty -> ShowS)
-> (IngressProperty -> String)
-> ([IngressProperty] -> ShowS)
-> Show IngressProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> IngressProperty -> ShowS
showsPrec :: Int -> IngressProperty -> ShowS
$cshow :: IngressProperty -> String
show :: IngressProperty -> String
$cshowList :: [IngressProperty] -> ShowS
showList :: [IngressProperty] -> ShowS
Prelude.Show)
mkIngressProperty :: Value Prelude.Text -> IngressProperty
mkIngressProperty :: Value Text -> IngressProperty
mkIngressProperty Value Text
ipProtocol
  = IngressProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), ipProtocol :: Value Text
ipProtocol = Value Text
ipProtocol,
       cidrIp :: Maybe (Value Text)
cidrIp = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, cidrIpv6 :: Maybe (Value Text)
cidrIpv6 = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, fromPort :: Maybe (Value Integer)
fromPort = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       sourcePrefixListId :: Maybe (Value Text)
sourcePrefixListId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupName = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       sourceSecurityGroupOwnerId :: Maybe (Value Text)
sourceSecurityGroupOwnerId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       toPort :: Maybe (Value Integer)
toPort = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties IngressProperty where
  toResourceProperties :: IngressProperty -> ResourceProperties
toResourceProperties IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::EC2::SecurityGroup.Ingress",
         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
"IpProtocol" 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
ipProtocol]
                           ([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
"CidrIp" (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)
cidrIp,
                               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
"CidrIpv6" (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)
cidrIpv6,
                               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
"Description" (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)
description,
                               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
"FromPort" (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)
fromPort,
                               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
"SourcePrefixListId" (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)
sourcePrefixListId,
                               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
"SourceSecurityGroupId"
                                 (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)
sourceSecurityGroupId,
                               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
"SourceSecurityGroupName"
                                 (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)
sourceSecurityGroupName,
                               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
"SourceSecurityGroupOwnerId"
                                 (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)
sourceSecurityGroupOwnerId,
                               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
"ToPort" (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)
toPort]))}
instance JSON.ToJSON IngressProperty where
  toJSON :: IngressProperty -> Value
toJSON IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = [(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
"IpProtocol" 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
ipProtocol]
              ([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
"CidrIp" (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)
cidrIp,
                  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
"CidrIpv6" (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)
cidrIpv6,
                  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
"Description" (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)
description,
                  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
"FromPort" (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)
fromPort,
                  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
"SourcePrefixListId" (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)
sourcePrefixListId,
                  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
"SourceSecurityGroupId"
                    (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)
sourceSecurityGroupId,
                  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
"SourceSecurityGroupName"
                    (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)
sourceSecurityGroupName,
                  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
"SourceSecurityGroupOwnerId"
                    (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)
sourceSecurityGroupOwnerId,
                  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
"ToPort" (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)
toPort])))
instance Property "CidrIp" IngressProperty where
  type PropertyType "CidrIp" IngressProperty = Value Prelude.Text
  set :: PropertyType "CidrIp" IngressProperty
-> IngressProperty -> IngressProperty
set PropertyType "CidrIp" IngressProperty
newValue IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = IngressProperty {cidrIp :: Maybe (Value Text)
cidrIp = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CidrIp" IngressProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
instance Property "CidrIpv6" IngressProperty where
  type PropertyType "CidrIpv6" IngressProperty = Value Prelude.Text
  set :: PropertyType "CidrIpv6" IngressProperty
-> IngressProperty -> IngressProperty
set PropertyType "CidrIpv6" IngressProperty
newValue IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = IngressProperty {cidrIpv6 :: Maybe (Value Text)
cidrIpv6 = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "CidrIpv6" IngressProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
instance Property "Description" IngressProperty where
  type PropertyType "Description" IngressProperty = Value Prelude.Text
  set :: PropertyType "Description" IngressProperty
-> IngressProperty -> IngressProperty
set PropertyType "Description" IngressProperty
newValue IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = IngressProperty {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" IngressProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
instance Property "FromPort" IngressProperty where
  type PropertyType "FromPort" IngressProperty = Value Prelude.Integer
  set :: PropertyType "FromPort" IngressProperty
-> IngressProperty -> IngressProperty
set PropertyType "FromPort" IngressProperty
newValue IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = IngressProperty {fromPort :: Maybe (Value Integer)
fromPort = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FromPort" IngressProperty
Value Integer
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
instance Property "IpProtocol" IngressProperty where
  type PropertyType "IpProtocol" IngressProperty = Value Prelude.Text
  set :: PropertyType "IpProtocol" IngressProperty
-> IngressProperty -> IngressProperty
set PropertyType "IpProtocol" IngressProperty
newValue IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = IngressProperty {ipProtocol :: Value Text
ipProtocol = PropertyType "IpProtocol" IngressProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
instance Property "SourcePrefixListId" IngressProperty where
  type PropertyType "SourcePrefixListId" IngressProperty = Value Prelude.Text
  set :: PropertyType "SourcePrefixListId" IngressProperty
-> IngressProperty -> IngressProperty
set PropertyType "SourcePrefixListId" IngressProperty
newValue IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = IngressProperty {sourcePrefixListId :: Maybe (Value Text)
sourcePrefixListId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SourcePrefixListId" IngressProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
instance Property "SourceSecurityGroupId" IngressProperty where
  type PropertyType "SourceSecurityGroupId" IngressProperty = Value Prelude.Text
  set :: PropertyType "SourceSecurityGroupId" IngressProperty
-> IngressProperty -> IngressProperty
set PropertyType "SourceSecurityGroupId" IngressProperty
newValue IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = IngressProperty
        {sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SourceSecurityGroupId" IngressProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
instance Property "SourceSecurityGroupName" IngressProperty where
  type PropertyType "SourceSecurityGroupName" IngressProperty = Value Prelude.Text
  set :: PropertyType "SourceSecurityGroupName" IngressProperty
-> IngressProperty -> IngressProperty
set PropertyType "SourceSecurityGroupName" IngressProperty
newValue IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = IngressProperty
        {sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupName = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SourceSecurityGroupName" IngressProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
instance Property "SourceSecurityGroupOwnerId" IngressProperty where
  type PropertyType "SourceSecurityGroupOwnerId" IngressProperty = Value Prelude.Text
  set :: PropertyType "SourceSecurityGroupOwnerId" IngressProperty
-> IngressProperty -> IngressProperty
set PropertyType "SourceSecurityGroupOwnerId" IngressProperty
newValue IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = IngressProperty
        {sourceSecurityGroupOwnerId :: Maybe (Value Text)
sourceSecurityGroupOwnerId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "SourceSecurityGroupOwnerId" IngressProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
instance Property "ToPort" IngressProperty where
  type PropertyType "ToPort" IngressProperty = Value Prelude.Integer
  set :: PropertyType "ToPort" IngressProperty
-> IngressProperty -> IngressProperty
set PropertyType "ToPort" IngressProperty
newValue IngressProperty {Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: IngressProperty -> ()
cidrIp :: IngressProperty -> Maybe (Value Text)
cidrIpv6 :: IngressProperty -> Maybe (Value Text)
description :: IngressProperty -> Maybe (Value Text)
fromPort :: IngressProperty -> Maybe (Value Integer)
ipProtocol :: IngressProperty -> Value Text
sourcePrefixListId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupId :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupName :: IngressProperty -> Maybe (Value Text)
sourceSecurityGroupOwnerId :: IngressProperty -> Maybe (Value Text)
toPort :: IngressProperty -> Maybe (Value Integer)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
toPort :: Maybe (Value Integer)
..}
    = IngressProperty {toPort :: Maybe (Value Integer)
toPort = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ToPort" IngressProperty
Value Integer
newValue, Maybe (Value Integer)
Maybe (Value Text)
()
Value Text
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
haddock_workaround_ :: ()
cidrIp :: Maybe (Value Text)
cidrIpv6 :: Maybe (Value Text)
description :: Maybe (Value Text)
fromPort :: Maybe (Value Integer)
ipProtocol :: Value Text
sourcePrefixListId :: Maybe (Value Text)
sourceSecurityGroupId :: Maybe (Value Text)
sourceSecurityGroupName :: Maybe (Value Text)
sourceSecurityGroupOwnerId :: Maybe (Value Text)
..}