-
Notifications
You must be signed in to change notification settings - Fork 239
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
S3 batch #179
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
48 changes: 48 additions & 0 deletions
48
...-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/S3BatchEvent.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |
59 changes: 59 additions & 0 deletions
59
...va-events/src/main/java/com/amazonaws/services/lambda/runtime/events/S3BatchResponse.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
|
||
@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 | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed.