module Stratosphere.ApiGatewayV2.Stage (
        module Exports, Stage(..), mkStage
    ) where
import qualified Data.Aeson as JSON
import qualified Stratosphere.Prelude as Prelude
import Stratosphere.Property
import {-# SOURCE #-} Stratosphere.ApiGatewayV2.Stage.AccessLogSettingsProperty as Exports
import {-# SOURCE #-} Stratosphere.ApiGatewayV2.Stage.RouteSettingsProperty as Exports
import Stratosphere.ResourceProperties
import Stratosphere.Value
data Stage
  = -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html>
    Stage {Stage -> ()
haddock_workaround_ :: (),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-accesslogsettings>
           Stage -> Maybe AccessLogSettingsProperty
accessLogSettings :: (Prelude.Maybe AccessLogSettingsProperty),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-accesspolicyid>
           Stage -> Maybe (Value Text)
accessPolicyId :: (Prelude.Maybe (Value Prelude.Text)),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-apiid>
           Stage -> Value Text
apiId :: (Value Prelude.Text),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-autodeploy>
           Stage -> Maybe (Value Bool)
autoDeploy :: (Prelude.Maybe (Value Prelude.Bool)),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-clientcertificateid>
           Stage -> Maybe (Value Text)
clientCertificateId :: (Prelude.Maybe (Value Prelude.Text)),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-defaultroutesettings>
           Stage -> Maybe RouteSettingsProperty
defaultRouteSettings :: (Prelude.Maybe RouteSettingsProperty),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-deploymentid>
           Stage -> Maybe (Value Text)
deploymentId :: (Prelude.Maybe (Value Prelude.Text)),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-description>
           Stage -> Maybe (Value Text)
description :: (Prelude.Maybe (Value Prelude.Text)),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-routesettings>
           Stage -> Maybe Object
routeSettings :: (Prelude.Maybe JSON.Object),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagename>
           Stage -> Value Text
stageName :: (Value Prelude.Text),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-stagevariables>
           Stage -> Maybe Object
stageVariables :: (Prelude.Maybe JSON.Object),
           -- | See: <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html#cfn-apigatewayv2-stage-tags>
           Stage -> Maybe Object
tags :: (Prelude.Maybe JSON.Object)}
  deriving stock (Stage -> Stage -> Bool
(Stage -> Stage -> Bool) -> (Stage -> Stage -> Bool) -> Eq Stage
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Stage -> Stage -> Bool
== :: Stage -> Stage -> Bool
$c/= :: Stage -> Stage -> Bool
/= :: Stage -> Stage -> Bool
Prelude.Eq, Int -> Stage -> ShowS
[Stage] -> ShowS
Stage -> String
(Int -> Stage -> ShowS)
-> (Stage -> String) -> ([Stage] -> ShowS) -> Show Stage
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
$cshowsPrec :: Int -> Stage -> ShowS
showsPrec :: Int -> Stage -> ShowS
$cshow :: Stage -> String
show :: Stage -> String
$cshowList :: [Stage] -> ShowS
showList :: [Stage] -> ShowS
Prelude.Show)
mkStage :: Value Prelude.Text -> Value Prelude.Text -> Stage
mkStage :: Value Text -> Value Text -> Stage
mkStage Value Text
apiId Value Text
stageName
  = Stage
      {haddock_workaround_ :: ()
haddock_workaround_ = (), apiId :: Value Text
apiId = Value Text
apiId, stageName :: Value Text
stageName = Value Text
stageName,
       accessLogSettings :: Maybe AccessLogSettingsProperty
accessLogSettings = Maybe AccessLogSettingsProperty
forall a. Maybe a
Prelude.Nothing,
       accessPolicyId :: Maybe (Value Text)
accessPolicyId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, autoDeploy :: Maybe (Value Bool)
autoDeploy = Maybe (Value Bool)
forall a. Maybe a
Prelude.Nothing,
       clientCertificateId :: Maybe (Value Text)
clientCertificateId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       defaultRouteSettings :: Maybe RouteSettingsProperty
defaultRouteSettings = Maybe RouteSettingsProperty
forall a. Maybe a
Prelude.Nothing,
       deploymentId :: Maybe (Value Text)
deploymentId = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing, description :: Maybe (Value Text)
description = Maybe (Value Text)
forall a. Maybe a
Prelude.Nothing,
       routeSettings :: Maybe Object
routeSettings = Maybe Object
forall a. Maybe a
Prelude.Nothing, stageVariables :: Maybe Object
stageVariables = Maybe Object
forall a. Maybe a
Prelude.Nothing,
       tags :: Maybe Object
tags = Maybe Object
forall a. Maybe a
Prelude.Nothing}
instance ToResourceProperties Stage where
  toResourceProperties :: Stage -> ResourceProperties
toResourceProperties Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
    = ResourceProperties
        {awsType :: Text
awsType = Text
"AWS::ApiGatewayV2::Stage", supportsTags :: Bool
supportsTags = Bool
Prelude.True,
         properties :: Object
properties = [Item Object] -> Object
forall l. IsList l => [Item l] -> l
Prelude.fromList
                        ([(Key, Value)] -> [(Key, Value)] -> [(Key, Value)]
forall a. Semigroup a => a -> a -> a
(Prelude.<>)
                           [Key
"ApiId" 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
apiId, Key
"StageName" 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
stageName]
                           ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                              [Key -> AccessLogSettingsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AccessLogSettings" (AccessLogSettingsProperty -> (Key, Value))
-> Maybe AccessLogSettingsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe AccessLogSettingsProperty
accessLogSettings,
                               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
"AccessPolicyId" (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)
accessPolicyId,
                               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
"AutoDeploy" (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)
autoDeploy,
                               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
"ClientCertificateId" (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)
clientCertificateId,
                               Key -> RouteSettingsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DefaultRouteSettings" (RouteSettingsProperty -> (Key, Value))
-> Maybe RouteSettingsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RouteSettingsProperty
defaultRouteSettings,
                               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
"DeploymentId" (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)
deploymentId,
                               Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
                               Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RouteSettings" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
routeSettings,
                               Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StageVariables" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
stageVariables,
                               Key -> Object -> (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" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
tags]))}
instance JSON.ToJSON Stage where
  toJSON :: Stage -> Value
toJSON Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
    = [(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
"ApiId" 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
apiId, Key
"StageName" 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
stageName]
              ([Maybe (Key, Value)] -> [(Key, Value)]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
                 [Key -> AccessLogSettingsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"AccessLogSettings" (AccessLogSettingsProperty -> (Key, Value))
-> Maybe AccessLogSettingsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe AccessLogSettingsProperty
accessLogSettings,
                  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
"AccessPolicyId" (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)
accessPolicyId,
                  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
"AutoDeploy" (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)
autoDeploy,
                  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
"ClientCertificateId" (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)
clientCertificateId,
                  Key -> RouteSettingsProperty -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"DefaultRouteSettings" (RouteSettingsProperty -> (Key, Value))
-> Maybe RouteSettingsProperty -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe RouteSettingsProperty
defaultRouteSettings,
                  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
"DeploymentId" (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)
deploymentId,
                  Key -> Value Text -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"Description" (Value Text -> (Key, Value))
-> Maybe (Value Text) -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe (Value Text)
description,
                  Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"RouteSettings" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
routeSettings,
                  Key -> Object -> (Key, Value)
forall v. ToJSON v => Key -> v -> (Key, Value)
forall e kv v. (KeyValue e kv, ToJSON v) => Key -> v -> kv
(JSON..=) Key
"StageVariables" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
stageVariables,
                  Key -> Object -> (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" (Object -> (Key, Value)) -> Maybe Object -> Maybe (Key, Value)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Object
tags])))
instance Property "AccessLogSettings" Stage where
  type PropertyType "AccessLogSettings" Stage = AccessLogSettingsProperty
  set :: PropertyType "AccessLogSettings" Stage -> Stage -> Stage
set PropertyType "AccessLogSettings" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
    = Stage {accessLogSettings :: Maybe AccessLogSettingsProperty
accessLogSettings = AccessLogSettingsProperty -> Maybe AccessLogSettingsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AccessLogSettings" Stage
AccessLogSettingsProperty
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
haddock_workaround_ :: ()
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
instance Property "AccessPolicyId" Stage where
  type PropertyType "AccessPolicyId" Stage = Value Prelude.Text
  set :: PropertyType "AccessPolicyId" Stage -> Stage -> Stage
set PropertyType "AccessPolicyId" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
    = Stage {accessPolicyId :: Maybe (Value Text)
accessPolicyId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AccessPolicyId" Stage
Value Text
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
instance Property "ApiId" Stage where
  type PropertyType "ApiId" Stage = Value Prelude.Text
  set :: PropertyType "ApiId" Stage -> Stage -> Stage
set PropertyType "ApiId" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..} = Stage {apiId :: Value Text
apiId = PropertyType "ApiId" Stage
Value Text
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
instance Property "AutoDeploy" Stage where
  type PropertyType "AutoDeploy" Stage = Value Prelude.Bool
  set :: PropertyType "AutoDeploy" Stage -> Stage -> Stage
set PropertyType "AutoDeploy" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
    = Stage {autoDeploy :: Maybe (Value Bool)
autoDeploy = Value Bool -> Maybe (Value Bool)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "AutoDeploy" Stage
Value Bool
newValue, Maybe Object
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
instance Property "ClientCertificateId" Stage where
  type PropertyType "ClientCertificateId" Stage = Value Prelude.Text
  set :: PropertyType "ClientCertificateId" Stage -> Stage -> Stage
set PropertyType "ClientCertificateId" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
    = Stage {clientCertificateId :: Maybe (Value Text)
clientCertificateId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "ClientCertificateId" Stage
Value Text
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
instance Property "DefaultRouteSettings" Stage where
  type PropertyType "DefaultRouteSettings" Stage = RouteSettingsProperty
  set :: PropertyType "DefaultRouteSettings" Stage -> Stage -> Stage
set PropertyType "DefaultRouteSettings" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
    = Stage {defaultRouteSettings :: Maybe RouteSettingsProperty
defaultRouteSettings = RouteSettingsProperty -> Maybe RouteSettingsProperty
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DefaultRouteSettings" Stage
RouteSettingsProperty
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
instance Property "DeploymentId" Stage where
  type PropertyType "DeploymentId" Stage = Value Prelude.Text
  set :: PropertyType "DeploymentId" Stage -> Stage -> Stage
set PropertyType "DeploymentId" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
    = Stage {deploymentId :: Maybe (Value Text)
deploymentId = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "DeploymentId" Stage
Value Text
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
instance Property "Description" Stage where
  type PropertyType "Description" Stage = Value Prelude.Text
  set :: PropertyType "Description" Stage -> Stage -> Stage
set PropertyType "Description" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
    = Stage {description :: Maybe (Value Text)
description = Value Text -> Maybe (Value Text)
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure PropertyType "Description" Stage
Value Text
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
instance Property "RouteSettings" Stage where
  type PropertyType "RouteSettings" Stage = JSON.Object
  set :: PropertyType "RouteSettings" Stage -> Stage -> Stage
set PropertyType "RouteSettings" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
    = Stage {routeSettings :: Maybe Object
routeSettings = Object -> Maybe Object
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Object
PropertyType "RouteSettings" Stage
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
instance Property "StageName" Stage where
  type PropertyType "StageName" Stage = Value Prelude.Text
  set :: PropertyType "StageName" Stage -> Stage -> Stage
set PropertyType "StageName" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..} = Stage {stageName :: Value Text
stageName = PropertyType "StageName" Stage
Value Text
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageVariables :: Maybe Object
tags :: Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageVariables :: Maybe Object
tags :: Maybe Object
..}
instance Property "StageVariables" Stage where
  type PropertyType "StageVariables" Stage = JSON.Object
  set :: PropertyType "StageVariables" Stage -> Stage -> Stage
set PropertyType "StageVariables" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..}
    = Stage {stageVariables :: Maybe Object
stageVariables = Object -> Maybe Object
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Object
PropertyType "StageVariables" Stage
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
tags :: Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
tags :: Maybe Object
..}
instance Property "Tags" Stage where
  type PropertyType "Tags" Stage = JSON.Object
  set :: PropertyType "Tags" Stage -> Stage -> Stage
set PropertyType "Tags" Stage
newValue Stage {Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: Stage -> ()
accessLogSettings :: Stage -> Maybe AccessLogSettingsProperty
accessPolicyId :: Stage -> Maybe (Value Text)
apiId :: Stage -> Value Text
autoDeploy :: Stage -> Maybe (Value Bool)
clientCertificateId :: Stage -> Maybe (Value Text)
defaultRouteSettings :: Stage -> Maybe RouteSettingsProperty
deploymentId :: Stage -> Maybe (Value Text)
description :: Stage -> Maybe (Value Text)
routeSettings :: Stage -> Maybe Object
stageName :: Stage -> Value Text
stageVariables :: Stage -> Maybe Object
tags :: Stage -> Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
tags :: Maybe Object
..} = Stage {tags :: Maybe Object
tags = Object -> Maybe Object
forall a. a -> Maybe a
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure Object
PropertyType "Tags" Stage
newValue, Maybe Object
Maybe (Value Bool)
Maybe (Value Text)
Maybe AccessLogSettingsProperty
Maybe RouteSettingsProperty
()
Value Text
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
haddock_workaround_ :: ()
accessLogSettings :: Maybe AccessLogSettingsProperty
accessPolicyId :: Maybe (Value Text)
apiId :: Value Text
autoDeploy :: Maybe (Value Bool)
clientCertificateId :: Maybe (Value Text)
defaultRouteSettings :: Maybe RouteSettingsProperty
deploymentId :: Maybe (Value Text)
description :: Maybe (Value Text)
routeSettings :: Maybe Object
stageName :: Value Text
stageVariables :: Maybe Object
..}