Class: Aws::Lambda::Types::ListFunctionsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

Note:

When making an API call, you may pass ListFunctionsRequest data as a hash:

{
  master_region: "MasterRegion",
  function_version: "ALL", # accepts ALL
  marker: "String",
  max_items: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#function_versionString

Set to ‘ALL` to include entries for all published versions of each function.

Returns:

  • (String)


1990
1991
1992
1993
1994
1995
1996
# File 'lib/aws-sdk-lambda/types.rb', line 1990

class ListFunctionsRequest < Struct.new(
  :master_region,
  :function_version,
  :marker,
  :max_items)
  include Aws::Structure
end

#markerString

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

Returns:

  • (String)


1990
1991
1992
1993
1994
1995
1996
# File 'lib/aws-sdk-lambda/types.rb', line 1990

class ListFunctionsRequest < Struct.new(
  :master_region,
  :function_version,
  :marker,
  :max_items)
  include Aws::Structure
end

#master_regionString

For Lambda@Edge functions, the region of the master function. For example, ‘us-east-2` or `ALL`. If specified, you must set `FunctionVersion` to `ALL`.

Returns:

  • (String)


1990
1991
1992
1993
1994
1995
1996
# File 'lib/aws-sdk-lambda/types.rb', line 1990

class ListFunctionsRequest < Struct.new(
  :master_region,
  :function_version,
  :marker,
  :max_items)
  include Aws::Structure
end

#max_itemsInteger

Specify a value between 1 and 50 to limit the number of functions in the response.

Returns:

  • (Integer)


1990
1991
1992
1993
1994
1995
1996
# File 'lib/aws-sdk-lambda/types.rb', line 1990

class ListFunctionsRequest < Struct.new(
  :master_region,
  :function_version,
  :marker,
  :max_items)
  include Aws::Structure
end