
com.amazonaws.services.lambda.runtime.events.S3Event Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-lambda-java-events Show documentation
Show all versions of aws-lambda-java-events Show documentation
Event interface definitions AWS services supported by AWS Lambda.
/* Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. */
package com.amazonaws.services.lambda.runtime.events;
import com.amazonaws.services.s3.event.S3EventNotification;
import java.util.List;
/**
* Represents and AmazonS3 event.
*
*/
public class S3Event extends S3EventNotification {
/**
* Create a new instance of S3Event
* @param records A list of S3 event notification records
*/
public S3Event(List records) {
super(records);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy