Github user bowenli86 commented on a diff in the pull request:
https://github.com/apache/flink/pull/5301#discussion_r163075196
--- Diff: docs/dev/connectors/kinesis.md ---
@@ -271,9 +271,9 @@ For the monitoring to work, the user accessing the
stream needs access to the Cl
{% highlight java %}
Properties producerConfig = new Properties();
// Required configs
-producerConfig.put(AWSConfigConstants.AWS_REGION, "us-east-1");
producerConfig.put(AWSConfigConstants.AWS_ACCESS_KEY_ID,
"aws_access_key_id");
producerConfig.put(AWSConfigConstants.AWS_SECRET_ACCESS_KEY,
"aws_secret_access_key");
+producerConfig.put("Region", "us-east-1");
--- End diff --
no, KPL doesn't have such configs. KPL takes a string like 'Region' and
tries to find its setter using reflection.
---