C#로 된 람바다.
Lambda에서도 C# 사용 가능
C#도 람바다라고 쓸 수 있고, 좀 좋은 C#.
입력 데이터는 Json입니다.느낌이 ASP야.인터넷처럼.
using System;
using System.Text;
using Amazon.Lambda.Core;
// Assembly attribute to enable the Lambda function's JSON input to be converted into a .NET class.
[assembly: LambdaSerializer(typeof(Amazon.Lambda.Serialization.Json.JsonSerializer))]//お約束
namespace LambdaFunction
{
public class Function
{
public string FuncHoge(ImputClass input, ILambdaContext context)
{
return input.Text1+input.Text2;//例
}
}
public class ImputClass{
public string Text1{get;set;}
public string Text2{get;set;}
}
}
첫 번째 문장에서 람다는 좀 내키지 않았다.
Reference
이 문제에 관하여(C#로 된 람바다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://zenn.dev/shuzabu/articles/4e7e2bf8696173c66ef3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)