Skip to content

Commit 6323d44

Browse files
committed
revamp kinesis analytics
1 parent 4937e67 commit 6323d44

File tree

1 file changed

+16
-18
lines changed

1 file changed

+16
-18
lines changed

src/content/docs/aws/services/kinesisanalytics.md

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
---
22
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
64
tags: ["Ultimate"]
75
---
86

9-
{{< callout "warning" >}}
7+
:::danger
108
Amazon Kinesis Data Analytics for SQL Applications will be [retired on 27 January 2026](https://docs.aws.amazon.com/kinesisanalytics/latest/dev/discontinuation.html).
119
It will be removed from LocalStack soon after this date.
12-
{{< /callout >}}
10+
:::
1311

1412
## Introduction
1513

1614
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.
1715
It allows you to apply transformations, filtering, and enrichment to streaming data using standard SQL syntax.
1816

1917
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]().
2119

2220
## Getting started
2321

@@ -30,10 +28,10 @@ We will demonstrate how to create a Kinesis Analytics application using AWS CLI.
3028

3129
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:
3230

33-
{{< command >}}
34-
$ awslocal kinesisanalytics create-application \
31+
```bash
32+
awslocal kinesisanalytics create-application \
3533
--application-name test-analytics-app
36-
{{< /command >}}
34+
```
3735

3836
The following output would be retrieved:
3937

@@ -51,10 +49,10 @@ The following output would be retrieved:
5149

5250
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:
5351

54-
{{< command >}}
55-
$ awslocal kinesisanalytics describe-application \
52+
```bash
53+
awslocal kinesisanalytics describe-application \
5654
--application-name test-analytics-app
57-
{{< /command >}}
55+
```
5856

5957
The following output would be retrieved:
6058

@@ -78,18 +76,18 @@ The following output would be retrieved:
7876

7977
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:
8078

81-
{{< command >}}
82-
$ awslocal kinesisanalytics tag-resource \
79+
```bash
80+
awslocal kinesisanalytics tag-resource \
8381
--resource-arn arn:aws:kinesisanalytics:us-east-1:000000000000:application/test-analytics-app \
8482
--tags Key=test,Value=test
85-
{{< /command >}}
83+
```
8684

8785
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:
8886

89-
{{< command >}}
90-
$ awslocal kinesisanalytics list-tags-for-resource \
87+
```bash
88+
awslocal kinesisanalytics list-tags-for-resource \
9189
--resource-arn arn:aws:kinesisanalytics:us-east-1:000000000000:application/test-analytics-app
92-
{{< /command >}}
90+
```
9391

9492
The following output would be retrieved:
9593

0 commit comments

Comments
 (0)