{-# 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.AppMesh.Types.HttpTimeout
-- 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.AppMesh.Types.HttpTimeout where

import Amazonka.AppMesh.Types.Duration
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

-- | An object that represents types of timeouts.
--
-- /See:/ 'newHttpTimeout' smart constructor.
data HttpTimeout = HttpTimeout'
  { -- | An object that represents an idle timeout. An idle timeout bounds the
    -- amount of time that a connection may be idle. The default value is none.
    HttpTimeout -> Maybe Duration
idle :: Prelude.Maybe Duration,
    -- | An object that represents a per request timeout. The default value is 15
    -- seconds. If you set a higher timeout, then make sure that the higher
    -- value is set for each App Mesh resource in a conversation. For example,
    -- if a virtual node backend uses a virtual router provider to route to
    -- another virtual node, then the timeout should be greater than 15 seconds
    -- for the source and destination virtual node and the route.
    HttpTimeout -> Maybe Duration
perRequest :: Prelude.Maybe Duration
  }
  deriving (HttpTimeout -> HttpTimeout -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: HttpTimeout -> HttpTimeout -> Bool
$c/= :: HttpTimeout -> HttpTimeout -> Bool
== :: HttpTimeout -> HttpTimeout -> Bool
$c== :: HttpTimeout -> HttpTimeout -> Bool
Prelude.Eq, ReadPrec [HttpTimeout]
ReadPrec HttpTimeout
Int -> ReadS HttpTimeout
ReadS [HttpTimeout]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [HttpTimeout]
$creadListPrec :: ReadPrec [HttpTimeout]
readPrec :: ReadPrec HttpTimeout
$creadPrec :: ReadPrec HttpTimeout
readList :: ReadS [HttpTimeout]
$creadList :: ReadS [HttpTimeout]
readsPrec :: Int -> ReadS HttpTimeout
$creadsPrec :: Int -> ReadS HttpTimeout
Prelude.Read, Int -> HttpTimeout -> ShowS
[HttpTimeout] -> ShowS
HttpTimeout -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [HttpTimeout] -> ShowS
$cshowList :: [HttpTimeout] -> ShowS
show :: HttpTimeout -> String
$cshow :: HttpTimeout -> String
showsPrec :: Int -> HttpTimeout -> ShowS
$cshowsPrec :: Int -> HttpTimeout -> ShowS
Prelude.Show, forall x. Rep HttpTimeout x -> HttpTimeout
forall x. HttpTimeout -> Rep HttpTimeout x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep HttpTimeout x -> HttpTimeout
$cfrom :: forall x. HttpTimeout -> Rep HttpTimeout x
Prelude.Generic)

-- |
-- Create a value of 'HttpTimeout' 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:
--
-- 'idle', 'httpTimeout_idle' - An object that represents an idle timeout. An idle timeout bounds the
-- amount of time that a connection may be idle. The default value is none.
--
-- 'perRequest', 'httpTimeout_perRequest' - An object that represents a per request timeout. The default value is 15
-- seconds. If you set a higher timeout, then make sure that the higher
-- value is set for each App Mesh resource in a conversation. For example,
-- if a virtual node backend uses a virtual router provider to route to
-- another virtual node, then the timeout should be greater than 15 seconds
-- for the source and destination virtual node and the route.
newHttpTimeout ::
  HttpTimeout
newHttpTimeout :: HttpTimeout
newHttpTimeout =
  HttpTimeout'
    { $sel:idle:HttpTimeout' :: Maybe Duration
idle = forall a. Maybe a
Prelude.Nothing,
      $sel:perRequest:HttpTimeout' :: Maybe Duration
perRequest = forall a. Maybe a
Prelude.Nothing
    }

-- | An object that represents an idle timeout. An idle timeout bounds the
-- amount of time that a connection may be idle. The default value is none.
httpTimeout_idle :: Lens.Lens' HttpTimeout (Prelude.Maybe Duration)
httpTimeout_idle :: Lens' HttpTimeout (Maybe Duration)
httpTimeout_idle = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HttpTimeout' {Maybe Duration
idle :: Maybe Duration
$sel:idle:HttpTimeout' :: HttpTimeout -> Maybe Duration
idle} -> Maybe Duration
idle) (\s :: HttpTimeout
s@HttpTimeout' {} Maybe Duration
a -> HttpTimeout
s {$sel:idle:HttpTimeout' :: Maybe Duration
idle = Maybe Duration
a} :: HttpTimeout)

-- | An object that represents a per request timeout. The default value is 15
-- seconds. If you set a higher timeout, then make sure that the higher
-- value is set for each App Mesh resource in a conversation. For example,
-- if a virtual node backend uses a virtual router provider to route to
-- another virtual node, then the timeout should be greater than 15 seconds
-- for the source and destination virtual node and the route.
httpTimeout_perRequest :: Lens.Lens' HttpTimeout (Prelude.Maybe Duration)
httpTimeout_perRequest :: Lens' HttpTimeout (Maybe Duration)
httpTimeout_perRequest = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\HttpTimeout' {Maybe Duration
perRequest :: Maybe Duration
$sel:perRequest:HttpTimeout' :: HttpTimeout -> Maybe Duration
perRequest} -> Maybe Duration
perRequest) (\s :: HttpTimeout
s@HttpTimeout' {} Maybe Duration
a -> HttpTimeout
s {$sel:perRequest:HttpTimeout' :: Maybe Duration
perRequest = Maybe Duration
a} :: HttpTimeout)

instance Data.FromJSON HttpTimeout where
  parseJSON :: Value -> Parser HttpTimeout
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"HttpTimeout"
      ( \Object
x ->
          Maybe Duration -> Maybe Duration -> HttpTimeout
HttpTimeout'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"idle")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Data..:? Key
"perRequest")
      )

instance Prelude.Hashable HttpTimeout where
  hashWithSalt :: Int -> HttpTimeout -> Int
hashWithSalt Int
_salt HttpTimeout' {Maybe Duration
perRequest :: Maybe Duration
idle :: Maybe Duration
$sel:perRequest:HttpTimeout' :: HttpTimeout -> Maybe Duration
$sel:idle:HttpTimeout' :: HttpTimeout -> Maybe Duration
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Duration
idle
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Duration
perRequest

instance Prelude.NFData HttpTimeout where
  rnf :: HttpTimeout -> ()
rnf HttpTimeout' {Maybe Duration
perRequest :: Maybe Duration
idle :: Maybe Duration
$sel:perRequest:HttpTimeout' :: HttpTimeout -> Maybe Duration
$sel:idle:HttpTimeout' :: HttpTimeout -> Maybe Duration
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Duration
idle
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Duration
perRequest

instance Data.ToJSON HttpTimeout where
  toJSON :: HttpTimeout -> Value
toJSON HttpTimeout' {Maybe Duration
perRequest :: Maybe Duration
idle :: Maybe Duration
$sel:perRequest:HttpTimeout' :: HttpTimeout -> Maybe Duration
$sel:idle:HttpTimeout' :: HttpTimeout -> Maybe Duration
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"idle" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Duration
idle,
            (Key
"perRequest" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Duration
perRequest
          ]
      )