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) |
Safe Haskell | None |
Retrieves a list of configurations for asynchronous invocation for a function.
To configure options for asynchronous invocation, use PutFunctionEventInvokeConfig.
This operation returns paginated results.
Synopsis
- data ListFunctionEventInvokeConfigs = ListFunctionEventInvokeConfigs' {}
- newListFunctionEventInvokeConfigs :: Text -> ListFunctionEventInvokeConfigs
- listFunctionEventInvokeConfigs_marker :: Lens' ListFunctionEventInvokeConfigs (Maybe Text)
- listFunctionEventInvokeConfigs_maxItems :: Lens' ListFunctionEventInvokeConfigs (Maybe Natural)
- listFunctionEventInvokeConfigs_functionName :: Lens' ListFunctionEventInvokeConfigs Text
- data ListFunctionEventInvokeConfigsResponse = ListFunctionEventInvokeConfigsResponse' {}
- newListFunctionEventInvokeConfigsResponse :: Int -> ListFunctionEventInvokeConfigsResponse
- listFunctionEventInvokeConfigsResponse_functionEventInvokeConfigs :: Lens' ListFunctionEventInvokeConfigsResponse (Maybe [FunctionEventInvokeConfig])
- listFunctionEventInvokeConfigsResponse_nextMarker :: Lens' ListFunctionEventInvokeConfigsResponse (Maybe Text)
- listFunctionEventInvokeConfigsResponse_httpStatus :: Lens' ListFunctionEventInvokeConfigsResponse Int
Creating a Request
data ListFunctionEventInvokeConfigs Source #
See: newListFunctionEventInvokeConfigs
smart constructor.
ListFunctionEventInvokeConfigs' | |
|
Instances
newListFunctionEventInvokeConfigs Source #
Create a value of ListFunctionEventInvokeConfigs
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:marker:ListFunctionEventInvokeConfigs'
, listFunctionEventInvokeConfigs_marker
- Specify the pagination token that's returned by a previous request to
retrieve the next page of results.
$sel:maxItems:ListFunctionEventInvokeConfigs'
, listFunctionEventInvokeConfigs_maxItems
- The maximum number of configurations to return.
$sel:functionName:ListFunctionEventInvokeConfigs'
, listFunctionEventInvokeConfigs_functionName
- The name of the Lambda function.
Name formats
- Function name -
my-function
. - Function ARN -
arn:aws:lambda:us-west-2:123456789012:function:my-function
. - Partial ARN -
123456789012:function:my-function
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Request Lenses
listFunctionEventInvokeConfigs_marker :: Lens' ListFunctionEventInvokeConfigs (Maybe Text) Source #
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
listFunctionEventInvokeConfigs_maxItems :: Lens' ListFunctionEventInvokeConfigs (Maybe Natural) Source #
The maximum number of configurations to return.
listFunctionEventInvokeConfigs_functionName :: Lens' ListFunctionEventInvokeConfigs Text Source #
The name of the Lambda function.
Name formats
- Function name -
my-function
. - Function ARN -
arn:aws:lambda:us-west-2:123456789012:function:my-function
. - Partial ARN -
123456789012:function:my-function
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
Destructuring the Response
data ListFunctionEventInvokeConfigsResponse Source #
See: newListFunctionEventInvokeConfigsResponse
smart constructor.
ListFunctionEventInvokeConfigsResponse' | |
|
Instances
newListFunctionEventInvokeConfigsResponse Source #
Create a value of ListFunctionEventInvokeConfigsResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:functionEventInvokeConfigs:ListFunctionEventInvokeConfigsResponse'
, listFunctionEventInvokeConfigsResponse_functionEventInvokeConfigs
- A list of configurations.
$sel:nextMarker:ListFunctionEventInvokeConfigsResponse'
, listFunctionEventInvokeConfigsResponse_nextMarker
- The pagination token that's included if more results are available.
$sel:httpStatus:ListFunctionEventInvokeConfigsResponse'
, listFunctionEventInvokeConfigsResponse_httpStatus
- The response's http status code.
Response Lenses
listFunctionEventInvokeConfigsResponse_functionEventInvokeConfigs :: Lens' ListFunctionEventInvokeConfigsResponse (Maybe [FunctionEventInvokeConfig]) Source #
A list of configurations.
listFunctionEventInvokeConfigsResponse_nextMarker :: Lens' ListFunctionEventInvokeConfigsResponse (Maybe Text) Source #
The pagination token that's included if more results are available.
listFunctionEventInvokeConfigsResponse_httpStatus :: Lens' ListFunctionEventInvokeConfigsResponse Int Source #
The response's http status code.