Services or capabilities described in AWS documentation might vary by Region. To see the differences applicable to the AWS European Sovereign Cloud Region, see the AWS European Sovereign Cloud User Guide.Use GetAlias with a CLI
The following code examples show how to use GetAlias.
- CLI
-
- AWS CLI
-
To retrieve details about a function alias
The following get-alias example displays details for the alias named LIVE on the my-function Lambda function.
aws lambda get-alias \
--function-name my-function \
--name LIVE
Output:
{
"FunctionVersion": "3",
"Name": "LIVE",
"AliasArn": "arn:aws:lambda:us-west-2:123456789012:function:my-function:LIVE",
"RevisionId": "594f41fb-b85f-4c20-95c7-6ca5f2a92c93",
"Description": "alias for live version of function"
}
For more information, see Configuring AWS Lambda Function Aliases in the AWS Lambda Developer Guide.
- PowerShell
-
- Tools for PowerShell V4
-
Example 1: This example retrieves the Routing Config weights for a specific Lambda Function Alias.
Get-LMAlias -FunctionName "MylambdaFunction123" -Name "newlabel1" -Select RoutingConfig
Output:
AdditionalVersionWeights
------------------------
{[1, 0.6]}
- Tools for PowerShell V5
-
Example 1: This example retrieves the Routing Config weights for a specific Lambda Function Alias.
Get-LMAlias -FunctionName "MylambdaFunction123" -Name "newlabel1" -Select RoutingConfig
Output:
AdditionalVersionWeights
------------------------
{[1, 0.6]}
For a complete list of AWS SDK developer guides and code examples, see
Using Lambda with an AWS SDK.
This topic also includes information about getting started and details about previous SDK versions.