public void LambdaCreateAlias() { #region to-create-an-alias-for-a-lambda-function-1586480324259 var response = client.CreateAlias(new CreateAliasRequest { Description = "alias for live version of function", FunctionName = "my-function", FunctionVersion = "1", Name = "LIVE" }); string aliasArn = response.AliasArn; string description = response.Description; string functionVersion = response.FunctionVersion; string name = response.Name; string revisionId = response.RevisionId; #endregion }
private Amazon.Lambda.Model.CreateAliasResponse CallAWSServiceOperation(IAmazonLambda client, Amazon.Lambda.Model.CreateAliasRequest request) { Utils.Common.WriteVerboseEndpointMessage(this, client.Config, "AWS Lambda", "CreateAlias"); try { #if DESKTOP return(client.CreateAlias(request)); #elif CORECLR return(client.CreateAliasAsync(request).GetAwaiter().GetResult()); #else #error "Unknown build edition" #endif } catch (AmazonServiceException exc) { var webException = exc.InnerException as System.Net.WebException; if (webException != null) { throw new Exception(Utils.Common.FormatNameResolutionFailureMessage(client.Config, webException.Message), webException); } throw; } }