Class: Aws::Lambda::Types::ListFunctionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ListFunctionsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#function_version ⇒ String
Set to ‘ALL` to include entries for all published versions of each function.
-
#marker ⇒ String
Specify the pagination token that’s returned by a previous request to retrieve the next page of results.
-
#master_region ⇒ String
For Lambda@Edge functions, the Amazon Web Services Region of the master function.
-
#max_items ⇒ Integer
The maximum number of functions to return in the response.
Instance Attribute Details
#function_version ⇒ String
Set to ‘ALL` to include entries for all published versions of each function.
4621 4622 4623 4624 4625 4626 4627 4628 |
# File 'lib/aws-sdk-lambda/types.rb', line 4621 class ListFunctionsRequest < Struct.new( :master_region, :function_version, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
Specify the pagination token that’s returned by a previous request to retrieve the next page of results.
4621 4622 4623 4624 4625 4626 4627 4628 |
# File 'lib/aws-sdk-lambda/types.rb', line 4621 class ListFunctionsRequest < Struct.new( :master_region, :function_version, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#master_region ⇒ String
For Lambda@Edge functions, the Amazon Web Services Region of the master function. For example, ‘us-east-1` filters the list of functions to include only Lambda@Edge functions replicated from a master function in US East (N. Virginia). If specified, you must set `FunctionVersion` to `ALL`.
4621 4622 4623 4624 4625 4626 4627 4628 |
# File 'lib/aws-sdk-lambda/types.rb', line 4621 class ListFunctionsRequest < Struct.new( :master_region, :function_version, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#max_items ⇒ Integer
The maximum number of functions to return in the response. Note that ‘ListFunctions` returns a maximum of 50 items in each response, even if you set the number higher.
4621 4622 4623 4624 4625 4626 4627 4628 |
# File 'lib/aws-sdk-lambda/types.rb', line 4621 class ListFunctionsRequest < Struct.new( :master_region, :function_version, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |