Class: Aws::Lambda::Types::GetAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::GetAliasRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass GetAliasRequest data as a hash:
{
function_name: "FunctionName", # required
name: "Alias", # required
}
Instance Attribute Summary collapse
-
#function_name ⇒ String
Function name for which the alias is created.
-
#name ⇒ String
Name of the alias for which you want to retrieve information.
Instance Attribute Details
#function_name ⇒ String
Function name for which the alias is created. An alias is a subresource that exists only in the context of an existing Lambda function so you must specify the function name. Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 characters in length.
1006 1007 1008 1009 1010 |
# File 'lib/aws-sdk-lambda/types.rb', line 1006 class GetAliasRequest < Struct.new( :function_name, :name) include Aws::Structure end |
#name ⇒ String
Name of the alias for which you want to retrieve information.
1006 1007 1008 1009 1010 |
# File 'lib/aws-sdk-lambda/types.rb', line 1006 class GetAliasRequest < Struct.new( :function_name, :name) include Aws::Structure end |