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/iotwireless.md
+19-20Lines changed: 19 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
---
2
2
title: "IoT Wireless"
3
-
linkTitle: "IoT Wireless"
4
3
description: Get started with IoT Wireless on LocalStack
5
4
tags: ["Ultimate"]
6
5
---
@@ -11,7 +10,7 @@ AWS IoT Wireless is a managed service that enables customers to connect and mana
11
10
The service provides a set of APIs to manage wireless devices, gateways, and destinations.
12
11
13
12
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.
15
14
16
15
## Getting started
17
16
@@ -25,9 +24,9 @@ We will demonstrate how to use IoT Wireless to create wireless devices and gatew
25
24
You can create a wireless device using the [`CreateWirelessDevice`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_CreateWirelessDevice.html) API.
26
25
Run the following command to create a wireless device:
27
26
28
-
{{< command >}}
29
-
$ awslocal iotwireless create-device-profile
30
-
{{< / command >}}
27
+
```bash
28
+
awslocal iotwireless create-device-profile
29
+
```
31
30
32
31
The following output would be retrieved:
33
32
@@ -40,9 +39,9 @@ The following output would be retrieved:
40
39
You can list the device profiles using the [`ListDeviceProfiles`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_ListDeviceProfiles.html) API.
41
40
Run the following command to list the device profiles:
42
41
43
-
{{< command >}}
44
-
$ awslocal iotwireless list-device-profiles
45
-
{{< / command >}}
42
+
```bash
43
+
awslocal iotwireless list-device-profiles
44
+
```
46
45
47
46
The following output would be retrieved:
48
47
@@ -61,10 +60,10 @@ The following output would be retrieved:
61
60
You can create a wireless device using the [`CreateWirelessDevice`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_CreateWirelessDevice.html) API.
62
61
Run the following command to create a wireless device:
63
62
64
-
{{< command >}}
65
-
$ awslocal iotwireless create-wireless-device \
63
+
```bash
64
+
awslocal iotwireless create-wireless-device \
66
65
--cli-input-json file://input.json
67
-
{{< / command >}}
66
+
```
68
67
69
68
The `input.json` file contains the following content:
70
69
@@ -90,9 +89,9 @@ The `input.json` file contains the following content:
90
89
You can list the wireless devices using the [`ListWirelessDevices`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_ListWirelessDevices.html) API.
91
90
Run the following command to list the wireless devices:
92
91
93
-
{{< command >}}
94
-
$ awslocal iotwireless list-wireless-devices
95
-
{{< / command >}}
92
+
```bash
93
+
awslocal iotwireless list-wireless-devices
94
+
```
96
95
97
96
The following output would be retrieved:
98
97
@@ -117,12 +116,12 @@ The following output would be retrieved:
117
116
You can create a wireless gateway using the [`CreateWirelessGateway`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_CreateWirelessGateway.html) API.
118
117
Run the following command to create a wireless gateway:
@@ -135,9 +134,9 @@ The following output would be retrieved:
135
134
You can list the wireless gateways using the [`ListWirelessGateways`](https://docs.aws.amazon.com/iot-wireless/2020-11-22/API_ListWirelessGateways.html) API.
136
135
Run the following command to list the wireless gateways:
0 commit comments