module Stratosphere.ElasticLoadBalancingV2.Listener.ActionProperty (
        module Exports, ActionProperty(..), mkActionProperty
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.ElasticLoadBalancingV2.Listener.AuthenticateCognitoConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.ElasticLoadBalancingV2.Listener.AuthenticateOidcConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.ElasticLoadBalancingV2.Listener.FixedResponseConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.ElasticLoadBalancingV2.Listener.ForwardConfigProperty as Exports
import {-# SOURCE #-} Stratosphere.ElasticLoadBalancingV2.Listener.RedirectConfigProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data ActionProperty
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-action.html>
    ActionProperty {ActionProperty -> ()
haddock_workaround_ :: (),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-action.html#cfn-elasticloadbalancingv2-listener-action-authenticatecognitoconfig>
                    ActionProperty -> Maybe AuthenticateCognitoConfigProperty
authenticateCognitoConfig :: (Prelude.Maybe AuthenticateCognitoConfigProperty),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-action.html#cfn-elasticloadbalancingv2-listener-action-authenticateoidcconfig>
                    ActionProperty -> Maybe AuthenticateOidcConfigProperty
authenticateOidcConfig :: (Prelude.Maybe AuthenticateOidcConfigProperty),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-action.html#cfn-elasticloadbalancingv2-listener-action-fixedresponseconfig>
                    ActionProperty -> Maybe FixedResponseConfigProperty
fixedResponseConfig :: (Prelude.Maybe FixedResponseConfigProperty),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-action.html#cfn-elasticloadbalancingv2-listener-action-forwardconfig>
                    ActionProperty -> Maybe ForwardConfigProperty
forwardConfig :: (Prelude.Maybe ForwardConfigProperty),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-action.html#cfn-elasticloadbalancingv2-listener-action-order>
                    ActionProperty -> Maybe (Value Integer)
order :: (Prelude.Maybe (Value Prelude.Integer)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-action.html#cfn-elasticloadbalancingv2-listener-action-redirectconfig>
                    ActionProperty -> Maybe RedirectConfigProperty
redirectConfig :: (Prelude.Maybe RedirectConfigProperty),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-action.html#cfn-elasticloadbalancingv2-listener-action-targetgrouparn>
                    ActionProperty -> Maybe (Value Text)
targetGroupArn :: (Prelude.Maybe (Value Prelude.Text)),
                    -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-action.html#cfn-elasticloadbalancingv2-listener-action-type>
                    ActionProperty -> Value Text
type' :: (Value Prelude.Text)}
  deriving stock (ActionProperty -> ActionProperty -> Bool
(ActionProperty -> ActionProperty -> Bool)
-> (ActionProperty -> ActionProperty -> Bool) -> Eq ActionProperty
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: ActionProperty -> ActionProperty -> Bool
== :: ActionProperty -> ActionProperty -> Bool
$c/= :: ActionProperty -> ActionProperty -> Bool
/= :: ActionProperty -> ActionProperty -> Bool
Prelude.Eq, Int -> ActionProperty -> ShowS
[ActionProperty] -> ShowS
ActionProperty -> String
(Int -> ActionProperty -> ShowS)
-> (ActionProperty -> String)
-> ([ActionProperty] -> ShowS)
-> Show ActionProperty
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> ActionProperty -> ShowS
showsPrec :: Int -> ActionProperty -> ShowS
$cshow :: ActionProperty -> String
show :: ActionProperty -> String
$cshowList :: [ActionProperty] -> ShowS
showList :: [ActionProperty] -> ShowS
Prelude.Show)
mkActionProperty :: Value Prelude.Text -> ActionProperty
mkActionProperty :: Value Text -> ActionProperty
mkActionProperty Value Text
type'
  = ActionProperty
      {haddock_workaround_ :: ()
haddock_workaround_ = (), type' :: Value Text
type' = Value Text
type',
       authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateCognitoConfig = Maybe AuthenticateCognitoConfigProperty
forall a. Maybe a
Prelude.Nothing,
       authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
authenticateOidcConfig = Maybe AuthenticateOidcConfigProperty
forall a. Maybe a
Prelude.Nothing,
       fixedResponseConfig :: Maybe FixedResponseConfigProperty
fixedResponseConfig = Maybe FixedResponseConfigProperty
forall a. Maybe a
Prelude.Nothing,
       forwardConfig :: Maybe ForwardConfigProperty
forwardConfig = Maybe ForwardConfigProperty
forall a. Maybe a
Prelude.Nothing, order :: Maybe (Value Integer)
order = Maybe (Value Integer)
forall a. Maybe a
Prelude.Nothing,
       redirectConfig :: Maybe RedirectConfigProperty
redirectConfig = Maybe RedirectConfigProperty
forall a. Maybe a
Prelude.Nothing, targetGroupArn :: Maybe (Value Text)
targetGroupArn = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties ActionProperty where
  toResourceProperties :: ActionProperty -> ResourceProperties
toResourceProperties ActionProperty {Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ActionProperty -> ()
authenticateCognitoConfig :: ActionProperty -> Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: ActionProperty -> Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: ActionProperty -> Maybe FixedResponseConfigProperty
forwardConfig :: ActionProperty -> Maybe ForwardConfigProperty
order :: ActionProperty -> Maybe (Value Integer)
redirectConfig :: ActionProperty -> Maybe RedirectConfigProperty
targetGroupArn :: ActionProperty -> Maybe (Value Text)
type' :: ActionProperty -> Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::ElasticLoadBalancingV2::Listener.Action",
         supportsTags :: Bool
supportsTags = Bool
Prelude.False,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
                           [Key
"Type" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
type']
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> AuthenticateCognitoConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AuthenticateCognitoConfig"
                                 (AuthenticateCognitoConfigProperty -> (Key, Value))
-> Maybe AuthenticateCognitoConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe AuthenticateCognitoConfigProperty
authenticateCognitoConfig,
                               Key -> AuthenticateOidcConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AuthenticateOidcConfig"
                                 (AuthenticateOidcConfigProperty -> (Key, Value))
-> Maybe AuthenticateOidcConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe AuthenticateOidcConfigProperty
authenticateOidcConfig,
                               Key -> FixedResponseConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FixedResponseConfig" (FixedResponseConfigProperty -> (Key, Value))
-> Maybe FixedResponseConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FixedResponseConfigProperty
fixedResponseConfig,
                               Key -> ForwardConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ForwardConfig" (ForwardConfigProperty -> (Key, Value))
-> Maybe ForwardConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ForwardConfigProperty
forwardConfig,
                               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
"Order" (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)
order,
                               Key -> RedirectConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RedirectConfig" (RedirectConfigProperty -> (Key, Value))
-> Maybe RedirectConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RedirectConfigProperty
redirectConfig,
                               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
"TargetGroupArn" (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)
targetGroupArn]))}
instance JSON.ToJSON ActionProperty where
  toJSON :: ActionProperty -> Value
toJSON ActionProperty {Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ActionProperty -> ()
authenticateCognitoConfig :: ActionProperty -> Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: ActionProperty -> Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: ActionProperty -> Maybe FixedResponseConfigProperty
forwardConfig :: ActionProperty -> Maybe ForwardConfigProperty
order :: ActionProperty -> Maybe (Value Integer)
redirectConfig :: ActionProperty -> Maybe RedirectConfigProperty
targetGroupArn :: ActionProperty -> Maybe (Value Text)
type' :: ActionProperty -> Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
    = [(Key, Value)] -> Value
JSON.object
        ([Item [(Key, Value)]] -> [(Key, Value)]
forall l. IsList l => [Item l] -> l
Prelude.fromList
           ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
              [Key
"Type" Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
JSON..= Value Text
type']
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> AuthenticateCognitoConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AuthenticateCognitoConfig"
                    (AuthenticateCognitoConfigProperty -> (Key, Value))
-> Maybe AuthenticateCognitoConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe AuthenticateCognitoConfigProperty
authenticateCognitoConfig,
                  Key -> AuthenticateOidcConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AuthenticateOidcConfig"
                    (AuthenticateOidcConfigProperty -> (Key, Value))
-> Maybe AuthenticateOidcConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe AuthenticateOidcConfigProperty
authenticateOidcConfig,
                  Key -> FixedResponseConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"FixedResponseConfig" (FixedResponseConfigProperty -> (Key, Value))
-> Maybe FixedResponseConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe FixedResponseConfigProperty
fixedResponseConfig,
                  Key -> ForwardConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"ForwardConfig" (ForwardConfigProperty -> (Key, Value))
-> Maybe ForwardConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe ForwardConfigProperty
forwardConfig,
                  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
"Order" (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)
order,
                  Key -> RedirectConfigProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RedirectConfig" (RedirectConfigProperty -> (Key, Value))
-> Maybe RedirectConfigProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RedirectConfigProperty
redirectConfig,
                  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
"TargetGroupArn" (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)
targetGroupArn])))
instance Property "AuthenticateCognitoConfig" ActionProperty where
  type PropertyType "AuthenticateCognitoConfig" ActionProperty = AuthenticateCognitoConfigProperty
  set :: PropertyType "AuthenticateCognitoConfig" ActionProperty
-> ActionProperty -> ActionProperty
set PropertyType "AuthenticateCognitoConfig" ActionProperty
newValue ActionProperty {Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ActionProperty -> ()
authenticateCognitoConfig :: ActionProperty -> Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: ActionProperty -> Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: ActionProperty -> Maybe FixedResponseConfigProperty
forwardConfig :: ActionProperty -> Maybe ForwardConfigProperty
order :: ActionProperty -> Maybe (Value Integer)
redirectConfig :: ActionProperty -> Maybe RedirectConfigProperty
targetGroupArn :: ActionProperty -> Maybe (Value Text)
type' :: ActionProperty -> Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
    = ActionProperty
        {authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateCognitoConfig = AuthenticateCognitoConfigProperty
-> Maybe AuthenticateCognitoConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AuthenticateCognitoConfig" ActionProperty
AuthenticateCognitoConfigProperty
newValue, Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ()
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
haddock_workaround_ :: ()
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
instance Property "AuthenticateOidcConfig" ActionProperty where
  type PropertyType "AuthenticateOidcConfig" ActionProperty = AuthenticateOidcConfigProperty
  set :: PropertyType "AuthenticateOidcConfig" ActionProperty
-> ActionProperty -> ActionProperty
set PropertyType "AuthenticateOidcConfig" ActionProperty
newValue ActionProperty {Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ActionProperty -> ()
authenticateCognitoConfig :: ActionProperty -> Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: ActionProperty -> Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: ActionProperty -> Maybe FixedResponseConfigProperty
forwardConfig :: ActionProperty -> Maybe ForwardConfigProperty
order :: ActionProperty -> Maybe (Value Integer)
redirectConfig :: ActionProperty -> Maybe RedirectConfigProperty
targetGroupArn :: ActionProperty -> Maybe (Value Text)
type' :: ActionProperty -> Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
    = ActionProperty
        {authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
authenticateOidcConfig = AuthenticateOidcConfigProperty
-> Maybe AuthenticateOidcConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AuthenticateOidcConfig" ActionProperty
AuthenticateOidcConfigProperty
newValue, Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
instance Property "FixedResponseConfig" ActionProperty where
  type PropertyType "FixedResponseConfig" ActionProperty = FixedResponseConfigProperty
  set :: PropertyType "FixedResponseConfig" ActionProperty
-> ActionProperty -> ActionProperty
set PropertyType "FixedResponseConfig" ActionProperty
newValue ActionProperty {Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ActionProperty -> ()
authenticateCognitoConfig :: ActionProperty -> Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: ActionProperty -> Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: ActionProperty -> Maybe FixedResponseConfigProperty
forwardConfig :: ActionProperty -> Maybe ForwardConfigProperty
order :: ActionProperty -> Maybe (Value Integer)
redirectConfig :: ActionProperty -> Maybe RedirectConfigProperty
targetGroupArn :: ActionProperty -> Maybe (Value Text)
type' :: ActionProperty -> Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
    = ActionProperty {fixedResponseConfig :: Maybe FixedResponseConfigProperty
fixedResponseConfig = FixedResponseConfigProperty -> Maybe FixedResponseConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "FixedResponseConfig" ActionProperty
FixedResponseConfigProperty
newValue, Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
instance Property "ForwardConfig" ActionProperty where
  type PropertyType "ForwardConfig" ActionProperty = ForwardConfigProperty
  set :: PropertyType "ForwardConfig" ActionProperty
-> ActionProperty -> ActionProperty
set PropertyType "ForwardConfig" ActionProperty
newValue ActionProperty {Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ActionProperty -> ()
authenticateCognitoConfig :: ActionProperty -> Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: ActionProperty -> Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: ActionProperty -> Maybe FixedResponseConfigProperty
forwardConfig :: ActionProperty -> Maybe ForwardConfigProperty
order :: ActionProperty -> Maybe (Value Integer)
redirectConfig :: ActionProperty -> Maybe RedirectConfigProperty
targetGroupArn :: ActionProperty -> Maybe (Value Text)
type' :: ActionProperty -> Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
    = ActionProperty {forwardConfig :: Maybe ForwardConfigProperty
forwardConfig = ForwardConfigProperty -> Maybe ForwardConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ForwardConfig" ActionProperty
ForwardConfigProperty
newValue, Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
()
Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
instance Property "Order" ActionProperty where
  type PropertyType "Order" ActionProperty = Value Prelude.Integer
  set :: PropertyType "Order" ActionProperty
-> ActionProperty -> ActionProperty
set PropertyType "Order" ActionProperty
newValue ActionProperty {Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ActionProperty -> ()
authenticateCognitoConfig :: ActionProperty -> Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: ActionProperty -> Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: ActionProperty -> Maybe FixedResponseConfigProperty
forwardConfig :: ActionProperty -> Maybe ForwardConfigProperty
order :: ActionProperty -> Maybe (Value Integer)
redirectConfig :: ActionProperty -> Maybe RedirectConfigProperty
targetGroupArn :: ActionProperty -> Maybe (Value Text)
type' :: ActionProperty -> Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
    = ActionProperty {order :: Maybe (Value Integer)
order = Value Integer -> Maybe (Value Integer)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Order" ActionProperty
Value Integer
newValue, Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
instance Property "RedirectConfig" ActionProperty where
  type PropertyType "RedirectConfig" ActionProperty = RedirectConfigProperty
  set :: PropertyType "RedirectConfig" ActionProperty
-> ActionProperty -> ActionProperty
set PropertyType "RedirectConfig" ActionProperty
newValue ActionProperty {Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ActionProperty -> ()
authenticateCognitoConfig :: ActionProperty -> Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: ActionProperty -> Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: ActionProperty -> Maybe FixedResponseConfigProperty
forwardConfig :: ActionProperty -> Maybe ForwardConfigProperty
order :: ActionProperty -> Maybe (Value Integer)
redirectConfig :: ActionProperty -> Maybe RedirectConfigProperty
targetGroupArn :: ActionProperty -> Maybe (Value Text)
type' :: ActionProperty -> Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
    = ActionProperty {redirectConfig :: Maybe RedirectConfigProperty
redirectConfig = RedirectConfigProperty -> Maybe RedirectConfigProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "RedirectConfig" ActionProperty
RedirectConfigProperty
newValue, Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
instance Property "TargetGroupArn" ActionProperty where
  type PropertyType "TargetGroupArn" ActionProperty = Value Prelude.Text
  set :: PropertyType "TargetGroupArn" ActionProperty
-> ActionProperty -> ActionProperty
set PropertyType "TargetGroupArn" ActionProperty
newValue ActionProperty {Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ActionProperty -> ()
authenticateCognitoConfig :: ActionProperty -> Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: ActionProperty -> Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: ActionProperty -> Maybe FixedResponseConfigProperty
forwardConfig :: ActionProperty -> Maybe ForwardConfigProperty
order :: ActionProperty -> Maybe (Value Integer)
redirectConfig :: ActionProperty -> Maybe RedirectConfigProperty
targetGroupArn :: ActionProperty -> Maybe (Value Text)
type' :: ActionProperty -> Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
    = ActionProperty {targetGroupArn :: Maybe (Value Text)
targetGroupArn = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "TargetGroupArn" ActionProperty
Value Text
newValue, Maybe (Value Integer)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
type' :: Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
type' :: Value Text
..}
instance Property "Type" ActionProperty where
  type PropertyType "Type" ActionProperty = Value Prelude.Text
  set :: PropertyType "Type" ActionProperty
-> ActionProperty -> ActionProperty
set PropertyType "Type" ActionProperty
newValue ActionProperty {Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
Value Text
haddock_workaround_ :: ActionProperty -> ()
authenticateCognitoConfig :: ActionProperty -> Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: ActionProperty -> Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: ActionProperty -> Maybe FixedResponseConfigProperty
forwardConfig :: ActionProperty -> Maybe ForwardConfigProperty
order :: ActionProperty -> Maybe (Value Integer)
redirectConfig :: ActionProperty -> Maybe RedirectConfigProperty
targetGroupArn :: ActionProperty -> Maybe (Value Text)
type' :: ActionProperty -> Value Text
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
type' :: Value Text
..}
    = ActionProperty {type' :: Value Text
type' = PropertyType "Type" ActionProperty
Value Text
newValue, Maybe (Value Integer)
Maybe (Value Text)
Maybe AuthenticateCognitoConfigProperty
Maybe AuthenticateOidcConfigProperty
Maybe FixedResponseConfigProperty
Maybe RedirectConfigProperty
Maybe ForwardConfigProperty
()
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
haddock_workaround_ :: ()
authenticateCognitoConfig :: Maybe AuthenticateCognitoConfigProperty
authenticateOidcConfig :: Maybe AuthenticateOidcConfigProperty
fixedResponseConfig :: Maybe FixedResponseConfigProperty
forwardConfig :: Maybe ForwardConfigProperty
order :: Maybe (Value Integer)
redirectConfig :: Maybe RedirectConfigProperty
targetGroupArn :: Maybe (Value Text)
..}