Skip to content

Commit 08ddde5

Browse files
committed
revamp iotanalytics
1 parent 131ce9b commit 08ddde5

File tree

1 file changed

+21
-22
lines changed

1 file changed

+21
-22
lines changed

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

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
---
22
title: "IoT Analytics"
3-
linkTitle: "IoT Analytics"
43
tags: ["Ultimate"]
54
description: Get started with IoT Analytics on LocalStack
65
---
76

8-
{{< callout "warning" >}}
7+
:::danger
98
IoT Analytics will be [retired on 15 December 2025](https://docs.aws.amazon.com/iotanalytics/latest/userguide/iotanalytics-end-of-support.html).
109
It will be removed from LocalStack soon after this date.
11-
{{< /callout >}}
10+
:::
1211

1312
## Introduction
1413

1514
IoT Analytics is a managed service that enables you to collect, store, process, and analyze data generated by your IoT devices.
1615
It provides a set of tools to build IoT applications without having to manage the underlying infrastructure.
1716

1817
LocalStack allows you to use the IoT Analytics APIs to create and manage channels, data stores, and pipelines in your local environment.
19-
The supported APIs are available on our [API Coverage Page]({{< ref "coverage_iotanalytics" >}}), which provides information on the extent of IoT Analytics integration with LocalStack.
18+
The supported APIs are available on our [API Coverage Page](), which provides information on the extent of IoT Analytics integration with LocalStack.
2019

2120
## Getting started
2221

@@ -30,15 +29,15 @@ We will demonstrate how to create a channel, data store, and pipeline within IoT
3029
You can create a channel using the [`CreateChannel`](https://docs.aws.amazon.com/iotanalytics/latest/APIReference/API_CreateChannel.html) API.
3130
Run the following command to create a channel named `mychannel`:
3231

33-
{{< command >}}
34-
$ awslocal iotanalytics create-channel --channel-name mychannel
35-
{{< /command >}}
32+
```bash
33+
awslocal iotanalytics create-channel --channel-name mychannel
34+
```
3635

3736
You can use the [`DescribeChannel`](https://docs.aws.amazon.com/iotanalytics/latest/APIReference/API_DescribeChannel.html) API to check the status of the channel:
3837

39-
{{< command >}}
40-
$ awslocal iotanalytics describe-channel --channel-name mychannel
41-
{{< /command >}}
38+
```bash
39+
awslocal iotanalytics describe-channel --channel-name mychannel
40+
```
4241

4342
The following output is displayed:
4443

@@ -56,15 +55,15 @@ The following output is displayed:
5655
You can create a data store using the [`CreateDatastore`](https://docs.aws.amazon.com/iotanalytics/latest/APIReference/API_CreateDatastore.html) API.
5756
Run the following command to create a data store named `mydatastore`:
5857

59-
{{< command >}}
60-
$ awslocal iotanalytics create-datastore --datastore-name mydatastore
61-
{{< /command >}}
58+
```bash
59+
awslocal iotanalytics create-datastore --datastore-name mydatastore
60+
```
6261

6362
You can use the [`DescribeDatastore`](https://docs.aws.amazon.com/iotanalytics/latest/APIReference/API_DescribeDatastore.html) API to check the status of the data store:
6463

65-
{{< command >}}
66-
$ awslocal iotanalytics describe-datastore --datastore-name mydatastore
67-
{{< /command >}}
64+
```bash
65+
awslocal iotanalytics describe-datastore --datastore-name mydatastore
66+
```
6867

6968
The following output is displayed:
7069

@@ -82,9 +81,9 @@ The following output is displayed:
8281
You can create a pipeline using the [`CreatePipeline`](https://docs.aws.amazon.com/iotanalytics/latest/APIReference/API_CreatePipeline.html) API.
8382
Run the following command to create a pipeline named `mypipeline`:
8483

85-
{{< command >}}
86-
$ awslocal iotanalytics create-pipeline --cli-input-json file://mypipeline.json
87-
{{< /command >}}
84+
```bash
85+
awslocal iotanalytics create-pipeline --cli-input-json file://mypipeline.json
86+
```
8887

8988
The `mypipeline.json` file contains the following content:
9089

@@ -111,9 +110,9 @@ The `mypipeline.json` file contains the following content:
111110

112111
You can use the [`DescribePipeline`](https://docs.aws.amazon.com/iotanalytics/latest/APIReference/API_DescribePipeline.html) API to check the status of the pipeline:
113112

114-
{{< command >}}
115-
$ awslocal iotanalytics describe-pipeline --pipeline-name mypipeline
116-
{{< /command >}}
113+
```bash
114+
awslocal iotanalytics describe-pipeline --pipeline-name mypipeline
115+
```
117116

118117
The following output is displayed:
119118

0 commit comments

Comments
 (0)