Class: Aws::Lambda::Types::ListFunctionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ListFunctionsRequest
- Defined in:
- gems/aws-sdk-lambda/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.
4464 4465 4466 4467 4468 4469 4470 4471 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4464 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.
4464 4465 4466 4467 4468 4469 4470 4471 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4464 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
.
4464 4465 4466 4467 4468 4469 4470 4471 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4464 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.
4464 4465 4466 4467 4468 4469 4470 4471 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4464 class ListFunctionsRequest < Struct.new( :master_region, :function_version, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |