{-# 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.Firehose.Types.AmazonopensearchserviceRetryOptions
-- 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.Firehose.Types.AmazonopensearchserviceRetryOptions 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

-- | Configures retry behavior in case Kinesis Data Firehose is unable to
-- deliver documents to Amazon OpenSearch Service.
--
-- /See:/ 'newAmazonopensearchserviceRetryOptions' smart constructor.
data AmazonopensearchserviceRetryOptions = AmazonopensearchserviceRetryOptions'
  { -- | After an initial failure to deliver to Amazon OpenSearch Service, the
    -- total amount of time during which Kinesis Data Firehose retries delivery
    -- (including the first attempt). After this time has elapsed, the failed
    -- documents are written to Amazon S3. Default value is 300 seconds (5
    -- minutes). A value of 0 (zero) results in no retries.
    AmazonopensearchserviceRetryOptions -> Maybe Natural
durationInSeconds :: Prelude.Maybe Prelude.Natural
  }
  deriving (AmazonopensearchserviceRetryOptions
-> AmazonopensearchserviceRetryOptions -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AmazonopensearchserviceRetryOptions
-> AmazonopensearchserviceRetryOptions -> Bool
$c/= :: AmazonopensearchserviceRetryOptions
-> AmazonopensearchserviceRetryOptions -> Bool
== :: AmazonopensearchserviceRetryOptions
-> AmazonopensearchserviceRetryOptions -> Bool
$c== :: AmazonopensearchserviceRetryOptions
-> AmazonopensearchserviceRetryOptions -> Bool
Prelude.Eq, ReadPrec [AmazonopensearchserviceRetryOptions]
ReadPrec AmazonopensearchserviceRetryOptions
Int -> ReadS AmazonopensearchserviceRetryOptions
ReadS [AmazonopensearchserviceRetryOptions]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AmazonopensearchserviceRetryOptions]
$creadListPrec :: ReadPrec [AmazonopensearchserviceRetryOptions]
readPrec :: ReadPrec AmazonopensearchserviceRetryOptions
$creadPrec :: ReadPrec AmazonopensearchserviceRetryOptions
readList :: ReadS [AmazonopensearchserviceRetryOptions]
$creadList :: ReadS [AmazonopensearchserviceRetryOptions]
readsPrec :: Int -> ReadS AmazonopensearchserviceRetryOptions
$creadsPrec :: Int -> ReadS AmazonopensearchserviceRetryOptions
Prelude.Read, Int -> AmazonopensearchserviceRetryOptions -> ShowS
[AmazonopensearchserviceRetryOptions] -> ShowS
AmazonopensearchserviceRetryOptions -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AmazonopensearchserviceRetryOptions] -> ShowS
$cshowList :: [AmazonopensearchserviceRetryOptions] -> ShowS
show :: AmazonopensearchserviceRetryOptions -> String
$cshow :: AmazonopensearchserviceRetryOptions -> String
showsPrec :: Int -> AmazonopensearchserviceRetryOptions -> ShowS
$cshowsPrec :: Int -> AmazonopensearchserviceRetryOptions -> ShowS
Prelude.Show, forall x.
Rep AmazonopensearchserviceRetryOptions x
-> AmazonopensearchserviceRetryOptions
forall x.
AmazonopensearchserviceRetryOptions
-> Rep AmazonopensearchserviceRetryOptions x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep AmazonopensearchserviceRetryOptions x
-> AmazonopensearchserviceRetryOptions
$cfrom :: forall x.
AmazonopensearchserviceRetryOptions
-> Rep AmazonopensearchserviceRetryOptions x
Prelude.Generic)

-- |
-- Create a value of 'AmazonopensearchserviceRetryOptions' 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:
--
-- 'durationInSeconds', 'amazonopensearchserviceRetryOptions_durationInSeconds' - After an initial failure to deliver to Amazon OpenSearch Service, the
-- total amount of time during which Kinesis Data Firehose retries delivery
-- (including the first attempt). After this time has elapsed, the failed
-- documents are written to Amazon S3. Default value is 300 seconds (5
-- minutes). A value of 0 (zero) results in no retries.
newAmazonopensearchserviceRetryOptions ::
  AmazonopensearchserviceRetryOptions
