Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions,
see Getting Started with Amazon Web Services in China
(PDF).
Use GetAlias
with a CLI
The following code examples show how to use GetAlias
.
- CLI
-
- Amazon 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 Amazon Lambda Function Aliases in the Amazon Lambda Developer Guide.
- PowerShell
-
- Tools for PowerShell
-
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 Amazon SDK developer guides and code examples, see
Using Lambda with an Amazon SDK.
This topic also includes information about getting started and details about previous SDK versions.