Class: Aws::Lambda::Types::ListAliasesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ListAliasesRequest
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
When making an API call, you may pass ListAliasesRequest data as a hash:
{
function_name: "FunctionName", # required
function_version: "Version",
marker: "String",
max_items: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#function_name ⇒ String
The name of the Lambda function.
-
#function_version ⇒ String
Specify a function version to only list aliases that invoke that version.
-
#marker ⇒ String
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
-
#max_items ⇒ Integer
Limit the number of aliases returned.
Instance Attribute Details
#function_name ⇒ String
The name of the Lambda function.
Name formats
Function name -
MyFunction
.Function ARN -
arn:aws:lambda:us-west-2:123456789012:function:MyFunction
.Partial ARN -
123456789012:function:MyFunction
.
The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
3367 3368 3369 3370 3371 3372 3373 3374 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3367 class ListAliasesRequest < Struct.new( :function_name, :function_version, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#function_version ⇒ String
Specify a function version to only list aliases that invoke that version.
3367 3368 3369 3370 3371 3372 3373 3374 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3367 class ListAliasesRequest < Struct.new( :function_name, :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.
3367 3368 3369 3370 3371 3372 3373 3374 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3367 class ListAliasesRequest < Struct.new( :function_name, :function_version, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#max_items ⇒ Integer
Limit the number of aliases returned.
3367 3368 3369 3370 3371 3372 3373 3374 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3367 class ListAliasesRequest < Struct.new( :function_name, :function_version, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |