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
Below is an `IntegrationSink` to send data to AWS SNS:
16
+
17
+
```yaml
18
+
apiVersion: sinks.knative.dev/v1alpha1
19
+
kind: IntegrationSink
20
+
metadata:
21
+
name: integration-sink-aws-sns
22
+
namespace: knative-samples
23
+
spec:
24
+
aws:
25
+
sns:
26
+
arn: "my-topic"
27
+
region: "eu-north-1"
28
+
auth:
29
+
secret:
30
+
ref:
31
+
name: "my-secret"
32
+
```
33
+
Inside of the `aws.sns` object we define the name of the topic (or _arn_) and its region. The credentials for the AWS service are referenced from the `my-secret` Kubernetes `Secret`
34
+
35
+
More details about the Apache Camel Kamelet [aws-sns-sink](https://camel.apache.org/camel-kamelets/latest/aws-sns-sink.html).
0 commit comments