You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/MSKFirehoseResponse.java
+12-10
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,17 @@
3
3
importjava.nio.ByteBuffer;
4
4
importjava.util.List;
5
5
6
-
importlombok.*;
6
+
importlombok.AllArgsConstructor;
7
+
importlombok.Builder;
8
+
importlombok.Data;
9
+
importlombok.NoArgsConstructor;
7
10
8
11
/**
9
12
* Response model for Amazon Data Firehose Lambda transformation with MSK as a source.
13
+
* [+] Amazon Data Firehose Data Transformation - Data Transformation and Status Model - <a href="https://docs.aws.amazon.com/firehose/latest/dev/data-transformation.html#data-transformation-status-model">...</a>
14
+
* OK : Indicates that processing of this item succeeded.
15
+
* ProcessingFailed : Indicate that the processing of this item failed.
16
+
* Dropped : Indicates that this item should be silently dropped
10
17
*/
11
18
12
19
@Data
@@ -17,12 +24,12 @@
17
24
publicclassMSKFirehoseResponse {
18
25
19
26
publicenumResult {
20
-
27
+
21
28
/**
22
29
* Indicates that processing of this item succeeded.
23
30
*/
24
31
Ok,
25
-
32
+
26
33
/**
27
34
* Indicate that the processing of this item failed
0 commit comments