{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE PatternSynonyms #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
module Amazonka.SageMaker.Types.NotebookInstanceSortKey
( NotebookInstanceSortKey
( ..,
NotebookInstanceSortKey_CreationTime,
NotebookInstanceSortKey_Name,
NotebookInstanceSortKey_Status
),
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Prelude as Prelude
newtype NotebookInstanceSortKey = NotebookInstanceSortKey'
{ NotebookInstanceSortKey -> Text
fromNotebookInstanceSortKey ::
Core.Text
}
deriving stock
( Int -> NotebookInstanceSortKey -> ShowS
[NotebookInstanceSortKey] -> ShowS
NotebookInstanceSortKey -> String
(Int -> NotebookInstanceSortKey -> ShowS)
-> (NotebookInstanceSortKey -> String)
-> ([NotebookInstanceSortKey] -> ShowS)
-> Show NotebookInstanceSortKey
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [NotebookInstanceSortKey] -> ShowS
$cshowList :: [NotebookInstanceSortKey] -> ShowS
show :: NotebookInstanceSortKey -> String
$cshow :: NotebookInstanceSortKey -> String
showsPrec :: Int -> NotebookInstanceSortKey -> ShowS
$cshowsPrec :: Int -> NotebookInstanceSortKey -> ShowS
Prelude.Show,
ReadPrec [NotebookInstanceSortKey]
ReadPrec NotebookInstanceSortKey
Int -> ReadS NotebookInstanceSortKey
ReadS [NotebookInstanceSortKey]
(Int -> ReadS NotebookInstanceSortKey)
-> ReadS [NotebookInstanceSortKey]
-> ReadPrec NotebookInstanceSortKey
-> ReadPrec [NotebookInstanceSortKey]
-> Read NotebookInstanceSortKey
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [NotebookInstanceSortKey]
$creadListPrec :: ReadPrec [NotebookInstanceSortKey]
readPrec :: ReadPrec NotebookInstanceSortKey
$creadPrec :: ReadPrec NotebookInstanceSortKey
readList :: ReadS [NotebookInstanceSortKey]
$creadList :: ReadS [NotebookInstanceSortKey]
readsPrec :: Int -> ReadS NotebookInstanceSortKey
$creadsPrec :: Int -> ReadS NotebookInstanceSortKey
Prelude.Read,
NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
(NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool)
-> (NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool)
-> Eq NotebookInstanceSortKey
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
$c/= :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
== :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
$c== :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
Prelude.Eq,
Eq NotebookInstanceSortKey
Eq NotebookInstanceSortKey
-> (NotebookInstanceSortKey -> NotebookInstanceSortKey -> Ordering)
-> (NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool)
-> (NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool)
-> (NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool)
-> (NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool)
-> (NotebookInstanceSortKey
-> NotebookInstanceSortKey -> NotebookInstanceSortKey)
-> (NotebookInstanceSortKey
-> NotebookInstanceSortKey -> NotebookInstanceSortKey)
-> Ord NotebookInstanceSortKey
NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
NotebookInstanceSortKey -> NotebookInstanceSortKey -> Ordering
NotebookInstanceSortKey
-> NotebookInstanceSortKey -> NotebookInstanceSortKey
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 :: NotebookInstanceSortKey
-> NotebookInstanceSortKey -> NotebookInstanceSortKey
$cmin :: NotebookInstanceSortKey
-> NotebookInstanceSortKey -> NotebookInstanceSortKey
max :: NotebookInstanceSortKey
-> NotebookInstanceSortKey -> NotebookInstanceSortKey
$cmax :: NotebookInstanceSortKey
-> NotebookInstanceSortKey -> NotebookInstanceSortKey
>= :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
$c>= :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
> :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
$c> :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
<= :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
$c<= :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
< :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
$c< :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Bool
compare :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Ordering
$ccompare :: NotebookInstanceSortKey -> NotebookInstanceSortKey -> Ordering
$cp1Ord :: Eq NotebookInstanceSortKey
Prelude.Ord,
(forall x.
NotebookInstanceSortKey -> Rep NotebookInstanceSortKey x)
-> (forall x.
Rep NotebookInstanceSortKey x -> NotebookInstanceSortKey)
-> Generic NotebookInstanceSortKey
forall x. Rep NotebookInstanceSortKey x -> NotebookInstanceSortKey
forall x. NotebookInstanceSortKey -> Rep NotebookInstanceSortKey x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep NotebookInstanceSortKey x -> NotebookInstanceSortKey
$cfrom :: forall x. NotebookInstanceSortKey -> Rep NotebookInstanceSortKey x
Prelude.Generic
)
deriving newtype
( Int -> NotebookInstanceSortKey -> Int
NotebookInstanceSortKey -> Int
(Int -> NotebookInstanceSortKey -> Int)
-> (NotebookInstanceSortKey -> Int)
-> Hashable NotebookInstanceSortKey
forall a. (Int -> a -> Int) -> (a -> Int) -> Hashable a
hash :: NotebookInstanceSortKey -> Int
$chash :: NotebookInstanceSortKey -> Int
hashWithSalt :: Int -> NotebookInstanceSortKey -> Int
$chashWithSalt :: Int -> NotebookInstanceSortKey -> Int
Prelude.Hashable,
NotebookInstanceSortKey -> ()
(NotebookInstanceSortKey -> ()) -> NFData NotebookInstanceSortKey
forall a. (a -> ()) -> NFData a
rnf :: NotebookInstanceSortKey -> ()
$crnf :: NotebookInstanceSortKey -> ()
Prelude.NFData,
Text -> Either String NotebookInstanceSortKey
(Text -> Either String NotebookInstanceSortKey)
-> FromText NotebookInstanceSortKey
forall a. (Text -> Either String a) -> FromText a
fromText :: Text -> Either String NotebookInstanceSortKey
$cfromText :: Text -> Either String NotebookInstanceSortKey
Core.FromText,
NotebookInstanceSortKey -> Text
(NotebookInstanceSortKey -> Text) -> ToText NotebookInstanceSortKey
forall a. (a -> Text) -> ToText a
toText :: NotebookInstanceSortKey -> Text
$ctoText :: NotebookInstanceSortKey -> Text
Core.ToText,
NotebookInstanceSortKey -> ByteString
(NotebookInstanceSortKey -> ByteString)
-> ToByteString NotebookInstanceSortKey
forall a. (a -> ByteString) -> ToByteString a
toBS :: NotebookInstanceSortKey -> ByteString
$ctoBS :: NotebookInstanceSortKey -> ByteString
Core.ToByteString,
NotebookInstanceSortKey -> ByteStringBuilder
(NotebookInstanceSortKey -> ByteStringBuilder)
-> ToLog NotebookInstanceSortKey
forall a. (a -> ByteStringBuilder) -> ToLog a
build :: NotebookInstanceSortKey -> ByteStringBuilder
$cbuild :: NotebookInstanceSortKey -> ByteStringBuilder
Core.ToLog,
HeaderName -> NotebookInstanceSortKey -> [Header]
(HeaderName -> NotebookInstanceSortKey -> [Header])
-> ToHeader NotebookInstanceSortKey
forall a. (HeaderName -> a -> [Header]) -> ToHeader a
toHeader :: HeaderName -> NotebookInstanceSortKey -> [Header]
$ctoHeader :: HeaderName -> NotebookInstanceSortKey -> [Header]
Core.ToHeader,
NotebookInstanceSortKey -> QueryString
(NotebookInstanceSortKey -> QueryString)
-> ToQuery NotebookInstanceSortKey
forall a. (a -> QueryString) -> ToQuery a
toQuery :: NotebookInstanceSortKey -> QueryString
$ctoQuery :: NotebookInstanceSortKey -> QueryString
Core.ToQuery,
Value -> Parser [NotebookInstanceSortKey]
Value -> Parser NotebookInstanceSortKey
(Value -> Parser NotebookInstanceSortKey)
-> (Value -> Parser [NotebookInstanceSortKey])
-> FromJSON NotebookInstanceSortKey
forall a.
(Value -> Parser a) -> (Value -> Parser [a]) -> FromJSON a
parseJSONList :: Value -> Parser [NotebookInstanceSortKey]
$cparseJSONList :: Value -> Parser [NotebookInstanceSortKey]
parseJSON :: Value -> Parser NotebookInstanceSortKey
$cparseJSON :: Value -> Parser NotebookInstanceSortKey
Core.FromJSON,
FromJSONKeyFunction [NotebookInstanceSortKey]
FromJSONKeyFunction NotebookInstanceSortKey
FromJSONKeyFunction NotebookInstanceSortKey
-> FromJSONKeyFunction [NotebookInstanceSortKey]
-> FromJSONKey NotebookInstanceSortKey
forall a.
FromJSONKeyFunction a -> FromJSONKeyFunction [a] -> FromJSONKey a
fromJSONKeyList :: FromJSONKeyFunction [NotebookInstanceSortKey]
$cfromJSONKeyList :: FromJSONKeyFunction [NotebookInstanceSortKey]
fromJSONKey :: FromJSONKeyFunction NotebookInstanceSortKey
$cfromJSONKey :: FromJSONKeyFunction NotebookInstanceSortKey
Core.FromJSONKey,
[NotebookInstanceSortKey] -> Encoding
[NotebookInstanceSortKey] -> Value
NotebookInstanceSortKey -> Encoding
NotebookInstanceSortKey -> Value
(NotebookInstanceSortKey -> Value)
-> (NotebookInstanceSortKey -> Encoding)
-> ([NotebookInstanceSortKey] -> Value)
-> ([NotebookInstanceSortKey] -> Encoding)
-> ToJSON NotebookInstanceSortKey
forall a.
(a -> Value)
-> (a -> Encoding)
-> ([a] -> Value)
-> ([a] -> Encoding)
-> ToJSON a
toEncodingList :: [NotebookInstanceSortKey] -> Encoding
$ctoEncodingList :: [NotebookInstanceSortKey] -> Encoding
toJSONList :: [NotebookInstanceSortKey] -> Value
$ctoJSONList :: [NotebookInstanceSortKey] -> Value
toEncoding :: NotebookInstanceSortKey -> Encoding
$ctoEncoding :: NotebookInstanceSortKey -> Encoding
toJSON :: NotebookInstanceSortKey -> Value
$ctoJSON :: NotebookInstanceSortKey -> Value
Core.ToJSON,
ToJSONKeyFunction [NotebookInstanceSortKey]
ToJSONKeyFunction NotebookInstanceSortKey
ToJSONKeyFunction NotebookInstanceSortKey
-> ToJSONKeyFunction [NotebookInstanceSortKey]
-> ToJSONKey NotebookInstanceSortKey
forall a.
ToJSONKeyFunction a -> ToJSONKeyFunction [a] -> ToJSONKey a
toJSONKeyList :: ToJSONKeyFunction [NotebookInstanceSortKey]
$ctoJSONKeyList :: ToJSONKeyFunction [NotebookInstanceSortKey]
toJSONKey :: ToJSONKeyFunction NotebookInstanceSortKey
$ctoJSONKey :: ToJSONKeyFunction NotebookInstanceSortKey
Core.ToJSONKey,
[Node] -> Either String NotebookInstanceSortKey
([Node] -> Either String NotebookInstanceSortKey)
-> FromXML NotebookInstanceSortKey
forall a. ([Node] -> Either String a) -> FromXML a
parseXML :: [Node] -> Either String NotebookInstanceSortKey
$cparseXML :: [Node] -> Either String NotebookInstanceSortKey
Core.FromXML,
NotebookInstanceSortKey -> XML
(NotebookInstanceSortKey -> XML) -> ToXML NotebookInstanceSortKey
forall a. (a -> XML) -> ToXML a
toXML :: NotebookInstanceSortKey -> XML
$ctoXML :: NotebookInstanceSortKey -> XML
Core.ToXML
)
pattern NotebookInstanceSortKey_CreationTime :: NotebookInstanceSortKey
pattern $bNotebookInstanceSortKey_CreationTime :: NotebookInstanceSortKey
$mNotebookInstanceSortKey_CreationTime :: forall r.
NotebookInstanceSortKey -> (Void# -> r) -> (Void# -> r) -> r
NotebookInstanceSortKey_CreationTime = NotebookInstanceSortKey' "CreationTime"
pattern NotebookInstanceSortKey_Name :: NotebookInstanceSortKey
pattern $bNotebookInstanceSortKey_Name :: NotebookInstanceSortKey
$mNotebookInstanceSortKey_Name :: forall r.
NotebookInstanceSortKey -> (Void# -> r) -> (Void# -> r) -> r
NotebookInstanceSortKey_Name = NotebookInstanceSortKey' "Name"
pattern NotebookInstanceSortKey_Status :: NotebookInstanceSortKey
pattern $bNotebookInstanceSortKey_Status :: NotebookInstanceSortKey
$mNotebookInstanceSortKey_Status :: forall r.
NotebookInstanceSortKey -> (Void# -> r) -> (Void# -> r) -> r
NotebookInstanceSortKey_Status = NotebookInstanceSortKey' "Status"
{-# COMPLETE
NotebookInstanceSortKey_CreationTime,
NotebookInstanceSortKey_Name,
NotebookInstanceSortKey_Status,
NotebookInstanceSortKey'
#-}