@aws-sdk/client-iot-wireless 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +555 -555
- package/dist-types/models/models_1.d.ts +179 -179
- package/dist-types/ts3.4/models/models_0.d.ts +565 -555
- package/dist-types/ts3.4/models/models_1.d.ts +185 -179
- package/package.json +7 -7
|
@@ -9,19 +9,19 @@ export interface ListPositionConfigurationsRequest {
|
|
|
9
9
|
* <p>Resource type for which position configurations are listed.</p>
|
|
10
10
|
* @public
|
|
11
11
|
*/
|
|
12
|
-
ResourceType?: PositionResourceType;
|
|
12
|
+
ResourceType?: PositionResourceType | undefined;
|
|
13
13
|
/**
|
|
14
14
|
* <p>The maximum number of results to return in this operation.</p>
|
|
15
15
|
* @public
|
|
16
16
|
*/
|
|
17
|
-
MaxResults?: number;
|
|
17
|
+
MaxResults?: number | undefined;
|
|
18
18
|
/**
|
|
19
19
|
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
20
20
|
* response; otherwise <b>null</b> to receive the first set of
|
|
21
21
|
* results.</p>
|
|
22
22
|
* @public
|
|
23
23
|
*/
|
|
24
|
-
NextToken?: string;
|
|
24
|
+
NextToken?: string | undefined;
|
|
25
25
|
}
|
|
26
26
|
/**
|
|
27
27
|
* <p>The wrapper for a position configuration.</p>
|
|
@@ -32,23 +32,23 @@ export interface PositionConfigurationItem {
|
|
|
32
32
|
* <p>Resource identifier for the position configuration.</p>
|
|
33
33
|
* @public
|
|
34
34
|
*/
|
|
35
|
-
ResourceIdentifier?: string;
|
|
35
|
+
ResourceIdentifier?: string | undefined;
|
|
36
36
|
/**
|
|
37
37
|
* <p>Resource type of the resource for the position configuration.</p>
|
|
38
38
|
* @public
|
|
39
39
|
*/
|
|
40
|
-
ResourceType?: PositionResourceType;
|
|
40
|
+
ResourceType?: PositionResourceType | undefined;
|
|
41
41
|
/**
|
|
42
42
|
* <p>The details of the positioning solver object used to compute the location.</p>
|
|
43
43
|
* @public
|
|
44
44
|
*/
|
|
45
|
-
Solvers?: PositionSolverDetails;
|
|
45
|
+
Solvers?: PositionSolverDetails | undefined;
|
|
46
46
|
/**
|
|
47
47
|
* <p>The position data destination that describes the AWS IoT rule that processes the
|
|
48
48
|
* device's position data for use by AWS IoT Core for LoRaWAN.</p>
|
|
49
49
|
* @public
|
|
50
50
|
*/
|
|
51
|
-
Destination?: string;
|
|
51
|
+
Destination?: string | undefined;
|
|
52
52
|
}
|
|
53
53
|
/**
|
|
54
54
|
* @public
|
|
@@ -58,12 +58,12 @@ export interface ListPositionConfigurationsResponse {
|
|
|
58
58
|
* <p>A list of position configurations.</p>
|
|
59
59
|
* @public
|
|
60
60
|
*/
|
|
61
|
-
PositionConfigurationList?: PositionConfigurationItem[];
|
|
61
|
+
PositionConfigurationList?: PositionConfigurationItem[] | undefined;
|
|
62
62
|
/**
|
|
63
63
|
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
64
64
|
* @public
|
|
65
65
|
*/
|
|
66
|
-
NextToken?: string;
|
|
66
|
+
NextToken?: string | undefined;
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
69
|
* @public
|
|
@@ -81,17 +81,17 @@ export interface ListQueuedMessagesRequest {
|
|
|
81
81
|
* results.</p>
|
|
82
82
|
* @public
|
|
83
83
|
*/
|
|
84
|
-
NextToken?: string;
|
|
84
|
+
NextToken?: string | undefined;
|
|
85
85
|
/**
|
|
86
86
|
* <p>The maximum number of results to return in this operation.</p>
|
|
87
87
|
* @public
|
|
88
88
|
*/
|
|
89
|
-
MaxResults?: number;
|
|
89
|
+
MaxResults?: number | undefined;
|
|
90
90
|
/**
|
|
91
91
|
* <p>The wireless device type, whic can be either Sidewalk or LoRaWAN.</p>
|
|
92
92
|
* @public
|
|
93
93
|
*/
|
|
94
|
-
WirelessDeviceType?: WirelessDeviceType;
|
|
94
|
+
WirelessDeviceType?: WirelessDeviceType | undefined;
|
|
95
95
|
}
|
|
96
96
|
/**
|
|
97
97
|
* @public
|
|
@@ -103,12 +103,12 @@ export interface ListQueuedMessagesResponse {
|
|
|
103
103
|
* results.</p>
|
|
104
104
|
* @public
|
|
105
105
|
*/
|
|
106
|
-
NextToken?: string;
|
|
106
|
+
NextToken?: string | undefined;
|
|
107
107
|
/**
|
|
108
108
|
* <p>The messages in the downlink queue.</p>
|
|
109
109
|
* @public
|
|
110
110
|
*/
|
|
111
|
-
DownlinkQueueMessagesList?: DownlinkQueueMessage[];
|
|
111
|
+
DownlinkQueueMessagesList?: DownlinkQueueMessage[] | undefined;
|
|
112
112
|
}
|
|
113
113
|
/**
|
|
114
114
|
* @public
|
|
@@ -120,12 +120,12 @@ export interface ListServiceProfilesRequest {
|
|
|
120
120
|
* results.</p>
|
|
121
121
|
* @public
|
|
122
122
|
*/
|
|
123
|
-
NextToken?: string;
|
|
123
|
+
NextToken?: string | undefined;
|
|
124
124
|
/**
|
|
125
125
|
* <p>The maximum number of results to return in this operation.</p>
|
|
126
126
|
* @public
|
|
127
127
|
*/
|
|
128
|
-
MaxResults?: number;
|
|
128
|
+
MaxResults?: number | undefined;
|
|
129
129
|
}
|
|
130
130
|
/**
|
|
131
131
|
* <p>Information about a service profile.</p>
|
|
@@ -136,17 +136,17 @@ export interface ServiceProfile {
|
|
|
136
136
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
137
137
|
* @public
|
|
138
138
|
*/
|
|
139
|
-
Arn?: string;
|
|
139
|
+
Arn?: string | undefined;
|
|
140
140
|
/**
|
|
141
141
|
* <p>The name of the resource.</p>
|
|
142
142
|
* @public
|
|
143
143
|
*/
|
|
144
|
-
Name?: string;
|
|
144
|
+
Name?: string | undefined;
|
|
145
145
|
/**
|
|
146
146
|
* <p>The ID of the service profile.</p>
|
|
147
147
|
* @public
|
|
148
148
|
*/
|
|
149
|
-
Id?: string;
|
|
149
|
+
Id?: string | undefined;
|
|
150
150
|
}
|
|
151
151
|
/**
|
|
152
152
|
* @public
|
|
@@ -156,12 +156,12 @@ export interface ListServiceProfilesResponse {
|
|
|
156
156
|
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
157
157
|
* @public
|
|
158
158
|
*/
|
|
159
|
-
NextToken?: string;
|
|
159
|
+
NextToken?: string | undefined;
|
|
160
160
|
/**
|
|
161
161
|
* <p>The list of service profiles.</p>
|
|
162
162
|
* @public
|
|
163
163
|
*/
|
|
164
|
-
ServiceProfileList?: ServiceProfile[];
|
|
164
|
+
ServiceProfileList?: ServiceProfile[] | undefined;
|
|
165
165
|
}
|
|
166
166
|
/**
|
|
167
167
|
* @public
|
|
@@ -182,7 +182,7 @@ export interface ListTagsForResourceResponse {
|
|
|
182
182
|
* manage a resource.</p>
|
|
183
183
|
* @public
|
|
184
184
|
*/
|
|
185
|
-
Tags?: Tag[];
|
|
185
|
+
Tags?: Tag[] | undefined;
|
|
186
186
|
}
|
|
187
187
|
/**
|
|
188
188
|
* @public
|
|
@@ -192,13 +192,13 @@ export interface ListWirelessDeviceImportTasksRequest {
|
|
|
192
192
|
* <p>The maximum number of results to return in this operation.</p>
|
|
193
193
|
* @public
|
|
194
194
|
*/
|
|
195
|
-
MaxResults?: number;
|
|
195
|
+
MaxResults?: number | undefined;
|
|
196
196
|
/**
|
|
197
197
|
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
198
198
|
* response; otherwise <code>null</code> to receive the first set of results.</p>
|
|
199
199
|
* @public
|
|
200
200
|
*/
|
|
201
|
-
NextToken?: string;
|
|
201
|
+
NextToken?: string | undefined;
|
|
202
202
|
}
|
|
203
203
|
/**
|
|
204
204
|
* <p>Information about an import task for wireless devices.</p>
|
|
@@ -209,63 +209,63 @@ export interface WirelessDeviceImportTask {
|
|
|
209
209
|
* <p>The ID of the wireless device import task.</p>
|
|
210
210
|
* @public
|
|
211
211
|
*/
|
|
212
|
-
Id?: string;
|
|
212
|
+
Id?: string | undefined;
|
|
213
213
|
/**
|
|
214
214
|
* <p>The ARN (Amazon Resource Name) of the wireless device import task.</p>
|
|
215
215
|
* @public
|
|
216
216
|
*/
|
|
217
|
-
Arn?: string;
|
|
217
|
+
Arn?: string | undefined;
|
|
218
218
|
/**
|
|
219
219
|
* <p>The name of the Sidewalk destination that that describes the IoT rule to route
|
|
220
220
|
* messages from the device in the import task that will be onboarded to AWS IoT
|
|
221
221
|
* Wireless</p>
|
|
222
222
|
* @public
|
|
223
223
|
*/
|
|
224
|
-
DestinationName?: string;
|
|
224
|
+
DestinationName?: string | undefined;
|
|
225
225
|
/**
|
|
226
226
|
* <p>The Sidewalk-related information of the wireless device import task.</p>
|
|
227
227
|
* @public
|
|
228
228
|
*/
|
|
229
|
-
Sidewalk?: SidewalkGetStartImportInfo;
|
|
229
|
+
Sidewalk?: SidewalkGetStartImportInfo | undefined;
|
|
230
230
|
/**
|
|
231
231
|
* <p>The time at which the import task was created.</p>
|
|
232
232
|
* @public
|
|
233
233
|
*/
|
|
234
|
-
CreationTime?: Date;
|
|
234
|
+
CreationTime?: Date | undefined;
|
|
235
235
|
/**
|
|
236
236
|
* <p>The status information of the wireless device import task.</p>
|
|
237
237
|
* @public
|
|
238
238
|
*/
|
|
239
|
-
Status?: ImportTaskStatus;
|
|
239
|
+
Status?: ImportTaskStatus | undefined;
|
|
240
240
|
/**
|
|
241
241
|
* <p>The reason that provides additional information about the import task status.</p>
|
|
242
242
|
* @public
|
|
243
243
|
*/
|
|
244
|
-
StatusReason?: string;
|
|
244
|
+
StatusReason?: string | undefined;
|
|
245
245
|
/**
|
|
246
246
|
* <p>The summary information of count of wireless devices that are waiting for the control
|
|
247
247
|
* log to be added to an import task.</p>
|
|
248
248
|
* @public
|
|
249
249
|
*/
|
|
250
|
-
InitializedImportedDeviceCount?: number;
|
|
250
|
+
InitializedImportedDeviceCount?: number | undefined;
|
|
251
251
|
/**
|
|
252
252
|
* <p>The summary information of count of wireless devices in an import task that are
|
|
253
253
|
* waiting in the queue to be onboarded.</p>
|
|
254
254
|
* @public
|
|
255
255
|
*/
|
|
256
|
-
PendingImportedDeviceCount?: number;
|
|
256
|
+
PendingImportedDeviceCount?: number | undefined;
|
|
257
257
|
/**
|
|
258
258
|
* <p>The summary information of count of wireless devices in an import task that have been
|
|
259
259
|
* onboarded to the import task.</p>
|
|
260
260
|
* @public
|
|
261
261
|
*/
|
|
262
|
-
OnboardedImportedDeviceCount?: number;
|
|
262
|
+
OnboardedImportedDeviceCount?: number | undefined;
|
|
263
263
|
/**
|
|
264
264
|
* <p>The summary information of count of wireless devices in an import task that failed to
|
|
265
265
|
* onboarded to the import task.</p>
|
|
266
266
|
* @public
|
|
267
267
|
*/
|
|
268
|
-
FailedImportedDeviceCount?: number;
|
|
268
|
+
FailedImportedDeviceCount?: number | undefined;
|
|
269
269
|
}
|
|
270
270
|
/**
|
|
271
271
|
* @public
|
|
@@ -276,13 +276,13 @@ export interface ListWirelessDeviceImportTasksResponse {
|
|
|
276
276
|
* additional results.</p>
|
|
277
277
|
* @public
|
|
278
278
|
*/
|
|
279
|
-
NextToken?: string;
|
|
279
|
+
NextToken?: string | undefined;
|
|
280
280
|
/**
|
|
281
281
|
* <p>List of import tasks and summary information of onboarding status of devices in each
|
|
282
282
|
* import task.</p>
|
|
283
283
|
* @public
|
|
284
284
|
*/
|
|
285
|
-
WirelessDeviceImportTaskList?: WirelessDeviceImportTask[];
|
|
285
|
+
WirelessDeviceImportTaskList?: WirelessDeviceImportTask[] | undefined;
|
|
286
286
|
}
|
|
287
287
|
/**
|
|
288
288
|
* @public
|
|
@@ -292,44 +292,44 @@ export interface ListWirelessDevicesRequest {
|
|
|
292
292
|
* <p>The maximum number of results to return in this operation.</p>
|
|
293
293
|
* @public
|
|
294
294
|
*/
|
|
295
|
-
MaxResults?: number;
|
|
295
|
+
MaxResults?: number | undefined;
|
|
296
296
|
/**
|
|
297
297
|
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
298
298
|
* response; otherwise <b>null</b> to receive the first set of
|
|
299
299
|
* results.</p>
|
|
300
300
|
* @public
|
|
301
301
|
*/
|
|
302
|
-
NextToken?: string;
|
|
302
|
+
NextToken?: string | undefined;
|
|
303
303
|
/**
|
|
304
304
|
* <p>A filter to list only the wireless devices that use this destination.</p>
|
|
305
305
|
* @public
|
|
306
306
|
*/
|
|
307
|
-
DestinationName?: string;
|
|
307
|
+
DestinationName?: string | undefined;
|
|
308
308
|
/**
|
|
309
309
|
* <p>A filter to list only the wireless devices that use this device profile.</p>
|
|
310
310
|
* @public
|
|
311
311
|
*/
|
|
312
|
-
DeviceProfileId?: string;
|
|
312
|
+
DeviceProfileId?: string | undefined;
|
|
313
313
|
/**
|
|
314
314
|
* <p>A filter to list only the wireless devices that use this service profile.</p>
|
|
315
315
|
* @public
|
|
316
316
|
*/
|
|
317
|
-
ServiceProfileId?: string;
|
|
317
|
+
ServiceProfileId?: string | undefined;
|
|
318
318
|
/**
|
|
319
319
|
* <p>A filter to list only the wireless devices that use this wireless device type.</p>
|
|
320
320
|
* @public
|
|
321
321
|
*/
|
|
322
|
-
WirelessDeviceType?: WirelessDeviceType;
|
|
322
|
+
WirelessDeviceType?: WirelessDeviceType | undefined;
|
|
323
323
|
/**
|
|
324
324
|
* <p>The ID of a FUOTA task.</p>
|
|
325
325
|
* @public
|
|
326
326
|
*/
|
|
327
|
-
FuotaTaskId?: string;
|
|
327
|
+
FuotaTaskId?: string | undefined;
|
|
328
328
|
/**
|
|
329
329
|
* <p>The ID of the multicast group.</p>
|
|
330
330
|
* @public
|
|
331
331
|
*/
|
|
332
|
-
MulticastGroupId?: string;
|
|
332
|
+
MulticastGroupId?: string | undefined;
|
|
333
333
|
}
|
|
334
334
|
/**
|
|
335
335
|
* <p>LoRaWAN object for list functions.</p>
|
|
@@ -340,7 +340,7 @@ export interface LoRaWANListDevice {
|
|
|
340
340
|
* <p>The DevEUI value.</p>
|
|
341
341
|
* @public
|
|
342
342
|
*/
|
|
343
|
-
DevEui?: string;
|
|
343
|
+
DevEui?: string | undefined;
|
|
344
344
|
}
|
|
345
345
|
/**
|
|
346
346
|
* <p>Sidewalk object used by list functions.</p>
|
|
@@ -351,32 +351,32 @@ export interface SidewalkListDevice {
|
|
|
351
351
|
* <p>The Sidewalk Amazon ID.</p>
|
|
352
352
|
* @public
|
|
353
353
|
*/
|
|
354
|
-
AmazonId?: string;
|
|
354
|
+
AmazonId?: string | undefined;
|
|
355
355
|
/**
|
|
356
356
|
* <p>The sidewalk device identification.</p>
|
|
357
357
|
* @public
|
|
358
358
|
*/
|
|
359
|
-
SidewalkId?: string;
|
|
359
|
+
SidewalkId?: string | undefined;
|
|
360
360
|
/**
|
|
361
361
|
* <p>The Sidewalk manufacturing series number.</p>
|
|
362
362
|
* @public
|
|
363
363
|
*/
|
|
364
|
-
SidewalkManufacturingSn?: string;
|
|
364
|
+
SidewalkManufacturingSn?: string | undefined;
|
|
365
365
|
/**
|
|
366
366
|
* <p>The sidewalk device certificates for Ed25519 and P256r1.</p>
|
|
367
367
|
* @public
|
|
368
368
|
*/
|
|
369
|
-
DeviceCertificates?: CertificateList[];
|
|
369
|
+
DeviceCertificates?: CertificateList[] | undefined;
|
|
370
370
|
/**
|
|
371
371
|
* <p>Sidewalk object used by list functions.</p>
|
|
372
372
|
* @public
|
|
373
373
|
*/
|
|
374
|
-
DeviceProfileId?: string;
|
|
374
|
+
DeviceProfileId?: string | undefined;
|
|
375
375
|
/**
|
|
376
376
|
* <p>The status of the Sidewalk devices, such as provisioned or registered.</p>
|
|
377
377
|
* @public
|
|
378
378
|
*/
|
|
379
|
-
Status?: WirelessDeviceSidewalkStatus;
|
|
379
|
+
Status?: WirelessDeviceSidewalkStatus | undefined;
|
|
380
380
|
}
|
|
381
381
|
/**
|
|
382
382
|
* <p>Information about a wireless device's operation.</p>
|
|
@@ -387,27 +387,27 @@ export interface WirelessDeviceStatistics {
|
|
|
387
387
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
Arn?: string;
|
|
390
|
+
Arn?: string | undefined;
|
|
391
391
|
/**
|
|
392
392
|
* <p>The ID of the wireless device reporting the data.</p>
|
|
393
393
|
* @public
|
|
394
394
|
*/
|
|
395
|
-
Id?: string;
|
|
395
|
+
Id?: string | undefined;
|
|
396
396
|
/**
|
|
397
397
|
* <p>The wireless device type.</p>
|
|
398
398
|
* @public
|
|
399
399
|
*/
|
|
400
|
-
Type?: WirelessDeviceType;
|
|
400
|
+
Type?: WirelessDeviceType | undefined;
|
|
401
401
|
/**
|
|
402
402
|
* <p>The name of the resource.</p>
|
|
403
403
|
* @public
|
|
404
404
|
*/
|
|
405
|
-
Name?: string;
|
|
405
|
+
Name?: string | undefined;
|
|
406
406
|
/**
|
|
407
407
|
* <p>The name of the destination to which the device is assigned.</p>
|
|
408
408
|
* @public
|
|
409
409
|
*/
|
|
410
|
-
DestinationName?: string;
|
|
410
|
+
DestinationName?: string | undefined;
|
|
411
411
|
/**
|
|
412
412
|
* <p>The date and time when the most recent uplink was received.</p>
|
|
413
413
|
* <note>
|
|
@@ -415,32 +415,32 @@ export interface WirelessDeviceStatistics {
|
|
|
415
415
|
* </note>
|
|
416
416
|
* @public
|
|
417
417
|
*/
|
|
418
|
-
LastUplinkReceivedAt?: string;
|
|
418
|
+
LastUplinkReceivedAt?: string | undefined;
|
|
419
419
|
/**
|
|
420
420
|
* <p>LoRaWAN device info.</p>
|
|
421
421
|
* @public
|
|
422
422
|
*/
|
|
423
|
-
LoRaWAN?: LoRaWANListDevice;
|
|
423
|
+
LoRaWAN?: LoRaWANListDevice | undefined;
|
|
424
424
|
/**
|
|
425
425
|
* <p>The Sidewalk account credentials.</p>
|
|
426
426
|
* @public
|
|
427
427
|
*/
|
|
428
|
-
Sidewalk?: SidewalkListDevice;
|
|
428
|
+
Sidewalk?: SidewalkListDevice | undefined;
|
|
429
429
|
/**
|
|
430
430
|
* <p>The status of a wireless device in a FUOTA task.</p>
|
|
431
431
|
* @public
|
|
432
432
|
*/
|
|
433
|
-
FuotaDeviceStatus?: FuotaDeviceStatus;
|
|
433
|
+
FuotaDeviceStatus?: FuotaDeviceStatus | undefined;
|
|
434
434
|
/**
|
|
435
435
|
* <p>The status of the wireless device in the multicast group.</p>
|
|
436
436
|
* @public
|
|
437
437
|
*/
|
|
438
|
-
MulticastDeviceStatus?: string;
|
|
438
|
+
MulticastDeviceStatus?: string | undefined;
|
|
439
439
|
/**
|
|
440
440
|
* <p>Id of the multicast group.</p>
|
|
441
441
|
* @public
|
|
442
442
|
*/
|
|
443
|
-
McGroupId?: number;
|
|
443
|
+
McGroupId?: number | undefined;
|
|
444
444
|
}
|
|
445
445
|
/**
|
|
446
446
|
* @public
|
|
@@ -450,12 +450,12 @@ export interface ListWirelessDevicesResponse {
|
|
|
450
450
|
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
NextToken?: string;
|
|
453
|
+
NextToken?: string | undefined;
|
|
454
454
|
/**
|
|
455
455
|
* <p>The ID of the wireless device.</p>
|
|
456
456
|
* @public
|
|
457
457
|
*/
|
|
458
|
-
WirelessDeviceList?: WirelessDeviceStatistics[];
|
|
458
|
+
WirelessDeviceList?: WirelessDeviceStatistics[] | undefined;
|
|
459
459
|
}
|
|
460
460
|
/**
|
|
461
461
|
* @public
|
|
@@ -467,12 +467,12 @@ export interface ListWirelessGatewaysRequest {
|
|
|
467
467
|
* results.</p>
|
|
468
468
|
* @public
|
|
469
469
|
*/
|
|
470
|
-
NextToken?: string;
|
|
470
|
+
NextToken?: string | undefined;
|
|
471
471
|
/**
|
|
472
472
|
* <p>The maximum number of results to return in this operation.</p>
|
|
473
473
|
* @public
|
|
474
474
|
*/
|
|
475
|
-
MaxResults?: number;
|
|
475
|
+
MaxResults?: number | undefined;
|
|
476
476
|
}
|
|
477
477
|
/**
|
|
478
478
|
* <p>Information about a wireless gateway's operation.</p>
|
|
@@ -483,27 +483,27 @@ export interface WirelessGatewayStatistics {
|
|
|
483
483
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
484
484
|
* @public
|
|
485
485
|
*/
|
|
486
|
-
Arn?: string;
|
|
486
|
+
Arn?: string | undefined;
|
|
487
487
|
/**
|
|
488
488
|
* <p>The ID of the wireless gateway reporting the data.</p>
|
|
489
489
|
* @public
|
|
490
490
|
*/
|
|
491
|
-
Id?: string;
|
|
491
|
+
Id?: string | undefined;
|
|
492
492
|
/**
|
|
493
493
|
* <p>The name of the resource.</p>
|
|
494
494
|
* @public
|
|
495
495
|
*/
|
|
496
|
-
Name?: string;
|
|
496
|
+
Name?: string | undefined;
|
|
497
497
|
/**
|
|
498
498
|
* <p>The description of the resource.</p>
|
|
499
499
|
* @public
|
|
500
500
|
*/
|
|
501
|
-
Description?: string;
|
|
501
|
+
Description?: string | undefined;
|
|
502
502
|
/**
|
|
503
503
|
* <p>LoRaWAN gateway info.</p>
|
|
504
504
|
* @public
|
|
505
505
|
*/
|
|
506
|
-
LoRaWAN?: LoRaWANGateway;
|
|
506
|
+
LoRaWAN?: LoRaWANGateway | undefined;
|
|
507
507
|
/**
|
|
508
508
|
* <p>The date and time when the most recent uplink was received.</p>
|
|
509
509
|
* <note>
|
|
@@ -511,7 +511,7 @@ export interface WirelessGatewayStatistics {
|
|
|
511
511
|
* </note>
|
|
512
512
|
* @public
|
|
513
513
|
*/
|
|
514
|
-
LastUplinkReceivedAt?: string;
|
|
514
|
+
LastUplinkReceivedAt?: string | undefined;
|
|
515
515
|
}
|
|
516
516
|
/**
|
|
517
517
|
* @public
|
|
@@ -521,12 +521,12 @@ export interface ListWirelessGatewaysResponse {
|
|
|
521
521
|
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
522
522
|
* @public
|
|
523
523
|
*/
|
|
524
|
-
NextToken?: string;
|
|
524
|
+
NextToken?: string | undefined;
|
|
525
525
|
/**
|
|
526
526
|
* <p>The ID of the wireless gateway.</p>
|
|
527
527
|
* @public
|
|
528
528
|
*/
|
|
529
|
-
WirelessGatewayList?: WirelessGatewayStatistics[];
|
|
529
|
+
WirelessGatewayList?: WirelessGatewayStatistics[] | undefined;
|
|
530
530
|
}
|
|
531
531
|
/**
|
|
532
532
|
* @public
|
|
@@ -547,20 +547,20 @@ export interface ListWirelessGatewayTaskDefinitionsRequest {
|
|
|
547
547
|
* <p>The maximum number of results to return in this operation.</p>
|
|
548
548
|
* @public
|
|
549
549
|
*/
|
|
550
|
-
MaxResults?: number;
|
|
550
|
+
MaxResults?: number | undefined;
|
|
551
551
|
/**
|
|
552
552
|
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
553
553
|
* response; otherwise <b>null</b> to receive the first set of
|
|
554
554
|
* results.</p>
|
|
555
555
|
* @public
|
|
556
556
|
*/
|
|
557
|
-
NextToken?: string;
|
|
557
|
+
NextToken?: string | undefined;
|
|
558
558
|
/**
|
|
559
559
|
* <p>A filter to list only the wireless gateway task definitions that use this task
|
|
560
560
|
* definition type.</p>
|
|
561
561
|
* @public
|
|
562
562
|
*/
|
|
563
|
-
TaskDefinitionType?: WirelessGatewayTaskDefinitionType;
|
|
563
|
+
TaskDefinitionType?: WirelessGatewayTaskDefinitionType | undefined;
|
|
564
564
|
}
|
|
565
565
|
/**
|
|
566
566
|
* <p>LoRaWANUpdateGatewayTaskEntry object.</p>
|
|
@@ -571,12 +571,12 @@ export interface LoRaWANUpdateGatewayTaskEntry {
|
|
|
571
571
|
* <p>The version of the gateways that should receive the update.</p>
|
|
572
572
|
* @public
|
|
573
573
|
*/
|
|
574
|
-
CurrentVersion?: LoRaWANGatewayVersion;
|
|
574
|
+
CurrentVersion?: LoRaWANGatewayVersion | undefined;
|
|
575
575
|
/**
|
|
576
576
|
* <p>The firmware version to update the gateway to.</p>
|
|
577
577
|
* @public
|
|
578
578
|
*/
|
|
579
|
-
UpdateVersion?: LoRaWANGatewayVersion;
|
|
579
|
+
UpdateVersion?: LoRaWANGatewayVersion | undefined;
|
|
580
580
|
}
|
|
581
581
|
/**
|
|
582
582
|
* <p>UpdateWirelessGatewayTaskEntry object.</p>
|
|
@@ -587,17 +587,17 @@ export interface UpdateWirelessGatewayTaskEntry {
|
|
|
587
587
|
* <p>The ID of the new wireless gateway task entry.</p>
|
|
588
588
|
* @public
|
|
589
589
|
*/
|
|
590
|
-
Id?: string;
|
|
590
|
+
Id?: string | undefined;
|
|
591
591
|
/**
|
|
592
592
|
* <p>The properties that relate to the LoRaWAN wireless gateway.</p>
|
|
593
593
|
* @public
|
|
594
594
|
*/
|
|
595
|
-
LoRaWAN?: LoRaWANUpdateGatewayTaskEntry;
|
|
595
|
+
LoRaWAN?: LoRaWANUpdateGatewayTaskEntry | undefined;
|
|
596
596
|
/**
|
|
597
597
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
598
598
|
* @public
|
|
599
599
|
*/
|
|
600
|
-
Arn?: string;
|
|
600
|
+
Arn?: string | undefined;
|
|
601
601
|
}
|
|
602
602
|
/**
|
|
603
603
|
* @public
|
|
@@ -607,12 +607,12 @@ export interface ListWirelessGatewayTaskDefinitionsResponse {
|
|
|
607
607
|
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
608
608
|
* @public
|
|
609
609
|
*/
|
|
610
|
-
NextToken?: string;
|
|
610
|
+
NextToken?: string | undefined;
|
|
611
611
|
/**
|
|
612
612
|
* <p>The list of task definitions.</p>
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
TaskDefinitions?: UpdateWirelessGatewayTaskEntry[];
|
|
615
|
+
TaskDefinitions?: UpdateWirelessGatewayTaskEntry[] | undefined;
|
|
616
616
|
}
|
|
617
617
|
/**
|
|
618
618
|
* <p>Information about the Semtech GNSS solver configuration.</p>
|
|
@@ -639,7 +639,7 @@ export interface PositionSolverConfigurations {
|
|
|
639
639
|
* <p>The Semtech GNSS solver configuration object.</p>
|
|
640
640
|
* @public
|
|
641
641
|
*/
|
|
642
|
-
SemtechGnss?: SemtechGnssConfiguration;
|
|
642
|
+
SemtechGnss?: SemtechGnssConfiguration | undefined;
|
|
643
643
|
}
|
|
644
644
|
/**
|
|
645
645
|
* @public
|
|
@@ -661,13 +661,13 @@ export interface PutPositionConfigurationRequest {
|
|
|
661
661
|
* resource.</p>
|
|
662
662
|
* @public
|
|
663
663
|
*/
|
|
664
|
-
Solvers?: PositionSolverConfigurations;
|
|
664
|
+
Solvers?: PositionSolverConfigurations | undefined;
|
|
665
665
|
/**
|
|
666
666
|
* <p>The position data destination that describes the AWS IoT rule that processes the
|
|
667
667
|
* device's position data for use by AWS IoT Core for LoRaWAN.</p>
|
|
668
668
|
* @public
|
|
669
669
|
*/
|
|
670
|
-
Destination?: string;
|
|
670
|
+
Destination?: string | undefined;
|
|
671
671
|
}
|
|
672
672
|
/**
|
|
673
673
|
* @public
|
|
@@ -744,7 +744,7 @@ export interface LoRaWANMulticastMetadata {
|
|
|
744
744
|
* <p>The Fport value.</p>
|
|
745
745
|
* @public
|
|
746
746
|
*/
|
|
747
|
-
FPort?: number;
|
|
747
|
+
FPort?: number | undefined;
|
|
748
748
|
}
|
|
749
749
|
/**
|
|
750
750
|
* <p>Wireless metadata that is to be sent to multicast group.</p>
|
|
@@ -755,7 +755,7 @@ export interface MulticastWirelessMetadata {
|
|
|
755
755
|
* <p>The metadata information of the LoRaWAN multicast group.</p>
|
|
756
756
|
* @public
|
|
757
757
|
*/
|
|
758
|
-
LoRaWAN?: LoRaWANMulticastMetadata;
|
|
758
|
+
LoRaWAN?: LoRaWANMulticastMetadata | undefined;
|
|
759
759
|
}
|
|
760
760
|
/**
|
|
761
761
|
* @public
|
|
@@ -785,7 +785,7 @@ export interface SendDataToMulticastGroupResponse {
|
|
|
785
785
|
* <p>ID of a multicast group message.</p>
|
|
786
786
|
* @public
|
|
787
787
|
*/
|
|
788
|
-
MessageId?: string;
|
|
788
|
+
MessageId?: string | undefined;
|
|
789
789
|
}
|
|
790
790
|
/**
|
|
791
791
|
* @public
|
|
@@ -810,18 +810,18 @@ export interface SidewalkSendDataToDevice {
|
|
|
810
810
|
* <p>The sequence number.</p>
|
|
811
811
|
* @public
|
|
812
812
|
*/
|
|
813
|
-
Seq?: number;
|
|
813
|
+
Seq?: number | undefined;
|
|
814
814
|
/**
|
|
815
815
|
* <p>Sidewalk device message type. Default value is
|
|
816
816
|
* <code>CUSTOM_COMMAND_ID_NOTIFY</code>.</p>
|
|
817
817
|
* @public
|
|
818
818
|
*/
|
|
819
|
-
MessageType?: MessageType;
|
|
819
|
+
MessageType?: MessageType | undefined;
|
|
820
820
|
/**
|
|
821
821
|
* <p>The duration of time in seconds to retry sending the ACK.</p>
|
|
822
822
|
* @public
|
|
823
823
|
*/
|
|
824
|
-
AckModeRetryDurationSecs?: number;
|
|
824
|
+
AckModeRetryDurationSecs?: number | undefined;
|
|
825
825
|
}
|
|
826
826
|
/**
|
|
827
827
|
* <p>WirelessMetadata object.</p>
|
|
@@ -832,12 +832,12 @@ export interface WirelessMetadata {
|
|
|
832
832
|
* <p>LoRaWAN device info.</p>
|
|
833
833
|
* @public
|
|
834
834
|
*/
|
|
835
|
-
LoRaWAN?: LoRaWANSendDataToDevice;
|
|
835
|
+
LoRaWAN?: LoRaWANSendDataToDevice | undefined;
|
|
836
836
|
/**
|
|
837
837
|
* <p>The Sidewalk account credentials.</p>
|
|
838
838
|
* @public
|
|
839
839
|
*/
|
|
840
|
-
Sidewalk?: SidewalkSendDataToDevice;
|
|
840
|
+
Sidewalk?: SidewalkSendDataToDevice | undefined;
|
|
841
841
|
}
|
|
842
842
|
/**
|
|
843
843
|
* @public
|
|
@@ -863,7 +863,7 @@ export interface SendDataToWirelessDeviceRequest {
|
|
|
863
863
|
* <p>Metadata about the message request.</p>
|
|
864
864
|
* @public
|
|
865
865
|
*/
|
|
866
|
-
WirelessMetadata?: WirelessMetadata;
|
|
866
|
+
WirelessMetadata?: WirelessMetadata | undefined;
|
|
867
867
|
}
|
|
868
868
|
/**
|
|
869
869
|
* @public
|
|
@@ -873,7 +873,7 @@ export interface SendDataToWirelessDeviceResponse {
|
|
|
873
873
|
* <p>The ID of the message sent to the wireless device.</p>
|
|
874
874
|
* @public
|
|
875
875
|
*/
|
|
876
|
-
MessageId?: string;
|
|
876
|
+
MessageId?: string | undefined;
|
|
877
877
|
}
|
|
878
878
|
/**
|
|
879
879
|
* @public
|
|
@@ -889,13 +889,13 @@ export interface StartBulkAssociateWirelessDeviceWithMulticastGroupRequest {
|
|
|
889
889
|
* disassociate process.</p>
|
|
890
890
|
* @public
|
|
891
891
|
*/
|
|
892
|
-
QueryString?: string;
|
|
892
|
+
QueryString?: string | undefined;
|
|
893
893
|
/**
|
|
894
894
|
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
895
895
|
* manage a resource.</p>
|
|
896
896
|
* @public
|
|
897
897
|
*/
|
|
898
|
-
Tags?: Tag[];
|
|
898
|
+
Tags?: Tag[] | undefined;
|
|
899
899
|
}
|
|
900
900
|
/**
|
|
901
901
|
* @public
|
|
@@ -916,13 +916,13 @@ export interface StartBulkDisassociateWirelessDeviceFromMulticastGroupRequest {
|
|
|
916
916
|
* disassociate process.</p>
|
|
917
917
|
* @public
|
|
918
918
|
*/
|
|
919
|
-
QueryString?: string;
|
|
919
|
+
QueryString?: string | undefined;
|
|
920
920
|
/**
|
|
921
921
|
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
922
922
|
* manage a resource.</p>
|
|
923
923
|
* @public
|
|
924
924
|
*/
|
|
925
|
-
Tags?: Tag[];
|
|
925
|
+
Tags?: Tag[] | undefined;
|
|
926
926
|
}
|
|
927
927
|
/**
|
|
928
928
|
* @public
|
|
@@ -938,7 +938,7 @@ export interface LoRaWANStartFuotaTask {
|
|
|
938
938
|
* <p>Start time of a FUOTA task.</p>
|
|
939
939
|
* @public
|
|
940
940
|
*/
|
|
941
|
-
StartTime?: Date;
|
|
941
|
+
StartTime?: Date | undefined;
|
|
942
942
|
}
|
|
943
943
|
/**
|
|
944
944
|
* @public
|
|
@@ -953,7 +953,7 @@ export interface StartFuotaTaskRequest {
|
|
|
953
953
|
* <p>The LoRaWAN information used to start a FUOTA task.</p>
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
LoRaWAN?: LoRaWANStartFuotaTask;
|
|
956
|
+
LoRaWAN?: LoRaWANStartFuotaTask | undefined;
|
|
957
957
|
}
|
|
958
958
|
/**
|
|
959
959
|
* @public
|
|
@@ -990,7 +990,7 @@ export interface SidewalkSingleStartImportInfo {
|
|
|
990
990
|
* task.</p>
|
|
991
991
|
* @public
|
|
992
992
|
*/
|
|
993
|
-
SidewalkManufacturingSn?: string;
|
|
993
|
+
SidewalkManufacturingSn?: string | undefined;
|
|
994
994
|
}
|
|
995
995
|
/**
|
|
996
996
|
* @public
|
|
@@ -1011,18 +1011,18 @@ export interface StartSingleWirelessDeviceImportTaskRequest {
|
|
|
1011
1011
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
ClientRequestToken?: string;
|
|
1014
|
+
ClientRequestToken?: string | undefined;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* <p>The name of the wireless device for which an import task is being started.</p>
|
|
1017
1017
|
* @public
|
|
1018
1018
|
*/
|
|
1019
|
-
DeviceName?: string;
|
|
1019
|
+
DeviceName?: string | undefined;
|
|
1020
1020
|
/**
|
|
1021
1021
|
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
1022
1022
|
* manage a resource.</p>
|
|
1023
1023
|
* @public
|
|
1024
1024
|
*/
|
|
1025
|
-
Tags?: Tag[];
|
|
1025
|
+
Tags?: Tag[] | undefined;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* <p>The Sidewalk-related parameters for importing a single wireless device.</p>
|
|
1028
1028
|
* @public
|
|
@@ -1037,12 +1037,12 @@ export interface StartSingleWirelessDeviceImportTaskResponse {
|
|
|
1037
1037
|
* <p>The import task ID.</p>
|
|
1038
1038
|
* @public
|
|
1039
1039
|
*/
|
|
1040
|
-
Id?: string;
|
|
1040
|
+
Id?: string | undefined;
|
|
1041
1041
|
/**
|
|
1042
1042
|
* <p>The ARN (Amazon Resource Name) of the import task.</p>
|
|
1043
1043
|
* @public
|
|
1044
1044
|
*/
|
|
1045
|
-
Arn?: string;
|
|
1045
|
+
Arn?: string | undefined;
|
|
1046
1046
|
}
|
|
1047
1047
|
/**
|
|
1048
1048
|
* <p>Information about an import task created for bulk provisioning.</p>
|
|
@@ -1054,13 +1054,13 @@ export interface SidewalkStartImportInfo {
|
|
|
1054
1054
|
* task.</p>
|
|
1055
1055
|
* @public
|
|
1056
1056
|
*/
|
|
1057
|
-
DeviceCreationFile?: string;
|
|
1057
|
+
DeviceCreationFile?: string | undefined;
|
|
1058
1058
|
/**
|
|
1059
1059
|
* <p>The IAM role that allows AWS IoT Wireless to access the CSV file in the S3
|
|
1060
1060
|
* bucket.</p>
|
|
1061
1061
|
* @public
|
|
1062
1062
|
*/
|
|
1063
|
-
Role?: string;
|
|
1063
|
+
Role?: string | undefined;
|
|
1064
1064
|
}
|
|
1065
1065
|
/**
|
|
1066
1066
|
* @public
|
|
@@ -1081,13 +1081,13 @@ export interface StartWirelessDeviceImportTaskRequest {
|
|
|
1081
1081
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
1082
1082
|
* @public
|
|
1083
1083
|
*/
|
|
1084
|
-
ClientRequestToken?: string;
|
|
1084
|
+
ClientRequestToken?: string | undefined;
|
|
1085
1085
|
/**
|
|
1086
1086
|
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
1087
1087
|
* manage a resource.</p>
|
|
1088
1088
|
* @public
|
|
1089
1089
|
*/
|
|
1090
|
-
Tags?: Tag[];
|
|
1090
|
+
Tags?: Tag[] | undefined;
|
|
1091
1091
|
/**
|
|
1092
1092
|
* <p>The Sidewalk-related parameters for importing wireless devices that need to be
|
|
1093
1093
|
* provisioned in bulk.</p>
|
|
@@ -1103,12 +1103,12 @@ export interface StartWirelessDeviceImportTaskResponse {
|
|
|
1103
1103
|
* <p>The import task ID.</p>
|
|
1104
1104
|
* @public
|
|
1105
1105
|
*/
|
|
1106
|
-
Id?: string;
|
|
1106
|
+
Id?: string | undefined;
|
|
1107
1107
|
/**
|
|
1108
1108
|
* <p>The ARN (Amazon Resource Name) of the import task.</p>
|
|
1109
1109
|
* @public
|
|
1110
1110
|
*/
|
|
1111
|
-
Arn?: string;
|
|
1111
|
+
Arn?: string | undefined;
|
|
1112
1112
|
}
|
|
1113
1113
|
/**
|
|
1114
1114
|
* @public
|
|
@@ -1138,12 +1138,12 @@ export interface TagResourceResponse {
|
|
|
1138
1138
|
export declare class TooManyTagsException extends __BaseException {
|
|
1139
1139
|
readonly name: "TooManyTagsException";
|
|
1140
1140
|
readonly $fault: "client";
|
|
1141
|
-
Message?: string;
|
|
1141
|
+
Message?: string | undefined;
|
|
1142
1142
|
/**
|
|
1143
1143
|
* <p>Name of the resource that exceeds maximum number of tags allowed.</p>
|
|
1144
1144
|
* @public
|
|
1145
1145
|
*/
|
|
1146
|
-
ResourceName?: string;
|
|
1146
|
+
ResourceName?: string | undefined;
|
|
1147
1147
|
/**
|
|
1148
1148
|
* @internal
|
|
1149
1149
|
*/
|
|
@@ -1167,7 +1167,7 @@ export interface TestWirelessDeviceResponse {
|
|
|
1167
1167
|
* <p>The result returned by the test.</p>
|
|
1168
1168
|
* @public
|
|
1169
1169
|
*/
|
|
1170
|
-
Result?: string;
|
|
1170
|
+
Result?: string | undefined;
|
|
1171
1171
|
}
|
|
1172
1172
|
/**
|
|
1173
1173
|
* @public
|
|
@@ -1202,22 +1202,22 @@ export interface UpdateDestinationRequest {
|
|
|
1202
1202
|
* <p>The type of value in <code>Expression</code>.</p>
|
|
1203
1203
|
* @public
|
|
1204
1204
|
*/
|
|
1205
|
-
ExpressionType?: ExpressionType;
|
|
1205
|
+
ExpressionType?: ExpressionType | undefined;
|
|
1206
1206
|
/**
|
|
1207
1207
|
* <p>The new rule name or topic rule to send messages to.</p>
|
|
1208
1208
|
* @public
|
|
1209
1209
|
*/
|
|
1210
|
-
Expression?: string;
|
|
1210
|
+
Expression?: string | undefined;
|
|
1211
1211
|
/**
|
|
1212
1212
|
* <p>A new description of the resource.</p>
|
|
1213
1213
|
* @public
|
|
1214
1214
|
*/
|
|
1215
|
-
Description?: string;
|
|
1215
|
+
Description?: string | undefined;
|
|
1216
1216
|
/**
|
|
1217
1217
|
* <p>The ARN of the IAM Role that authorizes the destination.</p>
|
|
1218
1218
|
* @public
|
|
1219
1219
|
*/
|
|
1220
|
-
RoleArn?: string;
|
|
1220
|
+
RoleArn?: string | undefined;
|
|
1221
1221
|
}
|
|
1222
1222
|
/**
|
|
1223
1223
|
* @public
|
|
@@ -1233,31 +1233,31 @@ export interface UpdateEventConfigurationByResourceTypesRequest {
|
|
|
1233
1233
|
* disabling wireless gateway topic.</p>
|
|
1234
1234
|
* @public
|
|
1235
1235
|
*/
|
|
1236
|
-
DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration;
|
|
1236
|
+
DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration | undefined;
|
|
1237
1237
|
/**
|
|
1238
1238
|
* <p>Proximity resource type event configuration object for enabling and disabling wireless
|
|
1239
1239
|
* gateway topic.</p>
|
|
1240
1240
|
* @public
|
|
1241
1241
|
*/
|
|
1242
|
-
Proximity?: ProximityResourceTypeEventConfiguration;
|
|
1242
|
+
Proximity?: ProximityResourceTypeEventConfiguration | undefined;
|
|
1243
1243
|
/**
|
|
1244
1244
|
* <p>Join resource type event configuration object for enabling and disabling wireless
|
|
1245
1245
|
* device topic.</p>
|
|
1246
1246
|
* @public
|
|
1247
1247
|
*/
|
|
1248
|
-
Join?: JoinResourceTypeEventConfiguration;
|
|
1248
|
+
Join?: JoinResourceTypeEventConfiguration | undefined;
|
|
1249
1249
|
/**
|
|
1250
1250
|
* <p>Connection status resource type event configuration object for enabling and disabling
|
|
1251
1251
|
* wireless gateway topic.</p>
|
|
1252
1252
|
* @public
|
|
1253
1253
|
*/
|
|
1254
|
-
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
|
|
1254
|
+
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration | undefined;
|
|
1255
1255
|
/**
|
|
1256
1256
|
* <p>Message delivery status resource type event configuration object for enabling and
|
|
1257
1257
|
* disabling wireless device topic.</p>
|
|
1258
1258
|
* @public
|
|
1259
1259
|
*/
|
|
1260
|
-
MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
|
|
1260
|
+
MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration | undefined;
|
|
1261
1261
|
}
|
|
1262
1262
|
/**
|
|
1263
1263
|
* @public
|
|
@@ -1277,28 +1277,28 @@ export interface UpdateFuotaTaskRequest {
|
|
|
1277
1277
|
* <p>The name of a FUOTA task.</p>
|
|
1278
1278
|
* @public
|
|
1279
1279
|
*/
|
|
1280
|
-
Name?: string;
|
|
1280
|
+
Name?: string | undefined;
|
|
1281
1281
|
/**
|
|
1282
1282
|
* <p>The description of the new resource.</p>
|
|
1283
1283
|
* @public
|
|
1284
1284
|
*/
|
|
1285
|
-
Description?: string;
|
|
1285
|
+
Description?: string | undefined;
|
|
1286
1286
|
/**
|
|
1287
1287
|
* <p>The LoRaWAN information used with a FUOTA task.</p>
|
|
1288
1288
|
* @public
|
|
1289
1289
|
*/
|
|
1290
|
-
LoRaWAN?: LoRaWANFuotaTask;
|
|
1290
|
+
LoRaWAN?: LoRaWANFuotaTask | undefined;
|
|
1291
1291
|
/**
|
|
1292
1292
|
* <p>The S3 URI points to a firmware update image that is to be used with a FUOTA
|
|
1293
1293
|
* task.</p>
|
|
1294
1294
|
* @public
|
|
1295
1295
|
*/
|
|
1296
|
-
FirmwareUpdateImage?: string;
|
|
1296
|
+
FirmwareUpdateImage?: string | undefined;
|
|
1297
1297
|
/**
|
|
1298
1298
|
* <p>The firmware update role that is to be used with a FUOTA task.</p>
|
|
1299
1299
|
* @public
|
|
1300
1300
|
*/
|
|
1301
|
-
FirmwareUpdateRole?: string;
|
|
1301
|
+
FirmwareUpdateRole?: string | undefined;
|
|
1302
1302
|
/**
|
|
1303
1303
|
* <p>The percentage of the added fragments that are redundant. For example, if the size of
|
|
1304
1304
|
* the firmware image file is 100 bytes and the fragment size is 10 bytes, with
|
|
@@ -1306,13 +1306,13 @@ export interface UpdateFuotaTaskRequest {
|
|
|
1306
1306
|
* is (100 / 10) + (100 / 10 * 50%) = 15.</p>
|
|
1307
1307
|
* @public
|
|
1308
1308
|
*/
|
|
1309
|
-
RedundancyPercent?: number;
|
|
1309
|
+
RedundancyPercent?: number | undefined;
|
|
1310
1310
|
/**
|
|
1311
1311
|
* <p>The size of each fragment in bytes. This parameter is supported only for FUOTA tasks
|
|
1312
1312
|
* with multicast groups.</p>
|
|
1313
1313
|
* @public
|
|
1314
1314
|
*/
|
|
1315
|
-
FragmentSizeBytes?: number;
|
|
1315
|
+
FragmentSizeBytes?: number | undefined;
|
|
1316
1316
|
/**
|
|
1317
1317
|
* <p>The interval for sending fragments in milliseconds, rounded to the nearest
|
|
1318
1318
|
* second.</p>
|
|
@@ -1324,7 +1324,7 @@ export interface UpdateFuotaTaskRequest {
|
|
|
1324
1324
|
* </note>
|
|
1325
1325
|
* @public
|
|
1326
1326
|
*/
|
|
1327
|
-
FragmentIntervalMS?: number;
|
|
1327
|
+
FragmentIntervalMS?: number | undefined;
|
|
1328
1328
|
}
|
|
1329
1329
|
/**
|
|
1330
1330
|
* @public
|
|
@@ -1341,17 +1341,17 @@ export interface UpdateLogLevelsByResourceTypesRequest {
|
|
|
1341
1341
|
* or to <code>INFO</code> for more detailed logs.</p>
|
|
1342
1342
|
* @public
|
|
1343
1343
|
*/
|
|
1344
|
-
DefaultLogLevel?: LogLevel;
|
|
1344
|
+
DefaultLogLevel?: LogLevel | undefined;
|
|
1345
1345
|
/**
|
|
1346
1346
|
* <p>The list of wireless device log options.</p>
|
|
1347
1347
|
* @public
|
|
1348
1348
|
*/
|
|
1349
|
-
WirelessDeviceLogOptions?: WirelessDeviceLogOption[];
|
|
1349
|
+
WirelessDeviceLogOptions?: WirelessDeviceLogOption[] | undefined;
|
|
1350
1350
|
/**
|
|
1351
1351
|
* <p>The list of wireless gateway log options.</p>
|
|
1352
1352
|
* @public
|
|
1353
1353
|
*/
|
|
1354
|
-
WirelessGatewayLogOptions?: WirelessGatewayLogOption[];
|
|
1354
|
+
WirelessGatewayLogOptions?: WirelessGatewayLogOption[] | undefined;
|
|
1355
1355
|
}
|
|
1356
1356
|
/**
|
|
1357
1357
|
* @public
|
|
@@ -1366,7 +1366,7 @@ export interface UpdateMetricConfigurationRequest {
|
|
|
1366
1366
|
* <p>The value to be used to set summary metric configuration.</p>
|
|
1367
1367
|
* @public
|
|
1368
1368
|
*/
|
|
1369
|
-
SummaryMetric?: SummaryMetricConfiguration;
|
|
1369
|
+
SummaryMetric?: SummaryMetricConfiguration | undefined;
|
|
1370
1370
|
}
|
|
1371
1371
|
/**
|
|
1372
1372
|
* @public
|
|
@@ -1386,17 +1386,17 @@ export interface UpdateMulticastGroupRequest {
|
|
|
1386
1386
|
* <p>The name of the multicast group.</p>
|
|
1387
1387
|
* @public
|
|
1388
1388
|
*/
|
|
1389
|
-
Name?: string;
|
|
1389
|
+
Name?: string | undefined;
|
|
1390
1390
|
/**
|
|
1391
1391
|
* <p>The description of the new resource.</p>
|
|
1392
1392
|
* @public
|
|
1393
1393
|
*/
|
|
1394
|
-
Description?: string;
|
|
1394
|
+
Description?: string | undefined;
|
|
1395
1395
|
/**
|
|
1396
1396
|
* <p>The LoRaWAN information that is to be used with the multicast group.</p>
|
|
1397
1397
|
* @public
|
|
1398
1398
|
*/
|
|
1399
|
-
LoRaWAN?: LoRaWANMulticast;
|
|
1399
|
+
LoRaWAN?: LoRaWANMulticast | undefined;
|
|
1400
1400
|
}
|
|
1401
1401
|
/**
|
|
1402
1402
|
* @public
|
|
@@ -1416,48 +1416,48 @@ export interface UpdateNetworkAnalyzerConfigurationRequest {
|
|
|
1416
1416
|
* <p>Trace content for your wireless devices, gateways, and multicast groups.</p>
|
|
1417
1417
|
* @public
|
|
1418
1418
|
*/
|
|
1419
|
-
TraceContent?: TraceContent;
|
|
1419
|
+
TraceContent?: TraceContent | undefined;
|
|
1420
1420
|
/**
|
|
1421
1421
|
* <p>Wireless device resources to add to the network analyzer configuration. Provide the
|
|
1422
1422
|
* <code>WirelessDeviceId</code> of the resource to add in the input array.</p>
|
|
1423
1423
|
* @public
|
|
1424
1424
|
*/
|
|
1425
|
-
WirelessDevicesToAdd?: string[];
|
|
1425
|
+
WirelessDevicesToAdd?: string[] | undefined;
|
|
1426
1426
|
/**
|
|
1427
1427
|
* <p>Wireless device resources to remove from the network analyzer configuration. Provide
|
|
1428
1428
|
* the <code>WirelessDeviceId</code> of the resources to remove in the input array.</p>
|
|
1429
1429
|
* @public
|
|
1430
1430
|
*/
|
|
1431
|
-
WirelessDevicesToRemove?: string[];
|
|
1431
|
+
WirelessDevicesToRemove?: string[] | undefined;
|
|
1432
1432
|
/**
|
|
1433
1433
|
* <p>Wireless gateway resources to add to the network analyzer configuration. Provide the
|
|
1434
1434
|
* <code>WirelessGatewayId</code> of the resource to add in the input array.</p>
|
|
1435
1435
|
* @public
|
|
1436
1436
|
*/
|
|
1437
|
-
WirelessGatewaysToAdd?: string[];
|
|
1437
|
+
WirelessGatewaysToAdd?: string[] | undefined;
|
|
1438
1438
|
/**
|
|
1439
1439
|
* <p>Wireless gateway resources to remove from the network analyzer configuration. Provide
|
|
1440
1440
|
* the <code>WirelessGatewayId</code> of the resources to remove in the input array.</p>
|
|
1441
1441
|
* @public
|
|
1442
1442
|
*/
|
|
1443
|
-
WirelessGatewaysToRemove?: string[];
|
|
1443
|
+
WirelessGatewaysToRemove?: string[] | undefined;
|
|
1444
1444
|
/**
|
|
1445
1445
|
* <p>The description of the new resource.</p>
|
|
1446
1446
|
* @public
|
|
1447
1447
|
*/
|
|
1448
|
-
Description?: string;
|
|
1448
|
+
Description?: string | undefined;
|
|
1449
1449
|
/**
|
|
1450
1450
|
* <p>Multicast group resources to add to the network analyzer configuration. Provide the
|
|
1451
1451
|
* <code>MulticastGroupId</code> of the resource to add in the input array.</p>
|
|
1452
1452
|
* @public
|
|
1453
1453
|
*/
|
|
1454
|
-
MulticastGroupsToAdd?: string[];
|
|
1454
|
+
MulticastGroupsToAdd?: string[] | undefined;
|
|
1455
1455
|
/**
|
|
1456
1456
|
* <p>Multicast group resources to remove from the network analyzer configuration. Provide
|
|
1457
1457
|
* the <code>MulticastGroupId</code> of the resources to remove in the input array.</p>
|
|
1458
1458
|
* @public
|
|
1459
1459
|
*/
|
|
1460
|
-
MulticastGroupsToRemove?: string[];
|
|
1460
|
+
MulticastGroupsToRemove?: string[] | undefined;
|
|
1461
1461
|
}
|
|
1462
1462
|
/**
|
|
1463
1463
|
* @public
|
|
@@ -1473,7 +1473,7 @@ export interface SidewalkUpdateAccount {
|
|
|
1473
1473
|
* <p>The new Sidewalk application server private key.</p>
|
|
1474
1474
|
* @public
|
|
1475
1475
|
*/
|
|
1476
|
-
AppServerPrivateKey?: string;
|
|
1476
|
+
AppServerPrivateKey?: string | undefined;
|
|
1477
1477
|
}
|
|
1478
1478
|
/**
|
|
1479
1479
|
* @public
|
|
@@ -1545,32 +1545,32 @@ export interface UpdateResourceEventConfigurationRequest {
|
|
|
1545
1545
|
* </p>
|
|
1546
1546
|
* @public
|
|
1547
1547
|
*/
|
|
1548
|
-
PartnerType?: EventNotificationPartnerType;
|
|
1548
|
+
PartnerType?: EventNotificationPartnerType | undefined;
|
|
1549
1549
|
/**
|
|
1550
1550
|
* <p>Event configuration for the device registration state event.</p>
|
|
1551
1551
|
* @public
|
|
1552
1552
|
*/
|
|
1553
|
-
DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
|
|
1553
|
+
DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration | undefined;
|
|
1554
1554
|
/**
|
|
1555
1555
|
* <p>Event configuration for the proximity event.</p>
|
|
1556
1556
|
* @public
|
|
1557
1557
|
*/
|
|
1558
|
-
Proximity?: ProximityEventConfiguration;
|
|
1558
|
+
Proximity?: ProximityEventConfiguration | undefined;
|
|
1559
1559
|
/**
|
|
1560
1560
|
* <p>Event configuration for the join event.</p>
|
|
1561
1561
|
* @public
|
|
1562
1562
|
*/
|
|
1563
|
-
Join?: JoinEventConfiguration;
|
|
1563
|
+
Join?: JoinEventConfiguration | undefined;
|
|
1564
1564
|
/**
|
|
1565
1565
|
* <p>Event configuration for the connection status event.</p>
|
|
1566
1566
|
* @public
|
|
1567
1567
|
*/
|
|
1568
|
-
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
1568
|
+
ConnectionStatus?: ConnectionStatusEventConfiguration | undefined;
|
|
1569
1569
|
/**
|
|
1570
1570
|
* <p>Event configuration for the message delivery status event.</p>
|
|
1571
1571
|
* @public
|
|
1572
1572
|
*/
|
|
1573
|
-
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
|
1573
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration | undefined;
|
|
1574
1574
|
}
|
|
1575
1575
|
/**
|
|
1576
1576
|
* @public
|
|
@@ -1600,7 +1600,7 @@ export interface UpdateResourcePositionRequest {
|
|
|
1600
1600
|
* structures. For more information, see <a href="https://geojson.org/">GeoJSON</a>.</p>
|
|
1601
1601
|
* @public
|
|
1602
1602
|
*/
|
|
1603
|
-
GeoJsonPayload?: Uint8Array;
|
|
1603
|
+
GeoJsonPayload?: Uint8Array | undefined;
|
|
1604
1604
|
}
|
|
1605
1605
|
/**
|
|
1606
1606
|
* @public
|
|
@@ -1616,7 +1616,7 @@ export interface UpdateAbpV1_0_x {
|
|
|
1616
1616
|
* <p>The FCnt init value.</p>
|
|
1617
1617
|
* @public
|
|
1618
1618
|
*/
|
|
1619
|
-
FCntStart?: number;
|
|
1619
|
+
FCntStart?: number | undefined;
|
|
1620
1620
|
}
|
|
1621
1621
|
/**
|
|
1622
1622
|
* <p>ABP device object for LoRaWAN specification v1.1</p>
|
|
@@ -1627,7 +1627,7 @@ export interface UpdateAbpV1_1 {
|
|
|
1627
1627
|
* <p>The FCnt init value.</p>
|
|
1628
1628
|
* @public
|
|
1629
1629
|
*/
|
|
1630
|
-
FCntStart?: number;
|
|
1630
|
+
FCntStart?: number | undefined;
|
|
1631
1631
|
}
|
|
1632
1632
|
/**
|
|
1633
1633
|
* <p>Object for updating the FPorts information.</p>
|
|
@@ -1638,13 +1638,13 @@ export interface UpdateFPorts {
|
|
|
1638
1638
|
* <p>Positioning FPorts for the ClockSync, Stream, and GNSS functions.</p>
|
|
1639
1639
|
* @public
|
|
1640
1640
|
*/
|
|
1641
|
-
Positioning?: Positioning;
|
|
1641
|
+
Positioning?: Positioning | undefined;
|
|
1642
1642
|
/**
|
|
1643
1643
|
* <p>LoRaWAN application, which can be used for geolocation by activating
|
|
1644
1644
|
* positioning.</p>
|
|
1645
1645
|
* @public
|
|
1646
1646
|
*/
|
|
1647
|
-
Applications?: ApplicationConfig[];
|
|
1647
|
+
Applications?: ApplicationConfig[] | undefined;
|
|
1648
1648
|
}
|
|
1649
1649
|
/**
|
|
1650
1650
|
* <p>LoRaWAN object for update functions.</p>
|
|
@@ -1655,27 +1655,27 @@ export interface LoRaWANUpdateDevice {
|
|
|
1655
1655
|
* <p>The ID of the device profile for the wireless device.</p>
|
|
1656
1656
|
* @public
|
|
1657
1657
|
*/
|
|
1658
|
-
DeviceProfileId?: string;
|
|
1658
|
+
DeviceProfileId?: string | undefined;
|
|
1659
1659
|
/**
|
|
1660
1660
|
* <p>The ID of the service profile.</p>
|
|
1661
1661
|
* @public
|
|
1662
1662
|
*/
|
|
1663
|
-
ServiceProfileId?: string;
|
|
1663
|
+
ServiceProfileId?: string | undefined;
|
|
1664
1664
|
/**
|
|
1665
1665
|
* <p>ABP device object for update APIs for v1.1</p>
|
|
1666
1666
|
* @public
|
|
1667
1667
|
*/
|
|
1668
|
-
AbpV1_1?: UpdateAbpV1_1;
|
|
1668
|
+
AbpV1_1?: UpdateAbpV1_1 | undefined;
|
|
1669
1669
|
/**
|
|
1670
1670
|
* <p>ABP device object for update APIs for v1.0.x</p>
|
|
1671
1671
|
* @public
|
|
1672
1672
|
*/
|
|
1673
|
-
AbpV1_0_x?: UpdateAbpV1_0_x;
|
|
1673
|
+
AbpV1_0_x?: UpdateAbpV1_0_x | undefined;
|
|
1674
1674
|
/**
|
|
1675
1675
|
* <p>FPorts object for the positioning information of the device.</p>
|
|
1676
1676
|
* @public
|
|
1677
1677
|
*/
|
|
1678
|
-
FPorts?: UpdateFPorts;
|
|
1678
|
+
FPorts?: UpdateFPorts | undefined;
|
|
1679
1679
|
}
|
|
1680
1680
|
/**
|
|
1681
1681
|
* @public
|
|
@@ -1690,28 +1690,28 @@ export interface UpdateWirelessDeviceRequest {
|
|
|
1690
1690
|
* <p>The name of the new destination for the device.</p>
|
|
1691
1691
|
* @public
|
|
1692
1692
|
*/
|
|
1693
|
-
DestinationName?: string;
|
|
1693
|
+
DestinationName?: string | undefined;
|
|
1694
1694
|
/**
|
|
1695
1695
|
* <p>The new name of the resource.</p>
|
|
1696
1696
|
* @public
|
|
1697
1697
|
*/
|
|
1698
|
-
Name?: string;
|
|
1698
|
+
Name?: string | undefined;
|
|
1699
1699
|
/**
|
|
1700
1700
|
* <p>A new description of the resource.</p>
|
|
1701
1701
|
* @public
|
|
1702
1702
|
*/
|
|
1703
|
-
Description?: string;
|
|
1703
|
+
Description?: string | undefined;
|
|
1704
1704
|
/**
|
|
1705
1705
|
* <p>The updated wireless device's configuration.</p>
|
|
1706
1706
|
* @public
|
|
1707
1707
|
*/
|
|
1708
|
-
LoRaWAN?: LoRaWANUpdateDevice;
|
|
1708
|
+
LoRaWAN?: LoRaWANUpdateDevice | undefined;
|
|
1709
1709
|
/**
|
|
1710
1710
|
* <p>FPort values for the GNSS, stream, and ClockSync functions of the positioning
|
|
1711
1711
|
* information.</p>
|
|
1712
1712
|
* @public
|
|
1713
1713
|
*/
|
|
1714
|
-
Positioning?: PositioningConfigStatus;
|
|
1714
|
+
Positioning?: PositioningConfigStatus | undefined;
|
|
1715
1715
|
}
|
|
1716
1716
|
/**
|
|
1717
1717
|
* @public
|
|
@@ -1728,7 +1728,7 @@ export interface SidewalkUpdateImportInfo {
|
|
|
1728
1728
|
* existing import task.</p>
|
|
1729
1729
|
* @public
|
|
1730
1730
|
*/
|
|
1731
|
-
DeviceCreationFile?: string;
|
|
1731
|
+
DeviceCreationFile?: string | undefined;
|
|
1732
1732
|
}
|
|
1733
1733
|
/**
|
|
1734
1734
|
* @public
|
|
@@ -1763,28 +1763,28 @@ export interface UpdateWirelessGatewayRequest {
|
|
|
1763
1763
|
* <p>The new name of the resource.</p>
|
|
1764
1764
|
* @public
|
|
1765
1765
|
*/
|
|
1766
|
-
Name?: string;
|
|
1766
|
+
Name?: string | undefined;
|
|
1767
1767
|
/**
|
|
1768
1768
|
* <p>A new description of the resource.</p>
|
|
1769
1769
|
* @public
|
|
1770
1770
|
*/
|
|
1771
|
-
Description?: string;
|
|
1771
|
+
Description?: string | undefined;
|
|
1772
1772
|
/**
|
|
1773
1773
|
* <p>A list of JoinEuiRange used by LoRa gateways to filter LoRa frames.</p>
|
|
1774
1774
|
* @public
|
|
1775
1775
|
*/
|
|
1776
|
-
JoinEuiFilters?: string[][];
|
|
1776
|
+
JoinEuiFilters?: string[][] | undefined;
|
|
1777
1777
|
/**
|
|
1778
1778
|
* <p>A list of NetId values that are used by LoRa gateways to filter the uplink
|
|
1779
1779
|
* frames.</p>
|
|
1780
1780
|
* @public
|
|
1781
1781
|
*/
|
|
1782
|
-
NetIdFilters?: string[];
|
|
1782
|
+
NetIdFilters?: string[] | undefined;
|
|
1783
1783
|
/**
|
|
1784
1784
|
* <p>The MaxEIRP value.</p>
|
|
1785
1785
|
* @public
|
|
1786
1786
|
*/
|
|
1787
|
-
MaxEirp?: number;
|
|
1787
|
+
MaxEirp?: number | undefined;
|
|
1788
1788
|
}
|
|
1789
1789
|
/**
|
|
1790
1790
|
* @public
|