{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
{-# LANGUAGE NamedFieldPuns #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE RecordWildCards #-}
{-# LANGUAGE StrictData #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# OPTIONS_GHC -fno-warn-unused-binds #-}
{-# OPTIONS_GHC -fno-warn-unused-imports #-}
{-# OPTIONS_GHC -fno-warn-unused-matches #-}
module Amazonka.CloudFront.ListFunctions
(
ListFunctions (..),
newListFunctions,
listFunctions_stage,
listFunctions_marker,
listFunctions_maxItems,
ListFunctionsResponse (..),
newListFunctionsResponse,
listFunctionsResponse_functionList,
listFunctionsResponse_httpStatus,
)
where
import Amazonka.CloudFront.Types
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data ListFunctions = ListFunctions'
{
ListFunctions -> Maybe FunctionStage
stage :: Prelude.Maybe FunctionStage,
ListFunctions -> Maybe Text
marker :: Prelude.Maybe Prelude.Text,
ListFunctions -> Maybe Text
maxItems :: Prelude.Maybe Prelude.Text
}
deriving (ListFunctions -> ListFunctions -> Bool
(ListFunctions -> ListFunctions -> Bool)
-> (ListFunctions -> ListFunctions -> Bool) -> Eq ListFunctions
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListFunctions -> ListFunctions -> Bool
$c/= :: ListFunctions -> ListFunctions -> Bool
== :: ListFunctions -> ListFunctions -> Bool
$c== :: ListFunctions -> ListFunctions -> Bool
Prelude.Eq, ReadPrec [ListFunctions]
ReadPrec ListFunctions
Int -> ReadS ListFunctions
ReadS [ListFunctions]
(Int -> ReadS ListFunctions)
-> ReadS [ListFunctions]
-> ReadPrec ListFunctions
-> ReadPrec [ListFunctions]
-> Read ListFunctions
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListFunctions]
$creadListPrec :: ReadPrec [ListFunctions]
readPrec :: ReadPrec ListFunctions
$creadPrec :: ReadPrec ListFunctions
readList :: ReadS [ListFunctions]
$creadList :: ReadS [ListFunctions]
readsPrec :: Int -> ReadS ListFunctions
$creadsPrec :: Int -> ReadS ListFunctions
Prelude.Read, Int -> ListFunctions -> ShowS
[ListFunctions] -> ShowS
ListFunctions -> String
(Int -> ListFunctions -> ShowS)
-> (ListFunctions -> String)
-> ([ListFunctions] -> ShowS)
-> Show ListFunctions
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListFunctions] -> ShowS
$cshowList :: [ListFunctions] -> ShowS
show :: ListFunctions -> String
$cshow :: ListFunctions -> String
showsPrec :: Int -> ListFunctions -> ShowS
$cshowsPrec :: Int -> ListFunctions -> ShowS
Prelude.Show, (forall x. ListFunctions -> Rep ListFunctions x)
-> (forall x. Rep ListFunctions x -> ListFunctions)
-> Generic ListFunctions
forall x. Rep ListFunctions x -> ListFunctions
forall x. ListFunctions -> Rep ListFunctions x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListFunctions x -> ListFunctions
$cfrom :: forall x. ListFunctions -> Rep ListFunctions x
Prelude.Generic)
newListFunctions ::
ListFunctions
newListFunctions :: ListFunctions
newListFunctions =
ListFunctions' :: Maybe FunctionStage -> Maybe Text -> Maybe Text -> ListFunctions
ListFunctions'
{ $sel:stage:ListFunctions' :: Maybe FunctionStage
stage = Maybe FunctionStage
forall a. Maybe a
Prelude.Nothing,
$sel:marker:ListFunctions' :: Maybe Text
marker = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:maxItems:ListFunctions' :: Maybe Text
maxItems = Maybe Text
forall a. Maybe a
Prelude.Nothing
}
listFunctions_stage :: Lens.Lens' ListFunctions (Prelude.Maybe FunctionStage)
listFunctions_stage :: (Maybe FunctionStage -> f (Maybe FunctionStage))
-> ListFunctions -> f ListFunctions
listFunctions_stage = (ListFunctions -> Maybe FunctionStage)
-> (ListFunctions -> Maybe FunctionStage -> ListFunctions)
-> Lens
ListFunctions
ListFunctions
(Maybe FunctionStage)
(Maybe FunctionStage)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListFunctions' {Maybe FunctionStage
stage :: Maybe FunctionStage
$sel:stage:ListFunctions' :: ListFunctions -> Maybe FunctionStage
stage} -> Maybe FunctionStage
stage) (\s :: ListFunctions
s@ListFunctions' {} Maybe FunctionStage
a -> ListFunctions
s {$sel:stage:ListFunctions' :: Maybe FunctionStage
stage = Maybe FunctionStage
a} :: ListFunctions)
listFunctions_marker :: Lens.Lens' ListFunctions (Prelude.Maybe Prelude.Text)
listFunctions_marker :: (Maybe Text -> f (Maybe Text)) -> ListFunctions -> f ListFunctions
listFunctions_marker = (ListFunctions -> Maybe Text)
-> (ListFunctions -> Maybe Text -> ListFunctions)
-> Lens ListFunctions ListFunctions (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListFunctions' {Maybe Text
marker :: Maybe Text
$sel:marker:ListFunctions' :: ListFunctions -> Maybe Text
marker} -> Maybe Text
marker) (\s :: ListFunctions
s@ListFunctions' {} Maybe Text
a -> ListFunctions
s {$sel:marker:ListFunctions' :: Maybe Text
marker = Maybe Text
a} :: ListFunctions)
listFunctions_maxItems :: Lens.Lens' ListFunctions (Prelude.Maybe Prelude.Text)
listFunctions_maxItems :: (Maybe Text -> f (Maybe Text)) -> ListFunctions -> f ListFunctions
listFunctions_maxItems = (ListFunctions -> Maybe Text)
-> (ListFunctions -> Maybe Text -> ListFunctions)
-> Lens ListFunctions ListFunctions (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListFunctions' {Maybe Text
maxItems :: Maybe Text
$sel:maxItems:ListFunctions' :: ListFunctions -> Maybe Text
maxItems} -> Maybe Text
maxItems) (\s :: ListFunctions
s@ListFunctions' {} Maybe Text
a -> ListFunctions
s {$sel:maxItems:ListFunctions' :: Maybe Text
maxItems = Maybe Text
a} :: ListFunctions)
instance Core.AWSRequest ListFunctions where
type
AWSResponse ListFunctions =
ListFunctionsResponse
request :: ListFunctions -> Request ListFunctions
request = Service -> ListFunctions -> Request ListFunctions
forall a. ToRequest a => Service -> a -> Request a
Request.get Service
defaultService
response :: Logger
-> Service
-> Proxy ListFunctions
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListFunctions)))
response =
(Int
-> ResponseHeaders
-> [Node]
-> Either String (AWSResponse ListFunctions))
-> Logger
-> Service
-> Proxy ListFunctions
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListFunctions)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> [Node] -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveXML
( \Int
s ResponseHeaders
h [Node]
x ->
Maybe FunctionList -> Int -> ListFunctionsResponse
ListFunctionsResponse'
(Maybe FunctionList -> Int -> ListFunctionsResponse)
-> Either String (Maybe FunctionList)
-> Either String (Int -> ListFunctionsResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> ([Node] -> Either String (Maybe FunctionList)
forall a. FromXML a => [Node] -> Either String a
Core.parseXML [Node]
x)
Either String (Int -> ListFunctionsResponse)
-> Either String Int -> Either String ListFunctionsResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
)
instance Prelude.Hashable ListFunctions
instance Prelude.NFData ListFunctions
instance Core.ToHeaders ListFunctions where
toHeaders :: ListFunctions -> ResponseHeaders
toHeaders = ResponseHeaders -> ListFunctions -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty
instance Core.ToPath ListFunctions where
toPath :: ListFunctions -> ByteString
toPath = ByteString -> ListFunctions -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/2020-05-31/function"
instance Core.ToQuery ListFunctions where
toQuery :: ListFunctions -> QueryString
toQuery ListFunctions' {Maybe Text
Maybe FunctionStage
maxItems :: Maybe Text
marker :: Maybe Text
stage :: Maybe FunctionStage
$sel:maxItems:ListFunctions' :: ListFunctions -> Maybe Text
$sel:marker:ListFunctions' :: ListFunctions -> Maybe Text
$sel:stage:ListFunctions' :: ListFunctions -> Maybe FunctionStage
..} =
[QueryString] -> QueryString
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ ByteString
"Stage" ByteString -> Maybe FunctionStage -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe FunctionStage
stage,
ByteString
"Marker" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
marker,
ByteString
"MaxItems" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
maxItems
]
data ListFunctionsResponse = ListFunctionsResponse'
{
ListFunctionsResponse -> Maybe FunctionList
functionList :: Prelude.Maybe FunctionList,
ListFunctionsResponse -> Int
httpStatus :: Prelude.Int
}
deriving (ListFunctionsResponse -> ListFunctionsResponse -> Bool
(ListFunctionsResponse -> ListFunctionsResponse -> Bool)
-> (ListFunctionsResponse -> ListFunctionsResponse -> Bool)
-> Eq ListFunctionsResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListFunctionsResponse -> ListFunctionsResponse -> Bool
$c/= :: ListFunctionsResponse -> ListFunctionsResponse -> Bool
== :: ListFunctionsResponse -> ListFunctionsResponse -> Bool
$c== :: ListFunctionsResponse -> ListFunctionsResponse -> Bool
Prelude.Eq, ReadPrec [ListFunctionsResponse]
ReadPrec ListFunctionsResponse
Int -> ReadS ListFunctionsResponse
ReadS [ListFunctionsResponse]
(Int -> ReadS ListFunctionsResponse)
-> ReadS [ListFunctionsResponse]
-> ReadPrec ListFunctionsResponse
-> ReadPrec [ListFunctionsResponse]
-> Read ListFunctionsResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListFunctionsResponse]
$creadListPrec :: ReadPrec [ListFunctionsResponse]
readPrec :: ReadPrec ListFunctionsResponse
$creadPrec :: ReadPrec ListFunctionsResponse
readList :: ReadS [ListFunctionsResponse]
$creadList :: ReadS [ListFunctionsResponse]
readsPrec :: Int -> ReadS ListFunctionsResponse
$creadsPrec :: Int -> ReadS ListFunctionsResponse
Prelude.Read, Int -> ListFunctionsResponse -> ShowS
[ListFunctionsResponse] -> ShowS
ListFunctionsResponse -> String
(Int -> ListFunctionsResponse -> ShowS)
-> (ListFunctionsResponse -> String)
-> ([ListFunctionsResponse] -> ShowS)
-> Show ListFunctionsResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListFunctionsResponse] -> ShowS
$cshowList :: [ListFunctionsResponse] -> ShowS
show :: ListFunctionsResponse -> String
$cshow :: ListFunctionsResponse -> String
showsPrec :: Int -> ListFunctionsResponse -> ShowS
$cshowsPrec :: Int -> ListFunctionsResponse -> ShowS
Prelude.Show, (forall x. ListFunctionsResponse -> Rep ListFunctionsResponse x)
-> (forall x. Rep ListFunctionsResponse x -> ListFunctionsResponse)
-> Generic ListFunctionsResponse
forall x. Rep ListFunctionsResponse x -> ListFunctionsResponse
forall x. ListFunctionsResponse -> Rep ListFunctionsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListFunctionsResponse x -> ListFunctionsResponse
$cfrom :: forall x. ListFunctionsResponse -> Rep ListFunctionsResponse x
Prelude.Generic)
newListFunctionsResponse ::
Prelude.Int ->
ListFunctionsResponse
newListFunctionsResponse :: Int -> ListFunctionsResponse
newListFunctionsResponse Int
pHttpStatus_ =
ListFunctionsResponse' :: Maybe FunctionList -> Int -> ListFunctionsResponse
ListFunctionsResponse'
{ $sel:functionList:ListFunctionsResponse' :: Maybe FunctionList
functionList =
Maybe FunctionList
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:ListFunctionsResponse' :: Int
httpStatus = Int
pHttpStatus_
}
listFunctionsResponse_functionList :: Lens.Lens' ListFunctionsResponse (Prelude.Maybe FunctionList)
listFunctionsResponse_functionList :: (Maybe FunctionList -> f (Maybe FunctionList))
-> ListFunctionsResponse -> f ListFunctionsResponse
listFunctionsResponse_functionList = (ListFunctionsResponse -> Maybe FunctionList)
-> (ListFunctionsResponse
-> Maybe FunctionList -> ListFunctionsResponse)
-> Lens
ListFunctionsResponse
ListFunctionsResponse
(Maybe FunctionList)
(Maybe FunctionList)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListFunctionsResponse' {Maybe FunctionList
functionList :: Maybe FunctionList
$sel:functionList:ListFunctionsResponse' :: ListFunctionsResponse -> Maybe FunctionList
functionList} -> Maybe FunctionList
functionList) (\s :: ListFunctionsResponse
s@ListFunctionsResponse' {} Maybe FunctionList
a -> ListFunctionsResponse
s {$sel:functionList:ListFunctionsResponse' :: Maybe FunctionList
functionList = Maybe FunctionList
a} :: ListFunctionsResponse)
listFunctionsResponse_httpStatus :: Lens.Lens' ListFunctionsResponse Prelude.Int
listFunctionsResponse_httpStatus :: (Int -> f Int) -> ListFunctionsResponse -> f ListFunctionsResponse
listFunctionsResponse_httpStatus = (ListFunctionsResponse -> Int)
-> (ListFunctionsResponse -> Int -> ListFunctionsResponse)
-> Lens ListFunctionsResponse ListFunctionsResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListFunctionsResponse' {Int
httpStatus :: Int
$sel:httpStatus:ListFunctionsResponse' :: ListFunctionsResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: ListFunctionsResponse
s@ListFunctionsResponse' {} Int
a -> ListFunctionsResponse
s {$sel:httpStatus:ListFunctionsResponse' :: Int
httpStatus = Int
a} :: ListFunctionsResponse)
instance Prelude.NFData ListFunctionsResponse