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