amazonka-securityhub-2.0: gen/Amazonka/SecurityHub/Types/AwsApiGatewayCanarySettings.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
-- Derived from AWS service descriptions, licensed under Apache 2.0.
-- |
-- Module : Amazonka.SecurityHub.Types.AwsApiGatewayCanarySettings
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.SecurityHub.Types.AwsApiGatewayCanarySettings where
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
-- | Contains information about settings for canary deployment in the stage.
--
-- /See:/ 'newAwsApiGatewayCanarySettings' smart constructor.
data AwsApiGatewayCanarySettings = AwsApiGatewayCanarySettings'
{ -- | The deployment identifier for the canary deployment.
deploymentId :: Prelude.Maybe Prelude.Text,
-- | The percentage of traffic that is diverted to a canary deployment.
percentTraffic :: Prelude.Maybe Prelude.Double,
-- | Stage variables that are overridden in the canary release deployment.
-- The variables include new stage variables that are introduced in the
-- canary.
--
-- Each variable is represented as a string-to-string map between the stage
-- variable name and the variable value.
stageVariableOverrides :: Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text),
-- | Indicates whether the canary deployment uses the stage cache.
useStageCache :: Prelude.Maybe Prelude.Bool
}
deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AwsApiGatewayCanarySettings' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'deploymentId', 'awsApiGatewayCanarySettings_deploymentId' - The deployment identifier for the canary deployment.
--
-- 'percentTraffic', 'awsApiGatewayCanarySettings_percentTraffic' - The percentage of traffic that is diverted to a canary deployment.
--
-- 'stageVariableOverrides', 'awsApiGatewayCanarySettings_stageVariableOverrides' - Stage variables that are overridden in the canary release deployment.
-- The variables include new stage variables that are introduced in the
-- canary.
--
-- Each variable is represented as a string-to-string map between the stage
-- variable name and the variable value.
--
-- 'useStageCache', 'awsApiGatewayCanarySettings_useStageCache' - Indicates whether the canary deployment uses the stage cache.
newAwsApiGatewayCanarySettings ::
AwsApiGatewayCanarySettings
newAwsApiGatewayCanarySettings =
AwsApiGatewayCanarySettings'
{ deploymentId =
Prelude.Nothing,
percentTraffic = Prelude.Nothing,
stageVariableOverrides = Prelude.Nothing,
useStageCache = Prelude.Nothing
}
-- | The deployment identifier for the canary deployment.
awsApiGatewayCanarySettings_deploymentId :: Lens.Lens' AwsApiGatewayCanarySettings (Prelude.Maybe Prelude.Text)
awsApiGatewayCanarySettings_deploymentId = Lens.lens (\AwsApiGatewayCanarySettings' {deploymentId} -> deploymentId) (\s@AwsApiGatewayCanarySettings' {} a -> s {deploymentId = a} :: AwsApiGatewayCanarySettings)
-- | The percentage of traffic that is diverted to a canary deployment.
awsApiGatewayCanarySettings_percentTraffic :: Lens.Lens' AwsApiGatewayCanarySettings (Prelude.Maybe Prelude.Double)
awsApiGatewayCanarySettings_percentTraffic = Lens.lens (\AwsApiGatewayCanarySettings' {percentTraffic} -> percentTraffic) (\s@AwsApiGatewayCanarySettings' {} a -> s {percentTraffic = a} :: AwsApiGatewayCanarySettings)
-- | Stage variables that are overridden in the canary release deployment.
-- The variables include new stage variables that are introduced in the
-- canary.
--
-- Each variable is represented as a string-to-string map between the stage
-- variable name and the variable value.
awsApiGatewayCanarySettings_stageVariableOverrides :: Lens.Lens' AwsApiGatewayCanarySettings (Prelude.Maybe (Prelude.HashMap Prelude.Text Prelude.Text))
awsApiGatewayCanarySettings_stageVariableOverrides = Lens.lens (\AwsApiGatewayCanarySettings' {stageVariableOverrides} -> stageVariableOverrides) (\s@AwsApiGatewayCanarySettings' {} a -> s {stageVariableOverrides = a} :: AwsApiGatewayCanarySettings) Prelude.. Lens.mapping Lens.coerced
-- | Indicates whether the canary deployment uses the stage cache.
awsApiGatewayCanarySettings_useStageCache :: Lens.Lens' AwsApiGatewayCanarySettings (Prelude.Maybe Prelude.Bool)
awsApiGatewayCanarySettings_useStageCache = Lens.lens (\AwsApiGatewayCanarySettings' {useStageCache} -> useStageCache) (\s@AwsApiGatewayCanarySettings' {} a -> s {useStageCache = a} :: AwsApiGatewayCanarySettings)
instance Data.FromJSON AwsApiGatewayCanarySettings where
parseJSON =
Data.withObject
"AwsApiGatewayCanarySettings"
( \x ->
AwsApiGatewayCanarySettings'
Prelude.<$> (x Data..:? "DeploymentId")
Prelude.<*> (x Data..:? "PercentTraffic")
Prelude.<*> ( x
Data..:? "StageVariableOverrides"
Data..!= Prelude.mempty
)
Prelude.<*> (x Data..:? "UseStageCache")
)
instance Prelude.Hashable AwsApiGatewayCanarySettings where
hashWithSalt _salt AwsApiGatewayCanarySettings' {..} =
_salt
`Prelude.hashWithSalt` deploymentId
`Prelude.hashWithSalt` percentTraffic
`Prelude.hashWithSalt` stageVariableOverrides
`Prelude.hashWithSalt` useStageCache
instance Prelude.NFData AwsApiGatewayCanarySettings where
rnf AwsApiGatewayCanarySettings' {..} =
Prelude.rnf deploymentId
`Prelude.seq` Prelude.rnf percentTraffic
`Prelude.seq` Prelude.rnf stageVariableOverrides
`Prelude.seq` Prelude.rnf useStageCache
instance Data.ToJSON AwsApiGatewayCanarySettings where
toJSON AwsApiGatewayCanarySettings' {..} =
Data.object
( Prelude.catMaybes
[ ("DeploymentId" Data..=) Prelude.<$> deploymentId,
("PercentTraffic" Data..=)
Prelude.<$> percentTraffic,
("StageVariableOverrides" Data..=)
Prelude.<$> stageVariableOverrides,
("UseStageCache" Data..=) Prelude.<$> useStageCache
]
)