{-# 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.CloudDirectory.Types.BatchUpdateLinkAttributesResponse
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
module Amazonka.CloudDirectory.Types.BatchUpdateLinkAttributesResponse where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude

-- | Represents the output of a UpdateLinkAttributes response operation.
--
-- /See:/ 'newBatchUpdateLinkAttributesResponse' smart constructor.
data BatchUpdateLinkAttributesResponse = BatchUpdateLinkAttributesResponse'
  {
  }
  deriving (BatchUpdateLinkAttributesResponse
-> BatchUpdateLinkAttributesResponse -> Bool
(BatchUpdateLinkAttributesResponse
 -> BatchUpdateLinkAttributesResponse -> Bool)
-> (BatchUpdateLinkAttributesResponse
    -> BatchUpdateLinkAttributesResponse -> Bool)
-> Eq BatchUpdateLinkAttributesResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: BatchUpdateLinkAttributesResponse
-> BatchUpdateLinkAttributesResponse -> Bool
$c/= :: BatchUpdateLinkAttributesResponse
-> BatchUpdateLinkAttributesResponse -> Bool
== :: BatchUpdateLinkAttributesResponse
-> BatchUpdateLinkAttributesResponse -> Bool
$c== :: BatchUpdateLinkAttributesResponse
-> BatchUpdateLinkAttributesResponse -> Bool
Prelude.Eq, ReadPrec [BatchUpdateLinkAttributesResponse]
ReadPrec BatchUpdateLinkAttributesResponse
Int -> ReadS BatchUpdateLinkAttributesResponse
ReadS [BatchUpdateLinkAttributesResponse]
(Int -> ReadS BatchUpdateLinkAttributesResponse)
-> ReadS [BatchUpdateLinkAttributesResponse]
-> ReadPrec BatchUpdateLinkAttributesResponse
-> ReadPrec [BatchUpdateLinkAttributesResponse]
-> Read BatchUpdateLinkAttributesResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [BatchUpdateLinkAttributesResponse]
$creadListPrec :: ReadPrec [BatchUpdateLinkAttributesResponse]
readPrec :: ReadPrec BatchUpdateLinkAttributesResponse
$creadPrec :: ReadPrec BatchUpdateLinkAttributesResponse
readList :: ReadS [BatchUpdateLinkAttributesResponse]
$creadList :: ReadS [BatchUpdateLinkAttributesResponse]
readsPrec :: Int -> ReadS BatchUpdateLinkAttributesResponse
$creadsPrec :: Int -> ReadS BatchUpdateLinkAttributesResponse
Prelude.Read, Int -> BatchUpdateLinkAttributesResponse -> ShowS
[BatchUpdateLinkAttributesResponse] -> ShowS
BatchUpdateLinkAttributesResponse -> String
(Int -> BatchUpdateLinkAttributesResponse -> ShowS)
-> (BatchUpdateLinkAttributesResponse -> String)
-> ([BatchUpdateLinkAttributesResponse] -> ShowS)
-> Show BatchUpdateLinkAttributesResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [BatchUpdateLinkAttributesResponse] -> ShowS
$cshowList :: [BatchUpdateLinkAttributesResponse] -> ShowS
show :: BatchUpdateLinkAttributesResponse -> String
$cshow :: BatchUpdateLinkAttributesResponse -> String
showsPrec :: Int -> BatchUpdateLinkAttributesResponse -> ShowS
$cshowsPrec :: Int -> BatchUpdateLinkAttributesResponse -> ShowS
Prelude.Show, (forall x.
 BatchUpdateLinkAttributesResponse
 -> Rep BatchUpdateLinkAttributesResponse x)
-> (forall x.
    Rep BatchUpdateLinkAttributesResponse x
    -> BatchUpdateLinkAttributesResponse)
-> Generic BatchUpdateLinkAttributesResponse
forall x.
Rep BatchUpdateLinkAttributesResponse x
-> BatchUpdateLinkAttributesResponse
forall x.
BatchUpdateLinkAttributesResponse
-> Rep BatchUpdateLinkAttributesResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep BatchUpdateLinkAttributesResponse x
-> BatchUpdateLinkAttributesResponse
$cfrom :: forall x.
BatchUpdateLinkAttributesResponse
-> Rep BatchUpdateLinkAttributesResponse x
Prelude.Generic)

-- |
-- Create a value of 'BatchUpdateLinkAttributesResponse' 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.
newBatchUpdateLinkAttributesResponse ::
  BatchUpdateLinkAttributesResponse
newBatchUpdateLinkAttributesResponse :: BatchUpdateLinkAttributesResponse
newBatchUpdateLinkAttributesResponse =
  BatchUpdateLinkAttributesResponse
BatchUpdateLinkAttributesResponse'

instance
  Core.FromJSON
    BatchUpdateLinkAttributesResponse
  where
  parseJSON :: Value -> Parser BatchUpdateLinkAttributesResponse
parseJSON =
    String
-> (Object -> Parser BatchUpdateLinkAttributesResponse)
-> Value
-> Parser BatchUpdateLinkAttributesResponse
forall a. String -> (Object -> Parser a) -> Value -> Parser a
Core.withObject
      String
"BatchUpdateLinkAttributesResponse"
      ( \Object
x ->
          BatchUpdateLinkAttributesResponse
-> Parser BatchUpdateLinkAttributesResponse
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure BatchUpdateLinkAttributesResponse
BatchUpdateLinkAttributesResponse'
      )

instance
  Prelude.Hashable
    BatchUpdateLinkAttributesResponse

instance
  Prelude.NFData
    BatchUpdateLinkAttributesResponse