Lambda 处理程序multiple different types of trigger在 java 中的外观如何?我想为 , 设置Cloudwatch Event Rule触发器S3。我怎样才能做到这一点?
public class App implements RequestHandler<S3Event, Context>
{
public Context handleRequest(S3Event s3event, Context context) {
System.out.println("welcome to lambda");
}
}