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¶
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.
MarkerSpecify the pagination token that's returned by a previous request to retrieve the next page of results.
MaxItemsThe maximum number of function URLs to return in the response. Note that
list_function_url_configsreturns 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"
)