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
Copy file name to clipboardExpand all lines: src/content/docs/aws/services/kinesisanalytics.md
+16-18Lines changed: 16 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,23 +1,21 @@
1
1
---
2
2
title: "Kinesis Data Analytics for SQL Applications"
3
-
linkTitle: "Kinesis Data Analytics for SQL Applications"
4
-
description: >
5
-
Get started with Kinesis Data Analytics for SQL Applications on LocalStack
3
+
description: Get started with Kinesis Data Analytics for SQL Applications on LocalStack
6
4
tags: ["Ultimate"]
7
5
---
8
6
9
-
{{< callout "warning" >}}
7
+
:::danger
10
8
Amazon Kinesis Data Analytics for SQL Applications will be [retired on 27 January 2026](https://docs.aws.amazon.com/kinesisanalytics/latest/dev/discontinuation.html).
11
9
It will be removed from LocalStack soon after this date.
12
-
{{< /callout >}}
10
+
:::
13
11
14
12
## Introduction
15
13
16
14
Kinesis Data Analytics for SQL Applications is a service offered by Amazon Web Services (AWS) that enables you to process and analyze streaming data in real-time.
17
15
It allows you to apply transformations, filtering, and enrichment to streaming data using standard SQL syntax.
18
16
19
17
LocalStack allows you to use the Kinesis Data Analytics APIs in your local environment.
20
-
The supported APIs is available on our [API coverage page]({{< ref "coverage_kinesisanalytics" >}}).
18
+
The supported APIs is available on our [API coverage page]().
21
19
22
20
## Getting started
23
21
@@ -30,10 +28,10 @@ We will demonstrate how to create a Kinesis Analytics application using AWS CLI.
30
28
31
29
You can create a Kinesis Analytics application using the [`CreateApplication`](https://docs.aws.amazon.com/kinesisanalytics/latest/APIReference/API_CreateApplication.html) API by running the following command:
32
30
33
-
{{< command >}}
34
-
$ awslocal kinesisanalytics create-application \
31
+
```bash
32
+
awslocal kinesisanalytics create-application \
35
33
--application-name test-analytics-app
36
-
{{< /command >}}
34
+
```
37
35
38
36
The following output would be retrieved:
39
37
@@ -51,10 +49,10 @@ The following output would be retrieved:
51
49
52
50
You can describe the application using the [`DescribeApplication`](https://docs.aws.amazon.com/kinesisanalytics/latest/APIReference/API_DescribeApplication.html) API by running the following command:
@@ -78,18 +76,18 @@ The following output would be retrieved:
78
76
79
77
Add tags to the application using the [`TagResource`](https://docs.aws.amazon.com/kinesisanalytics/latest/APIReference/API_TagResource.html) API by running the following command:
You can list the tags for the application using the [`ListTagsForResource`](https://docs.aws.amazon.com/kinesisanalytics/latest/APIReference/API_ListTagsForResource.html) API by running the following command:
0 commit comments