newAmazonopensearchserviceRetryOptions :: AmazonopensearchserviceRetryOptions
newAmazonopensearchserviceRetryOptions =
  AmazonopensearchserviceRetryOptions'
    { $sel:durationInSeconds:AmazonopensearchserviceRetryOptions' :: Maybe Natural
durationInSeconds =
        forall a. Maybe a
Prelude.Nothing
    }

-- | After an initial failure to deliver to Amazon OpenSearch Service, the
-- total amount of time during which Kinesis Data Firehose retries delivery
-- (including the first attempt). After this time has elapsed, the failed
-- documents are written to Amazon S3. Default value is 300 seconds (5
-- minutes). A value of 0 (zero) results in no retries.
amazonopensearchserviceRetryOptions_durationInSeconds :: Lens.Lens' AmazonopensearchserviceRetryOptions (Prelude.Maybe Prelude.Natural)
amazonopensearchserviceRetryOptions_durationInSeconds :: Lens' AmazonopensearchserviceRetryOptions (Maybe Natural)
amazonopensearchserviceRetryOptions_durationInSeconds = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\AmazonopensearchserviceRetryOptions' {Maybe Natural
durationInSeconds :: Maybe Natural
$sel:durationInSeconds:AmazonopensearchserviceRetryOptions' :: AmazonopensearchserviceRetryOptions -> Maybe Natural
durationInSeconds} -> Maybe Natural
durationInSeconds) (\s :: AmazonopensearchserviceRetryOptions
s@AmazonopensearchserviceRetryOptions' {} Maybe Natural
a -> AmazonopensearchserviceRetryOptions
s {$sel:durationInSeconds:AmazonopensearchserviceRetryOptions' :: Maybe Natural
durationInSeconds = Maybe Natural
a} :: AmazonopensearchserviceRetryOptions)

instance
  Data.FromJSON
    AmazonopensearchserviceRetryOptions
  where
  parseJSON :: Value -> Parser AmazonopensearchserviceRetryOptions
parseJSON =
    forall a. String -> (Object -> Parser a) -> Value -> Parser a
Data.withObject
      String
"AmazonopensearchserviceRetryOptions"
      ( \Object
x ->
          Maybe Natural -> AmazonopensearchserviceRetryOptions
AmazonopensearchserviceRetryOptions'
            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
"DurationInSeconds")
      )

instance
  Prelude.Hashable
    AmazonopensearchserviceRetryOptions
  where
  hashWithSalt :: Int -> AmazonopensearchserviceRetryOptions -> Int
hashWithSalt
    Int
_salt
    AmazonopensearchserviceRetryOptions' {Maybe Natural
durationInSeconds :: Maybe Natural
$sel:durationInSeconds:AmazonopensearchserviceRetryOptions' :: AmazonopensearchserviceRetryOptions -> Maybe Natural
..} =
      Int
_salt forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
durationInSeconds

instance
  Prelude.NFData
    AmazonopensearchserviceRetryOptions
  where
  rnf :: AmazonopensearchserviceRetryOptions -> ()
rnf AmazonopensearchserviceRetryOptions' {Maybe Natural
durationInSeconds :: Maybe Natural
$sel:durationInSeconds:AmazonopensearchserviceRetryOptions' :: AmazonopensearchserviceRetryOptions -> Maybe Natural
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
durationInSeconds

instance
  Data.ToJSON
    AmazonopensearchserviceRetryOptions
  where
  toJSON :: AmazonopensearchserviceRetryOptions -> Value
toJSON AmazonopensearchserviceRetryOptions' {Maybe Natural
durationInSeconds :: Maybe Natural
$sel:durationInSeconds:AmazonopensearchserviceRetryOptions' :: AmazonopensearchserviceRetryOptions -> Maybe Natural
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"DurationInSeconds" 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 Natural
durationInSeconds
          ]
      )