Skip to content

Commit 6c9c8bf

Browse files
committed
revamp iotwireless
1 parent dae069a commit 6c9c8bf

File tree

1 file changed

+19
-20
lines changed

1 file changed

+19
-20
lines changed

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

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
title: "IoT Wireless"
3-
linkTitle: "IoT Wireless"
43
description: Get started with IoT Wireless on LocalStack
54
tags: ["Ultimate"]
65
---
@@ -11,7 +10,7 @@ AWS IoT Wireless is a managed service that enables customers to connect and mana
1110
The service provides a set of APIs to manage wireless devices, gateways, and destinations.
1211

1312
LocalStack allows you to use the IoT Wireless APIs in your local environment from creating wireless devices and gateways.
14-
The supported APIs are available on our [API coverage page]({{< ref "coverage_iotwireless" >}}), which provides information on the extent of IoT Wireless's integration with LocalStack.
13+
The supported APIs are available on our [API coverage page](), which provides information on the extent of IoT Wireless's integration with LocalStack.
1514

1615
## Getting started
1716

@@ -25,9 +24,9 @@ We will demonstrate how to use IoT Wireless to create wireless devices and gatew
2524
You can create a wireless device using the [`CreateWirelessDevice`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_CreateWirelessDevice.html) API.
2625
Run the following command to create a wireless device:
2726

28-
{{< command >}}
29-
$ awslocal iotwireless create-device-profile
30-
{{< / command >}}
27+
```bash
28+
awslocal iotwireless create-device-profile
29+
```
3130

3231
The following output would be retrieved:
3332

@@ -40,9 +39,9 @@ The following output would be retrieved:
4039
You can list the device profiles using the [`ListDeviceProfiles`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_ListDeviceProfiles.html) API.
4140
Run the following command to list the device profiles:
4241

43-
{{< command >}}
44-
$ awslocal iotwireless list-device-profiles
45-
{{< / command >}}
42+
```bash
43+
awslocal iotwireless list-device-profiles
44+
```
4645

4746
The following output would be retrieved:
4847

@@ -61,10 +60,10 @@ The following output would be retrieved:
6160
You can create a wireless device using the [`CreateWirelessDevice`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_CreateWirelessDevice.html) API.
6261
Run the following command to create a wireless device:
6362

64-
{{< command >}}
65-
$ awslocal iotwireless create-wireless-device \
63+
```bash
64+
awslocal iotwireless create-wireless-device \
6665
--cli-input-json file://input.json
67-
{{< / command >}}
66+
```
6867

6968
The `input.json` file contains the following content:
7069

@@ -90,9 +89,9 @@ The `input.json` file contains the following content:
9089
You can list the wireless devices using the [`ListWirelessDevices`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_ListWirelessDevices.html) API.
9190
Run the following command to list the wireless devices:
9291

93-
{{< command >}}
94-
$ awslocal iotwireless list-wireless-devices
95-
{{< / command >}}
92+
```bash
93+
awslocal iotwireless list-wireless-devices
94+
```
9695

9796
The following output would be retrieved:
9897

@@ -117,12 +116,12 @@ The following output would be retrieved:
117116
You can create a wireless gateway using the [`CreateWirelessGateway`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_CreateWirelessGateway.html) API.
118117
Run the following command to create a wireless gateway:
119118

120-
{{< command >}}
121-
$ awslocal iotwireless create-wireless-gateway \
119+
```bash
120+
awslocal iotwireless create-wireless-gateway \
122121
--lorawan GatewayEui="a1b2c3d4567890ab",RfRegion="US915" \
123122
--name "myFirstLoRaWANGateway" \
124123
--description "Using my first LoRaWAN gateway"
125-
{{< / command >}}
124+
```
126125

127126
The following output would be retrieved:
128127

@@ -135,9 +134,9 @@ The following output would be retrieved:
135134
You can list the wireless gateways using the [`ListWirelessGateways`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_ListWirelessGateways.html) API.
136135
Run the following command to list the wireless gateways:
137136

138-
{{< command >}}
139-
$ awslocal iotwireless list-wireless-gateways
140-
{{< / command >}}
137+
```bash
138+
awslocal iotwireless list-wireless-gateways
139+
```
141140

142141
The following output would be retrieved:
143142

0 commit comments

Comments
 (0)