Skip to content

Lambda  >  Operations  >  list_function_url_configs

list_function_url_configs

Operation

list_function_url_configs async

list_function_url_configs(input: ListFunctionUrlConfigsInput, plugins: list[Plugin] | None = None) -> ListFunctionUrlConfigsOutput

Returns a list of Lambda function URLs for the specified function.

Parameters:

Name Type Description Default
input ListFunctionUrlConfigsInput

An instance of ListFunctionUrlConfigsInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
ListFunctionUrlConfigsOutput

An instance of ListFunctionUrlConfigsOutput.

Input

ListFunctionUrlConfigsInput dataclass

Dataclass for ListFunctionUrlConfigsInput structure.

Attributes

function_name class-attribute instance-attribute
function_name: str | None = None

The name or ARN 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.

marker class-attribute instance-attribute
marker: str | None = None

Specify the pagination token that's returned by a previous request to retrieve the next page of results.

max_items class-attribute instance-attribute
max_items: int | None = None

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.

Output

ListFunctionUrlConfigsOutput dataclass

Dataclass for ListFunctionUrlConfigsOutput structure.

Attributes

function_url_configs instance-attribute
function_url_configs: list[FunctionUrlConfig]

A list of function URL configurations.

next_marker class-attribute instance-attribute
next_marker: str | None = None

The pagination token that's included if more results are available.