module Stratosphere.ElasticLoadBalancingV2.TargetGroup (
        module Exports, TargetGroup(..), mkTargetGroup
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.ElasticLoadBalancingV2.TargetGroup.MatcherProperty as Exports
import {-# SOURCE #-} Stratosphere.ElasticLoadBalancingV2.TargetGroup.TargetDescriptionProperty as Exports
import {-# SOURCE #-} Stratosphere.ElasticLoadBalancingV2.TargetGroup.TargetGroupAttributeProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Tag
import Stratosphere.Value
data TargetGroup
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html>
    TargetGroup {TargetGroup -> ()
haddock_workaround_ :: (),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckenabled>
                 TargetGroup -> Maybe (Value Bool)
healthCheckEnabled :: (Prelude.Maybe (Value Prelude.Bool)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckintervalseconds>
                 TargetGroup -> Maybe (Value Integer)
healthCheckIntervalSeconds :: (Prelude.Maybe (Value Prelude.Integer)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckpath>
                 TargetGroup -> Maybe (Value Text)
healthCheckPath :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckport>
                 TargetGroup -> Maybe (Value Text)
healthCheckPort :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthcheckprotocol>
                 TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthchecktimeoutseconds>
                 TargetGroup -> Maybe (Value Integer)
healthCheckTimeoutSeconds :: (Prelude.Maybe (Value Prelude.Integer)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-healthythresholdcount>
                 TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: (Prelude.Maybe (Value Prelude.Integer)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-ipaddresstype>
                 TargetGroup -> Maybe (Value Text)
ipAddressType :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-matcher>
                 TargetGroup -> Maybe MatcherProperty
matcher :: (Prelude.Maybe MatcherProperty),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-name>
                 TargetGroup -> Maybe (Value Text)
name :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-port>
                 TargetGroup -> Maybe (Value Integer)
port :: (Prelude.Maybe (Value Prelude.Integer)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocol>
                 TargetGroup -> Maybe (Value Text)
protocol :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-protocolversion>
                 TargetGroup -> Maybe (Value Text)
protocolVersion :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-tags>
                 TargetGroup -> Maybe [Tag]
tags :: (Prelude.Maybe [Tag]),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targetgroupattributes>
                 TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetGroupAttributes :: (Prelude.Maybe [TargetGroupAttributeProperty]),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targettype>
                 TargetGroup -> Maybe (Value Text)
targetType :: (Prelude.Maybe (Value Prelude.Text)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-targets>
                 TargetGroup -> Maybe [TargetDescriptionProperty]
targets :: (Prelude.Maybe [TargetDescriptionProperty]),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-unhealthythresholdcount>
                 TargetGroup -> Maybe (Value Integer)
unhealthyThresholdCount :: (Prelude.Maybe (Value Prelude.Integer)),
                 -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticloadbalancingv2-targetgroup.html#cfn-elasticloadbalancingv2-targetgroup-vpcid>
                 TargetGroup -> Maybe (Value Text)
vpcId :: (Prelude.Maybe (Value Prelude.Text))}
  deriving stock (TargetGroup -> TargetGroup -> Bool
(TargetGroup -> TargetGroup -> Bool)
-> (TargetGroup -> TargetGroup -> Bool) -> Eq TargetGroup
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: TargetGroup -> TargetGroup -> Bool
== :: TargetGroup -> TargetGroup -> Bool
$c/= :: TargetGroup -> TargetGroup -> Bool
/= :: TargetGroup -> TargetGroup -> Bool
Prelude.Eq, Int -> TargetGroup -> ShowS
[TargetGroup] -> ShowS
TargetGroup -> String
(Int -> TargetGroup -> ShowS)
-> (TargetGroup -> String)
-> ([TargetGroup] -> ShowS)
-> Show TargetGroup
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> TargetGroup -> ShowS
showsPrec :: Int -> TargetGroup -> ShowS
$cshow :: TargetGroup -> String
show :: TargetGroup -> String
$cshowList :: [TargetGroup] -> ShowS
showList :: [TargetGroup] -> ShowS
Prelude.Show)
mkTargetGroup :: TargetGroup
mkTargetGroup :: TargetGroup
mkTargetGroup
  = TargetGroup
      {haddock_workaround_ :: ()
haddock_workaround_ = (), healthCheckEnabled :: Maybe (Value Bool)
healthCheckEnabled = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
       healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckIntervalSeconds = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       healthCheckPath :: Maybe (Value Text)
healthCheckPath = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       healthCheckPort :: Maybe (Value Text)
healthCheckPort = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       healthCheckProtocol :: Maybe (Value Text)
healthCheckProtocol = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthCheckTimeoutSeconds = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       healthyThresholdCount :: Maybe (Value Integer)
healthyThresholdCount = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       ipAddressType :: Maybe (Value Text)
ipAddressType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, matcher :: Maybe MatcherProperty
matcher = Maybe MatcherProperty
forall a. Maybe a
Prelude.Nothing,
       name :: Maybe (Value Text)
name = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, port :: Maybe (Value Integer)
port = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       protocol :: Maybe (Value Text)
protocol = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, protocolVersion :: Maybe (Value Text)
protocolVersion = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       tags :: Maybe [Tag]
tags = Maybe [Tag]
forall a. Maybe a
Prelude.Nothing, targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetGroupAttributes = Maybe [TargetGroupAttributeProperty]
forall a. Maybe a
Prelude.Nothing,
       targetType :: Maybe (Value Text)
targetType = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, targets :: Maybe [TargetDescriptionProperty]
targets = Maybe [TargetDescriptionProperty]
forall a. Maybe a
Prelude.Nothing,
       unhealthyThresholdCount :: Maybe (Value Integer)
unhealthyThresholdCount = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing, vpcId :: Maybe (Value Text)
vpcId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties TargetGroup where
  toResourceProperties :: TargetGroup -> ResourceProperties
toResourceProperties TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::ElasticLoadBalancingV2::TargetGroup",
         supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                           [Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HealthCheckEnabled" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
healthCheckEnabled,
                            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
"HealthCheckIntervalSeconds"
                              (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)
healthCheckIntervalSeconds,
                            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
"HealthCheckPath" (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)
healthCheckPath,
                            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
"HealthCheckPort" (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)
healthCheckPort,
                            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
"HealthCheckProtocol" (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)
healthCheckProtocol,
                            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
"HealthCheckTimeoutSeconds"
                              (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)
healthCheckTimeoutSeconds,
                            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
"HealthyThresholdCount"
                              (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)
healthyThresholdCount,
                            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
"IpAddressType" (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)
ipAddressType,
                            Key -> MatcherProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Matcher" (MatcherProperty -> (Key, Value))
-> Maybe MatcherProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe MatcherProperty
matcher,
                            Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Name" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
name,
                            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
"Port" (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)
port,
                            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
"Protocol" (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)
protocol,
                            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
"ProtocolVersion" (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)
protocolVersion,
                            Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags,
                            Key -> [TargetGroupAttributeProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"TargetGroupAttributes"
                              ([TargetGroupAttributeProperty] -> (Key, Value))
-> Maybe [TargetGroupAttributeProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [TargetGroupAttributeProperty]
targetGroupAttributes,
                            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
"TargetType" (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)
targetType,
                            Key -> [TargetDescriptionProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Targets" ([TargetDescriptionProperty] -> (Key, Value))
-> Maybe [TargetDescriptionProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [TargetDescriptionProperty]
targets,
                            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
"UnhealthyThresholdCount"
                              (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)
unhealthyThresholdCount,
                            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
"VpcId" (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)
vpcId])}
instance JSON.ToJSON TargetGroup where
  toJSON :: TargetGroup -> Value
toJSON TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
              [Key -> Value Bool -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"HealthCheckEnabled" (Value Bool -> (Key, Value))
-> Maybe (Value Bool) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Bool)
healthCheckEnabled,
               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
"HealthCheckIntervalSeconds"
                 (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)
healthCheckIntervalSeconds,
               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
"HealthCheckPath" (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)
healthCheckPath,
               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
"HealthCheckPort" (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)
healthCheckPort,
               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
"HealthCheckProtocol" (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)
healthCheckProtocol,
               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
"HealthCheckTimeoutSeconds"
                 (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)
healthCheckTimeoutSeconds,
               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
"HealthyThresholdCount"
                 (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)
healthyThresholdCount,
               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
"IpAddressType" (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)
ipAddressType,
               Key -> MatcherProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Matcher" (MatcherProperty -> (Key, Value))
-> Maybe MatcherProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe MatcherProperty
matcher,
               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Name" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
name,
               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
"Port" (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)
port,
               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
"Protocol" (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)
protocol,
               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
"ProtocolVersion" (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)
protocolVersion,
               Key -> [Tag] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Tags" ([Tag] -> (Key, Value)) -> Maybe [Tag] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [Tag]
tags,
               Key -> [TargetGroupAttributeProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"TargetGroupAttributes"
                 ([TargetGroupAttributeProperty] -> (Key, Value))
-> Maybe [TargetGroupAttributeProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [TargetGroupAttributeProperty]
targetGroupAttributes,
               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
"TargetType" (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)
targetType,
               Key -> [TargetDescriptionProperty] -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Targets" ([TargetDescriptionProperty] -> (Key, Value))
-> Maybe [TargetDescriptionProperty] -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe [TargetDescriptionProperty]
targets,
               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
"UnhealthyThresholdCount"
                 (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)
unhealthyThresholdCount,
               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
"VpcId" (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)
vpcId]))
instance Property "HealthCheckEnabled" TargetGroup where
  type PropertyType "HealthCheckEnabled" TargetGroup = Value Prelude.Bool
  set :: PropertyType "HealthCheckEnabled" TargetGroup
-> TargetGroup -> TargetGroup
set PropertyType "HealthCheckEnabled" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {healthCheckEnabled :: Maybe (Value Bool)
healthCheckEnabled = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HealthCheckEnabled" TargetGroup
Value Bool
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "HealthCheckIntervalSeconds" TargetGroup where
  type PropertyType "HealthCheckIntervalSeconds" TargetGroup = Value Prelude.Integer
  set :: PropertyType "HealthCheckIntervalSeconds" TargetGroup
-> TargetGroup -> TargetGroup
set PropertyType "HealthCheckIntervalSeconds" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup
        {healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckIntervalSeconds = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HealthCheckIntervalSeconds" TargetGroup
Value Integer
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "HealthCheckPath" TargetGroup where
  type PropertyType "HealthCheckPath" TargetGroup = Value Prelude.Text
  set :: PropertyType "HealthCheckPath" TargetGroup
-> TargetGroup -> TargetGroup
set PropertyType "HealthCheckPath" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {healthCheckPath :: Maybe (Value Text)
healthCheckPath = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HealthCheckPath" TargetGroup
Value Text
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "HealthCheckPort" TargetGroup where
  type PropertyType "HealthCheckPort" TargetGroup = Value Prelude.Text
  set :: PropertyType "HealthCheckPort" TargetGroup
-> TargetGroup -> TargetGroup
set PropertyType "HealthCheckPort" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {healthCheckPort :: Maybe (Value Text)
healthCheckPort = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HealthCheckPort" TargetGroup
Value Text
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "HealthCheckProtocol" TargetGroup where
  type PropertyType "HealthCheckProtocol" TargetGroup = Value Prelude.Text
  set :: PropertyType "HealthCheckProtocol" TargetGroup
-> TargetGroup -> TargetGroup
set PropertyType "HealthCheckProtocol" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {healthCheckProtocol :: Maybe (Value Text)
healthCheckProtocol = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HealthCheckProtocol" TargetGroup
Value Text
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "HealthCheckTimeoutSeconds" TargetGroup where
  type PropertyType "HealthCheckTimeoutSeconds" TargetGroup = Value Prelude.Integer
  set :: PropertyType "HealthCheckTimeoutSeconds" TargetGroup
-> TargetGroup -> TargetGroup
set PropertyType "HealthCheckTimeoutSeconds" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup
        {healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthCheckTimeoutSeconds = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HealthCheckTimeoutSeconds" TargetGroup
Value Integer
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "HealthyThresholdCount" TargetGroup where
  type PropertyType "HealthyThresholdCount" TargetGroup = Value Prelude.Integer
  set :: PropertyType "HealthyThresholdCount" TargetGroup
-> TargetGroup -> TargetGroup
set PropertyType "HealthyThresholdCount" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {healthyThresholdCount :: Maybe (Value Integer)
healthyThresholdCount = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "HealthyThresholdCount" TargetGroup
Value Integer
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "IpAddressType" TargetGroup where
  type PropertyType "IpAddressType" TargetGroup = Value Prelude.Text
  set :: PropertyType "IpAddressType" TargetGroup
-> TargetGroup -> TargetGroup
set PropertyType "IpAddressType" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {ipAddressType :: Maybe (Value Text)
ipAddressType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "IpAddressType" TargetGroup
Value Text
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "Matcher" TargetGroup where
  type PropertyType "Matcher" TargetGroup = MatcherProperty
  set :: PropertyType "Matcher" TargetGroup -> TargetGroup -> TargetGroup
set PropertyType "Matcher" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {matcher :: Maybe MatcherProperty
matcher = MatcherProperty -> Maybe MatcherProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Matcher" TargetGroup
MatcherProperty
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "Name" TargetGroup where
  type PropertyType "Name" TargetGroup = Value Prelude.Text
  set :: PropertyType "Name" TargetGroup -> TargetGroup -> TargetGroup
set PropertyType "Name" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {name :: Maybe (Value Text)
name = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Name" TargetGroup
Value Text
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "Port" TargetGroup where
  type PropertyType "Port" TargetGroup = Value Prelude.Integer
  set :: PropertyType "Port" TargetGroup -> TargetGroup -> TargetGroup
set PropertyType "Port" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {port :: Maybe (Value Integer)
port = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Port" TargetGroup
Value Integer
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "Protocol" TargetGroup where
  type PropertyType "Protocol" TargetGroup = Value Prelude.Text
  set :: PropertyType "Protocol" TargetGroup -> TargetGroup -> TargetGroup
set PropertyType "Protocol" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {protocol :: Maybe (Value Text)
protocol = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Protocol" TargetGroup
Value Text
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "ProtocolVersion" TargetGroup where
  type PropertyType "ProtocolVersion" TargetGroup = Value Prelude.Text
  set :: PropertyType "ProtocolVersion" TargetGroup
-> TargetGroup -> TargetGroup
set PropertyType "ProtocolVersion" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {protocolVersion :: Maybe (Value Text)
protocolVersion = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ProtocolVersion" TargetGroup
Value Text
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "Tags" TargetGroup where
  type PropertyType "Tags" TargetGroup = [Tag]
  set :: PropertyType "Tags" TargetGroup -> TargetGroup -> TargetGroup
set PropertyType "Tags" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {tags :: Maybe [Tag]
tags = [Tag] -> Maybe [Tag]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [Tag]
PropertyType "Tags" TargetGroup
newValue, Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "TargetGroupAttributes" TargetGroup where
  type PropertyType "TargetGroupAttributes" TargetGroup = [TargetGroupAttributeProperty]
  set :: PropertyType "TargetGroupAttributes" TargetGroup
-> TargetGroup -> TargetGroup
set PropertyType "TargetGroupAttributes" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetGroupAttributes = [TargetGroupAttributeProperty]
-> Maybe [TargetGroupAttributeProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [TargetGroupAttributeProperty]
PropertyType "TargetGroupAttributes" TargetGroup
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "TargetType" TargetGroup where
  type PropertyType "TargetType" TargetGroup = Value Prelude.Text
  set :: PropertyType "TargetType" TargetGroup -> TargetGroup -> TargetGroup
set PropertyType "TargetType" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {targetType :: Maybe (Value Text)
targetType = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TargetType" TargetGroup
Value Text
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "Targets" TargetGroup where
  type PropertyType "Targets" TargetGroup = [TargetDescriptionProperty]
  set :: PropertyType "Targets" TargetGroup -> TargetGroup -> TargetGroup
set PropertyType "Targets" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {targets :: Maybe [TargetDescriptionProperty]
targets = [TargetDescriptionProperty] -> Maybe [TargetDescriptionProperty]
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure [TargetDescriptionProperty]
PropertyType "Targets" TargetGroup
newValue, Maybe [Tag]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
instance Property "UnhealthyThresholdCount" TargetGroup where
  type PropertyType "UnhealthyThresholdCount" TargetGroup = Value Prelude.Integer
  set :: PropertyType "UnhealthyThresholdCount" TargetGroup
-> TargetGroup -> TargetGroup
set PropertyType "UnhealthyThresholdCount" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {unhealthyThresholdCount :: Maybe (Value Integer)
unhealthyThresholdCount = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "UnhealthyThresholdCount" TargetGroup
Value Integer
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
vpcId :: Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
vpcId :: Maybe (Value Text)
..}
instance Property "VpcId" TargetGroup where
  type PropertyType "VpcId" TargetGroup = Value Prelude.Text
  set :: PropertyType "VpcId" TargetGroup -> TargetGroup -> TargetGroup
set PropertyType "VpcId" TargetGroup
newValue TargetGroup {Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: TargetGroup -> ()
healthCheckEnabled :: TargetGroup -> Maybe (Value Bool)
healthCheckIntervalSeconds :: TargetGroup -> Maybe (Value Integer)
healthCheckPath :: TargetGroup -> Maybe (Value Text)
healthCheckPort :: TargetGroup -> Maybe (Value Text)
healthCheckProtocol :: TargetGroup -> Maybe (Value Text)
healthCheckTimeoutSeconds :: TargetGroup -> Maybe (Value Integer)
healthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
ipAddressType :: TargetGroup -> Maybe (Value Text)
matcher :: TargetGroup -> Maybe MatcherProperty
name :: TargetGroup -> Maybe (Value Text)
port :: TargetGroup -> Maybe (Value Integer)
protocol :: TargetGroup -> Maybe (Value Text)
protocolVersion :: TargetGroup -> Maybe (Value Text)
tags :: TargetGroup -> Maybe [Tag]
targetGroupAttributes :: TargetGroup -> Maybe [TargetGroupAttributeProperty]
targetType :: TargetGroup -> Maybe (Value Text)
targets :: TargetGroup -> Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: TargetGroup -> Maybe (Value Integer)
vpcId :: TargetGroup -> Maybe (Value Text)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
vpcId :: Maybe (Value Text)
..}
    = TargetGroup {vpcId :: Maybe (Value Text)
vpcId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "VpcId" TargetGroup
Value Text
newValue, Maybe [Tag]
Maybe [TargetDescriptionProperty]
Maybe [TargetGroupAttributeProperty]
Maybe (Value Bool)
Maybe (Value Integer)
Maybe (Value Text)
Maybe MatcherProperty
()
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
haddock_workaround_ :: ()
healthCheckEnabled :: Maybe (Value Bool)
healthCheckIntervalSeconds :: Maybe (Value Integer)
healthCheckPath :: Maybe (Value Text)
healthCheckPort :: Maybe (Value Text)
healthCheckProtocol :: Maybe (Value Text)
healthCheckTimeoutSeconds :: Maybe (Value Integer)
healthyThresholdCount :: Maybe (Value Integer)
ipAddressType :: Maybe (Value Text)
matcher :: Maybe MatcherProperty
name :: Maybe (Value Text)
port :: Maybe (Value Integer)
protocol :: Maybe (Value Text)
protocolVersion :: Maybe (Value Text)
tags :: Maybe [Tag]
targetGroupAttributes :: Maybe [TargetGroupAttributeProperty]
targetType :: Maybe (Value Text)
targets :: Maybe [TargetDescriptionProperty]
unhealthyThresholdCount :: Maybe (Value Integer)
..}