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
This example demonstrate how to use [SQS Sink Connector](https://nightlies.apache.org/flink/flink-docs-release-1.20/docs/connectors/datastream/sqs/).
9
+
10
+
This example application generates random data and send the output to [`SQS Sink`](https://nightlies.apache.org/flink/flink-docs-release-1.20/docs/connectors/datastream/sqs/) connector.
11
+
12
+
### Runtime configuration
13
+
14
+
The application reads the runtime configuration from the Runtime Properties, when running on Amazon Managed Service for Apache Flink,
15
+
or, when running locally, from the [`resources/flink-application-properties-dev.json`](resources/flink-application-properties-dev.json) file located in the resources folder.
|`OutputQueue0`|`sqs-url`| URL to SQS sink output queue |
22
+
|`OutputQueue0`|`aws.region`| (optional) Region of the output stream. If not specified, it will use the application region or the default region of the AWS profile, when running locally. |
23
+
24
+
25
+
To configure the applicaton on Managed Service for Apache Flink, set up these parameter in the *Runtime properties*.
26
+
27
+
To configure the application for running locally, edit the [json file](resources/flink-application-properties-dev.json).
28
+
29
+
### Running locally in IntelliJ
30
+
31
+
You can run this example directly in IntelliJ, without any local Flink cluster or local Flink installation.
32
+
33
+
See [Running examples locally](../running-examples-locally.md) for details.
// Name of the local JSON resource with the application properties in the same format as they are received from the Amazon Managed Service for Apache Flink runtime
0 commit comments