All Downloads are FREE. Search and download functionalities are using the official Maven repository.

in.erail.amazon.lambda.eventsource.EventSourceName Maven / Gradle / Ivy

There is a newer version: 2.5.3
Show newest version
package in.erail.amazon.lambda.eventsource;

/**
 *
 * @author vinay
 */
public enum EventSourceName {

  S3("aws:s3"),
  SQS("aws:sqs"),
  CODE_COMMIT("aws:codecommit"),
  SNS("aws:sns"),
  API_GATEWAY("aws:apigateway"),
  SES("aws:ses"),
  KINESIS("aws:kinesis"),
  DYNAMODB("aws:dynamodb"),
  DEFAULT("");

  private final String event;

  EventSourceName(String event) {
    this.event = event;
  }

  public String event() {
    return event;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy