{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}

-- Derived from AWS service descriptions, licensed under Apache 2.0.

-- |
-- Module      : Amazonka.Connect.Types.AgentStatusState
-- 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.Connect.Types.AgentStatusState
  ( AgentStatusState
      ( ..,
        AgentStatusState_DISABLED,
        AgentStatusState_ENABLED
      ),
  )
where

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

newtype AgentStatusState = AgentStatusState'
  { AgentStatusState -> Text
fromAgentStatusState ::
      Core.Text
  }
  deriving stock
    ( Int -> AgentStatusState -> ShowS
[AgentStatusState] -> ShowS
AgentStatusState -> String
(Int -> AgentStatusState -> ShowS)
-> (AgentStatusState -> String)
-> ([AgentStatusState] -> ShowS)
-> Show AgentStatusState
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [AgentStatusState] -> ShowS
$cshowList :: [AgentStatusState] -> ShowS
show :: AgentStatusState -> String
$cshow :: AgentStatusState -> String
showsPrec :: Int -> AgentStatusState -> ShowS
$cshowsPrec :: Int -> AgentStatusState -> ShowS
Prelude.Show,
      ReadPrec [AgentStatusState]
ReadPrec AgentStatusState
Int -> ReadS AgentStatusState
ReadS [AgentStatusState]
(Int -> ReadS AgentStatusState)
-> ReadS [AgentStatusState]
-> ReadPrec AgentStatusState
-> ReadPrec [AgentStatusState]
-> Read AgentStatusState
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [AgentStatusState]
$creadListPrec :: ReadPrec [AgentStatusState]
readPrec :: ReadPrec AgentStatusState
$creadPrec :: ReadPrec AgentStatusState
readList :: ReadS [AgentStatusState]
$creadList :: ReadS [AgentStatusState]
readsPrec :: Int -> ReadS AgentStatusState
$creadsPrec :: Int -> ReadS AgentStatusState
Prelude.Read,
      AgentStatusState -> AgentStatusState -> Bool
(AgentStatusState -> AgentStatusState -> Bool)
-> (AgentStatusState -> AgentStatusState -> Bool)
-> Eq AgentStatusState
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: AgentStatusState -> AgentStatusState -> Bool
$c/= :: AgentStatusState -> AgentStatusState -> Bool
== :: AgentStatusState -> AgentStatusState -> Bool
$c== :: AgentStatusState -> AgentStatusState -> Bool
Prelude.Eq,
      Eq AgentStatusState
Eq AgentStatusState
-> (AgentStatusState -> AgentStatusState -> Ordering)
-> (AgentStatusState -> AgentStatusState -> Bool)
-> (AgentStatusState -> AgentStatusState -> Bool)
-> (AgentStatusState -> AgentStatusState -> Bool)
-> (AgentStatusState -> AgentStatusState -> Bool)
-> (AgentStatusState -> AgentStatusState -> AgentStatusState)
-> (AgentStatusState -> AgentStatusState -> AgentStatusState)
-> Ord AgentStatusState
AgentStatusState -> AgentStatusState -> Bool
AgentStatusState -> AgentStatusState -> Ordering
AgentStatusState -> AgentStatusState -> AgentStatusState
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: AgentStatusState -> AgentStatusState -> AgentStatusState
$cmin :: AgentStatusState -> AgentStatusState -> AgentStatusState
max :: AgentStatusState -> AgentStatusState -> AgentStatusState
$cmax :: AgentStatusState -> AgentStatusState -> AgentStatusState
>= :: AgentStatusState -> AgentStatusState -> Bool
$c>= :: AgentStatusState -> AgentStatusState -> Bool
> :: AgentStatusState -> AgentStatusState -> Bool
$c> :: AgentStatusState -> AgentStatusState -> Bool
<= :: AgentStatusState -> AgentStatusState -> Bool
$c<= :: AgentStatusState -> AgentStatusState -> Bool
< :: AgentStatusState -> AgentStatusState -> Bool
$c< :: AgentStatusState -> AgentStatusState -> Bool
compare :: AgentStatusState -> AgentStatusState -> Ordering
$ccompare :: AgentStatusState -> AgentStatusState -> Ordering
$cp1Ord :: Eq AgentStatusState
Prelude.Ord,
      (forall x. AgentStatusState -> Rep AgentStatusState x)
-> (forall x. Rep AgentStatusState x -> AgentStatusState)
-> Generic AgentStatusState
forall x. Rep AgentStatusState x -> AgentStatusState
forall x. AgentStatusState -> Rep AgentStatusState x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep AgentStatusState x -> AgentStatusState
$cfrom :: forall x. AgentStatusState -> Rep AgentStatusState x
Prelude.Generic
    )
  deriving newtype
    ( Int -> AgentStatusState -> Int
AgentStatusState -> Int
(Int -> AgentStatusState -> Int)
-> (AgentStatusState -> Int) -> Hashable AgentStatusState
forall a. (Int -> a -> Int) -> (a -> Int) -> Hashable a
hash :: AgentStatusState -> Int
$chash :: AgentStatusState -> Int
hashWithSalt :: Int -> AgentStatusState -> Int
$chashWithSalt :: Int -> AgentStatusState -> Int
Prelude.Hashable,
      AgentStatusState -> ()
(AgentStatusState -> ()) -> NFData AgentStatusState
forall a. (a -> ()) -> NFData a
rnf :: AgentStatusState -> ()
$crnf :: AgentStatusState -> ()
Prelude.NFData,
      Text -> Either String AgentStatusState
(Text -> Either String AgentStatusState)
-> FromText AgentStatusState
forall a. (Text -> Either String a) -> FromText a
fromText :: Text -> Either String AgentStatusState
$cfromText :: Text -> Either String AgentStatusState
Core.FromText,
      AgentStatusState -> Text
(AgentStatusState -> Text) -> ToText AgentStatusState
forall a. (a -> Text) -> ToText a
toText :: AgentStatusState -> Text
$ctoText :: AgentStatusState -> Text
Core.ToText,
      AgentStatusState -> ByteString
(AgentStatusState -> ByteString) -> ToByteString AgentStatusState
forall a. (a -> ByteString) -> ToByteString a
toBS :: AgentStatusState -> ByteString
$ctoBS :: AgentStatusState -> ByteString
Core.ToByteString,
      AgentStatusState -> ByteStringBuilder
(AgentStatusState -> ByteStringBuilder) -> ToLog AgentStatusState
forall a. (a -> ByteStringBuilder) -> ToLog a
build :: AgentStatusState -> ByteStringBuilder
$cbuild :: AgentStatusState -> ByteStringBuilder
Core.ToLog,
      HeaderName -> AgentStatusState -> [Header]
(HeaderName -> AgentStatusState -> [Header])
-> ToHeader AgentStatusState
forall a. (HeaderName -> a -> [Header]) -> ToHeader a
toHeader :: HeaderName -> AgentStatusState -> [Header]
$ctoHeader :: HeaderName -> AgentStatusState -> [Header]
Core.ToHeader,
      AgentStatusState -> QueryString
(AgentStatusState -> QueryString) -> ToQuery AgentStatusState
forall a. (a -> QueryString) -> ToQuery a
toQuery :: AgentStatusState -> QueryString
$ctoQuery :: AgentStatusState -> QueryString
Core.ToQuery,
      Value -> Parser [AgentStatusState]
Value -> Parser AgentStatusState
(Value -> Parser AgentStatusState)
-> (Value -> Parser [AgentStatusState])
-> FromJSON AgentStatusState
forall a.
(Value -> Parser a) -> (Value -> Parser [a]) -> FromJSON a
parseJSONList :: Value -> Parser [AgentStatusState]
$cparseJSONList :: Value -> Parser [AgentStatusState]
parseJSON :: Value -> Parser AgentStatusState
$cparseJSON :: Value -> Parser AgentStatusState
Core.FromJSON,
      FromJSONKeyFunction [AgentStatusState]
FromJSONKeyFunction AgentStatusState
FromJSONKeyFunction AgentStatusState
-> FromJSONKeyFunction [AgentStatusState]
-> FromJSONKey AgentStatusState
forall a.
FromJSONKeyFunction a -> FromJSONKeyFunction [a] -> FromJSONKey a
fromJSONKeyList :: FromJSONKeyFunction [AgentStatusState]
$cfromJSONKeyList :: FromJSONKeyFunction [AgentStatusState]
fromJSONKey :: FromJSONKeyFunction AgentStatusState
$cfromJSONKey :: FromJSONKeyFunction AgentStatusState
Core.FromJSONKey,
      [AgentStatusState] -> Encoding
[AgentStatusState] -> Value
AgentStatusState -> Encoding
AgentStatusState -> Value
(AgentStatusState -> Value)
-> (AgentStatusState -> Encoding)
-> ([AgentStatusState] -> Value)
-> ([AgentStatusState] -> Encoding)
-> ToJSON AgentStatusState
forall a.
(a -> Value)
-> (a -> Encoding)
-> ([a] -> Value)
-> ([a] -> Encoding)
-> ToJSON a
toEncodingList :: [AgentStatusState] -> Encoding
$ctoEncodingList :: [AgentStatusState] -> Encoding
toJSONList :: [AgentStatusState] -> Value
$ctoJSONList :: [AgentStatusState] -> Value
toEncoding :: AgentStatusState -> Encoding
$ctoEncoding :: AgentStatusState -> Encoding
toJSON :: AgentStatusState -> Value
$ctoJSON :: AgentStatusState -> Value
Core.ToJSON,
      ToJSONKeyFunction [AgentStatusState]
ToJSONKeyFunction AgentStatusState
ToJSONKeyFunction AgentStatusState
-> ToJSONKeyFunction [AgentStatusState]
-> ToJSONKey AgentStatusState
forall a.
ToJSONKeyFunction a -> ToJSONKeyFunction [a] -> ToJSONKey a
toJSONKeyList :: ToJSONKeyFunction [AgentStatusState]
$ctoJSONKeyList :: ToJSONKeyFunction [AgentStatusState]
toJSONKey :: ToJSONKeyFunction AgentStatusState
$ctoJSONKey :: ToJSONKeyFunction AgentStatusState
Core.ToJSONKey,
      [Node] -> Either String AgentStatusState
([Node] -> Either String AgentStatusState)
-> FromXML AgentStatusState
forall a. ([Node] -> Either String a) -> FromXML a
parseXML :: [Node] -> Either String AgentStatusState
$cparseXML :: [Node] -> Either String AgentStatusState
Core.FromXML,
      AgentStatusState -> XML
(AgentStatusState -> XML) -> ToXML AgentStatusState
forall a. (a -> XML) -> ToXML a
toXML :: AgentStatusState -> XML
$ctoXML :: AgentStatusState -> XML
Core.ToXML
    )

pattern AgentStatusState_DISABLED :: AgentStatusState
pattern $bAgentStatusState_DISABLED :: AgentStatusState
$mAgentStatusState_DISABLED :: forall r. AgentStatusState -> (Void# -> r) -> (Void# -> r) -> r
AgentStatusState_DISABLED = AgentStatusState' "DISABLED"

pattern AgentStatusState_ENABLED :: AgentStatusState
pattern $bAgentStatusState_ENABLED :: AgentStatusState
$mAgentStatusState_ENABLED :: forall r. AgentStatusState -> (Void# -> r) -> (Void# -> r) -> r
AgentStatusState_ENABLED = AgentStatusState' "ENABLED"

{-# COMPLETE
  AgentStatusState_DISABLED,
  AgentStatusState_ENABLED,
  AgentStatusState'
  #-}