The name may be a little confusing. I will try my best to make this clearer.
Suppose I have an AWS Lambda function that has two different streams Kinesis A and B as input event sources.
So, for below, since the KinesisEvent instance contains a batch of records, will the package contain records from a single stream, or does it essentially contain records from both streams A and B?
public class ProcessKinesisEvents {
public void recordHandler(KinesisEvent event, Context context) {
...
}
}
source
share