Skip to content

List Function Url Configs

lambda_list_function_url_configs R Documentation

Returns a list of Lambda function URLs for the specified function

Description

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

Usage

lambda_list_function_url_configs(FunctionName, Marker, MaxItems)

Arguments

FunctionName

[required] 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

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

MaxItems

The maximum number of function URLs to return in the response. Note that list_function_url_configs returns a maximum of 50 items in each response, even if you set the number higher.

Value

A list with the following syntax:

list(
  FunctionUrlConfigs = list(
    list(
      FunctionUrl = "string",
      FunctionArn = "string",
      CreationTime = "string",
      LastModifiedTime = "string",
      Cors = list(
        AllowCredentials = TRUE|FALSE,
        AllowHeaders = list(
          "string"
        ),
        AllowMethods = list(
          "string"
        ),
        AllowOrigins = list(
          "string"
        ),
        ExposeHeaders = list(
          "string"
        ),
        MaxAge = 123
      ),
      AuthType = "NONE"|"AWS_IAM",
      InvokeMode = "BUFFERED"|"RESPONSE_STREAM"
    )
  ),
  NextMarker = "string"
)

Request syntax

svc$list_function_url_configs(
  FunctionName = "string",
  Marker = "string",
  MaxItems = 123
)