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.
6148 6149 6150 6151 6152 6153 6154 6155 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6148 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.
6148 6149 6150 6151 6152 6153 6154 6155 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6148 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.
6148 6149 6150 6151 6152 6153 6154 6155 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6148 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.
6148 6149 6150 6151 6152 6153 6154 6155 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 6148 class ListAliasesRequest < Struct.new( :function_name, :function_version, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |