File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
samples/msk-firehose-event-handler/src/main/java/example Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import com .amazonaws .services .lambda .runtime .Context ;
4
4
import com .amazonaws .services .lambda .runtime .RequestHandler ;
5
- import model .MSKFirehoseResponse ;
6
- import events .MSKFirehoseEvent ;
5
+ import com . amazonaws . services . lambda . runtime . events .MSKFirehoseResponse ;
6
+ import com . amazonaws . services . lambda . runtime . events .MSKFirehoseEvent ;
7
7
import org .json .JSONObject ;
8
8
9
9
import java .nio .ByteBuffer ;
14
14
* A sample MSKFirehoseEvent handler
15
15
* For more information see the developer guide - <a href="https://docs.aws.amazon.com/firehose/latest/dev/data-transformation.html">...</a>
16
16
*/
17
- public class Sample implements RequestHandler <MSKFirehoseEvent , MSKFirehoseResponse > {
17
+ public class MSKFirehoseEventHandler implements RequestHandler <MSKFirehoseEvent , MSKFirehoseResponse > {
18
18
19
19
@ Override
20
20
public MSKFirehoseResponse handleRequest (MSKFirehoseEvent MSKFirehoseEvent , Context context ) {
You can’t perform that action at this time.
0 commit comments