Skip to content

Lambda  >  Operations  >  list_function_event_invoke_configs

list_function_event_invoke_configs

Operation

list_function_event_invoke_configs async

list_function_event_invoke_configs(input: ListFunctionEventInvokeConfigsInput, plugins: list[Plugin] | None = None) -> ListFunctionEventInvokeConfigsOutput

Retrieves a list of configurations for asynchronous invocation for a function.

To configure options for asynchronous invocation, use PutFunctionEventInvokeConfig.

Parameters:

Name Type Description Default
input ListFunctionEventInvokeConfigsInput

An instance of ListFunctionEventInvokeConfigsInput.

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
ListFunctionEventInvokeConfigsOutput

An instance of ListFunctionEventInvokeConfigsOutput.

Input

ListFunctionEventInvokeConfigsInput dataclass

Dataclass for ListFunctionEventInvokeConfigsInput 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 configurations to return.

Output

ListFunctionEventInvokeConfigsOutput dataclass

Dataclass for ListFunctionEventInvokeConfigsOutput structure.

Attributes

function_event_invoke_configs class-attribute instance-attribute
function_event_invoke_configs: list[FunctionEventInvokeConfig] | None = None

A list of configurations.

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

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