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
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#function_name ⇒ String
The name or ARN 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 or ARN 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.
4306 4307 4308 4309 4310 4311 4312 4313 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4306 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.
4306 4307 4308 4309 4310 4311 4312 4313 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4306 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.
4306 4307 4308 4309 4310 4311 4312 4313 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4306 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.
4306 4307 4308 4309 4310 4311 4312 4313 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 4306 class ListAliasesRequest < Struct.new( :function_name, :function_version, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |