Safe Haskell | None |
---|---|
Language | Haskell2010 |
Returns a list of your Lambda functions. For each function, the response
includes the function configuration information. You must use GetFunction
to
retrieve the code for your function.
This operation requires permission for the 'lambda:ListFunctions' action.
http://docs.aws.amazon.com/lambda/latest/dg/API_ListFunctions.html
- data ListFunctions
- listFunctions :: ListFunctions
- lfMarker :: Lens' ListFunctions (Maybe Text)
- lfMaxItems :: Lens' ListFunctions (Maybe Natural)
- data ListFunctionsResponse
- listFunctionsResponse :: ListFunctionsResponse
- lfrFunctions :: Lens' ListFunctionsResponse [FunctionConfiguration]
- lfrNextMarker :: Lens' ListFunctionsResponse (Maybe Text)
Request
data ListFunctions Source
Request constructor
listFunctions :: ListFunctions Source
ListFunctions
constructor.
The fields accessible through corresponding lenses are:
Request lenses
lfMarker :: Lens' ListFunctions (Maybe Text) Source
Optional string. An opaque pagination token returned from a previous ListFunctions
operation. If present, indicates where to continue the listing.
lfMaxItems :: Lens' ListFunctions (Maybe Natural) Source
Optional integer. Specifies the maximum number of AWS Lambda functions to return in response. This parameter value must be greater than 0.
Response
Response constructor
listFunctionsResponse :: ListFunctionsResponse Source
ListFunctionsResponse
constructor.
The fields accessible through corresponding lenses are:
Response lenses
lfrFunctions :: Lens' ListFunctionsResponse [FunctionConfiguration] Source
A list of Lambda functions.
lfrNextMarker :: Lens' ListFunctionsResponse (Maybe Text) Source
A string, present if there are more functions.