| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.Lambda.ListFunctionUrlConfigs
Description
Returns a list of Lambda function URLs for the specified function.
This operation returns paginated results.
Synopsis
- data ListFunctionUrlConfigs = ListFunctionUrlConfigs' {}
- newListFunctionUrlConfigs :: Text -> ListFunctionUrlConfigs
- listFunctionUrlConfigs_marker :: Lens' ListFunctionUrlConfigs (Maybe Text)
- listFunctionUrlConfigs_maxItems :: Lens' ListFunctionUrlConfigs (Maybe Natural)
- listFunctionUrlConfigs_functionName :: Lens' ListFunctionUrlConfigs Text
- data ListFunctionUrlConfigsResponse = ListFunctionUrlConfigsResponse' {}
- newListFunctionUrlConfigsResponse :: Int -> ListFunctionUrlConfigsResponse
- listFunctionUrlConfigsResponse_nextMarker :: Lens' ListFunctionUrlConfigsResponse (Maybe Text)
- listFunctionUrlConfigsResponse_httpStatus :: Lens' ListFunctionUrlConfigsResponse Int
- listFunctionUrlConfigsResponse_functionUrlConfigs :: Lens' ListFunctionUrlConfigsResponse [FunctionUrlConfig]
Creating a Request
data ListFunctionUrlConfigs Source #
See: newListFunctionUrlConfigs smart constructor.
Constructors
| ListFunctionUrlConfigs' | |
Fields
| |
Instances
newListFunctionUrlConfigs Source #
Arguments
| :: Text | |
| -> ListFunctionUrlConfigs |
Create a value of ListFunctionUrlConfigs 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:ListFunctionUrlConfigs', listFunctionUrlConfigs_marker - Specify the pagination token that's returned by a previous request to
retrieve the next page of results.
$sel:maxItems:ListFunctionUrlConfigs', listFunctionUrlConfigs_maxItems - The maximum number of function URLs to return in the response. Note that
ListFunctionUrlConfigs returns a maximum of 50 items in each response,
even if you set the number higher.
ListFunctionUrlConfigs, listFunctionUrlConfigs_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
listFunctionUrlConfigs_marker :: Lens' ListFunctionUrlConfigs (Maybe Text) Source #
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
listFunctionUrlConfigs_maxItems :: Lens' ListFunctionUrlConfigs (Maybe Natural) Source #
The maximum number of function URLs to return in the response. Note that
ListFunctionUrlConfigs returns a maximum of 50 items in each response,
even if you set the number higher.
listFunctionUrlConfigs_functionName :: Lens' ListFunctionUrlConfigs 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 ListFunctionUrlConfigsResponse Source #
See: newListFunctionUrlConfigsResponse smart constructor.
Constructors
| ListFunctionUrlConfigsResponse' | |
Fields
| |
Instances
newListFunctionUrlConfigsResponse Source #
Create a value of ListFunctionUrlConfigsResponse 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:nextMarker:ListFunctionUrlConfigsResponse', listFunctionUrlConfigsResponse_nextMarker - The pagination token that's included if more results are available.
$sel:httpStatus:ListFunctionUrlConfigsResponse', listFunctionUrlConfigsResponse_httpStatus - The response's http status code.
$sel:functionUrlConfigs:ListFunctionUrlConfigsResponse', listFunctionUrlConfigsResponse_functionUrlConfigs - A list of function URL configurations.
Response Lenses
listFunctionUrlConfigsResponse_nextMarker :: Lens' ListFunctionUrlConfigsResponse (Maybe Text) Source #
The pagination token that's included if more results are available.
listFunctionUrlConfigsResponse_httpStatus :: Lens' ListFunctionUrlConfigsResponse Int Source #
The response's http status code.
listFunctionUrlConfigsResponse_functionUrlConfigs :: Lens' ListFunctionUrlConfigsResponse [FunctionUrlConfig] Source #
A list of function URL configurations.