Skip to content

S3 batch #179

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 28, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
package com.amazonaws.services.lambda.runtime.events;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.List;

/**
* Event to represent the payload which is sent to Lambda by S3 Batch to perform a custom
* action.
*
* https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-invoke-lambda.html
*/

@Data
@Builder(setterPrefix = "with")
@NoArgsConstructor
@AllArgsConstructor
public class S3BatchEvent {

private String invocationSchemaVersion;
private String invocationId;
private Job job;
private List<Task> tasks;

@Data
@Builder(setterPrefix = "with")
@NoArgsConstructor
@AllArgsConstructor
public static class Job {

private String id;
}

@Data
@Builder(setterPrefix = "with")
@NoArgsConstructor
@AllArgsConstructor
public static class Task {

private String taskId;
private String s3Key;
private String s3VersionId;
private String s3BucketArn;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
package com.amazonaws.services.lambda.runtime.events;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.List;

/**
* Event to represent the response which should be returned as part of a S3 Batch custom
* action.
*
* https://docs.aws.amazon.com/AmazonS3/latest/dev/batch-ops-invoke-lambda.html
*/

@Data
@Builder(setterPrefix = "with")
@NoArgsConstructor
@AllArgsConstructor
public class S3BatchResponse {

private String invocationSchemaVersion;
private String treatMissingKeysAs;
private String invocationId;
private List<Result> result;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
private List<Result> result;
private List<Result> results;

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed.


@Data
@Builder(setterPrefix = "with")
@NoArgsConstructor
@AllArgsConstructor
public static class Result {

private String taskId;
private ResultCode resultCode;
private String resultString;
}

public enum ResultCode {

/**
* The task completed normally. If you requested a job completion report,
* the task's result string is included in the report.
*/
Succeeded,
/**
* The task suffered a temporary failure and will be redriven before the job
* completes. The result string is ignored. If this is the final redrive,
* the error message is included in the final report.
*/
TemporaryFailure,
/**
* The task suffered a permanent failure. If you requested a job-completion
* report, the task is marked as Failed and includes the error message
* string. Result strings from failed tasks are ignored.
*/
PermanentFailure
}
}