{ "opencollection": "1.0.0", "info": { "name": "AWS Lambda Aliases API", "version": "2015-03-31" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Aliases", "type": "folder" }, "items": [ { "info": { "name": "Aws Lambda List Aliases", "type": "http" }, "http": { "method": "GET", "url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/aliases", "params": [ { "name": "FunctionName", "value": "", "type": "path", "description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN." }, { "name": "FunctionVersion", "value": "example_value", "type": "query", "description": "Filter by the version that aliases point to" }, { "name": "Marker", "value": "", "type": "query", "description": "A pagination token returned by a previous call. Use this token to retrieve the next page of results." }, { "name": "MaxItems", "value": "", "type": "query", "description": "Maximum number of items to return (1-10000)" } ] }, "docs": "Returns a list of aliases for a Lambda function. Each alias points to a specific function version and can optionally route a percentage of traffic to a second version for canary deployments." }, { "info": { "name": "Aws Lambda Create an Alias", "type": "http" }, "http": { "method": "POST", "url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/aliases", "params": [ { "name": "FunctionName", "value": "", "type": "path", "description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates an alias for a Lambda function version. Use aliases to provide clients with a function identifier that you can update to invoke a different version. You can also map an alias to split invocation requests between two versions for weighted routing." }, { "info": { "name": "Aws Lambda Get an Alias", "type": "http" }, "http": { "method": "GET", "url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/aliases/:AliasName", "params": [ { "name": "FunctionName", "value": "", "type": "path", "description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN." }, { "name": "AliasName", "value": "", "type": "path", "description": "The name of the alias" } ] }, "docs": "Returns details about a Lambda function alias." }, { "info": { "name": "Aws Lambda Update an Alias", "type": "http" }, "http": { "method": "PUT", "url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/aliases/:AliasName", "params": [ { "name": "FunctionName", "value": "", "type": "path", "description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN." }, { "name": "AliasName", "value": "", "type": "path", "description": "The name of the alias" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the configuration of a Lambda function alias. You can change the function version that the alias points to, or configure routing between two versions for weighted traffic shifting." }, { "info": { "name": "Aws Lambda Delete an Alias", "type": "http" }, "http": { "method": "DELETE", "url": "https://lambda.{region}.amazonaws.com/2015-03-31/functions/:FunctionName/aliases/:AliasName", "params": [ { "name": "FunctionName", "value": "", "type": "path", "description": "The name, ARN, or partial ARN of the Lambda function. Can be a function name, a function ARN, or a partial ARN." }, { "name": "AliasName", "value": "", "type": "path", "description": "The name of the alias" } ] }, "docs": "Deletes a Lambda function alias." } ] } ], "bundled": true }