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/DynamodbTimeWindowEvent.java
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,18 +23,44 @@
23
23
importjava.util.List;
24
24
importjava.util.Map;
25
25
26
+
/**
27
+
* Represents an Amazon Dynamodb event when using <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-ddb.html#services-ddb-windows">time windows</a>.
Copy file name to clipboardExpand all lines: aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/KinesisTimeWindowEvent.java
+26Lines changed: 26 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -23,18 +23,44 @@
23
23
importjava.util.List;
24
24
importjava.util.Map;
25
25
26
+
/**
27
+
* Represents an Amazon Kinesis event when using <a href="https://docs.aws.amazon.com/lambda/latest/dg/with-kinesis.html#services-kinesis-windows">time windows</a>.
Copy file name to clipboardExpand all lines: aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/StreamsEventResponse.java
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,13 +21,20 @@
21
21
importjava.io.Serializable;
22
22
importjava.util.List;
23
23
24
+
/**
25
+
* Function response type to report batch item failures for {@link KinesisEvent} and {@link DynamodbEvent}.
Copy file name to clipboardExpand all lines: aws-lambda-java-events/src/main/java/com/amazonaws/services/lambda/runtime/events/TimeWindowEventResponse.java
+14Lines changed: 14 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -22,14 +22,25 @@
22
22
importjava.util.List;
23
23
importjava.util.Map;
24
24
25
+
/**
26
+
* Response type to return a new state for the time window and to report batch item failures. This should be used along with {@link KinesisTimeWindowEvent} or {@link DynamodbTimeWindowEvent}.
0 commit comments