Before I used the flink connector to connect the kinesis stream, there would always be such a problem
The following is my previous pom
<dependency><groupId>org.apache.flink</groupId><artifactId>flink-connector-kinesis_2.12</artifactId><version>1.11.3</version></dependency>
When I replace with aws connector
<dependency><groupId>software.amazon.kinesis</groupId><artifactId>amazon-kinesis-connector-flink</artifactId><version>2.0.3</version></dependency>
The following error occurred, but I could not find the related package exception
Before I used the flink connector to connect the kinesis stream, there would always be such a problem
The following is my previous pom
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-connector-kinesis_2.12</artifactId>
<version>1.11.3</version>
</dependency>
When I replace with aws connector
<dependency>
<groupId>software.amazon.kinesis</groupId>
<artifactId>amazon-kinesis-connector-flink</artifactId>
<version>2.0.3</version>
</dependency>
The following error occurred, but I could not find the related package exception
Can you help me answer it?