Skip to content

List Function Versions By Capacity Provider

lambda_list_function_versions_by_capacity_provider R Documentation

Returns a list of function versions that are configured to use a specific capacity provider

Description

Returns a list of function versions that are configured to use a specific capacity provider.

Usage

lambda_list_function_versions_by_capacity_provider(CapacityProviderName,
  Marker, MaxItems)

Arguments

CapacityProviderName

[required] The name of the capacity provider to list function versions for.

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 versions to return in the response.

Value

A list with the following syntax:

list(
  CapacityProviderArn = "string",
  FunctionVersions = list(
    list(
      FunctionArn = "string",
      State = "Pending"|"Active"|"Inactive"|"Failed"|"Deactivating"|"Deactivated"|"ActiveNonInvocable"|"Deleting"
    )
  ),
  NextMarker = "string"
)

Request syntax

svc$list_function_versions_by_capacity_provider(
  CapacityProviderName = "string",
  Marker = "string",
  MaxItems = 123
)