aws-sdk 2.1343.0 → 2.1344.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/CHANGELOG.md +11 -1
- package/README.md +1 -1
- package/apis/athena-2017-05-18.min.json +6 -0
- package/apis/connect-2017-08-08.min.json +2 -1
- package/apis/iotwireless-2020-11-22.min.json +516 -130
- package/apis/medialive-2017-10-14.min.json +16 -4
- package/apis/securityhub-2018-10-26.min.json +346 -251
- package/apis/servicecatalog-appregistry-2020-06-24.min.json +12 -9
- package/apis/voice-id-2021-09-27.min.json +379 -93
- package/apis/voice-id-2021-09-27.paginators.json +12 -0
- package/clients/athena.d.ts +40 -32
- package/clients/chimesdkvoice.d.ts +1623 -183
- package/clients/connect.d.ts +8 -4
- package/clients/connectparticipant.d.ts +3 -3
- package/clients/iotwireless.d.ts +456 -2
- package/clients/medialive.d.ts +17 -1
- package/clients/sagemaker.d.ts +17 -17
- package/clients/securityhub.d.ts +199 -10
- package/clients/servicecatalogappregistry.d.ts +36 -23
- package/clients/voiceid.d.ts +400 -59
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +9 -9
- package/dist/aws-sdk.js +11 -4
- package/dist/aws-sdk.min.js +87 -87
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/iotwireless.d.ts
CHANGED
|
@@ -219,6 +219,14 @@ declare class IoTWireless extends Service {
|
|
|
219
219
|
* Deletes a wireless device.
|
|
220
220
|
*/
|
|
221
221
|
deleteWirelessDevice(callback?: (err: AWSError, data: IoTWireless.Types.DeleteWirelessDeviceResponse) => void): Request<IoTWireless.Types.DeleteWirelessDeviceResponse, AWSError>;
|
|
222
|
+
/**
|
|
223
|
+
* Delete an import task.
|
|
224
|
+
*/
|
|
225
|
+
deleteWirelessDeviceImportTask(params: IoTWireless.Types.DeleteWirelessDeviceImportTaskRequest, callback?: (err: AWSError, data: IoTWireless.Types.DeleteWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.DeleteWirelessDeviceImportTaskResponse, AWSError>;
|
|
226
|
+
/**
|
|
227
|
+
* Delete an import task.
|
|
228
|
+
*/
|
|
229
|
+
deleteWirelessDeviceImportTask(callback?: (err: AWSError, data: IoTWireless.Types.DeleteWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.DeleteWirelessDeviceImportTaskResponse, AWSError>;
|
|
222
230
|
/**
|
|
223
231
|
* Deletes a wireless gateway.
|
|
224
232
|
*/
|
|
@@ -243,6 +251,14 @@ declare class IoTWireless extends Service {
|
|
|
243
251
|
* Deletes a wireless gateway task definition. Deleting this task definition does not affect tasks that are currently in progress.
|
|
244
252
|
*/
|
|
245
253
|
deleteWirelessGatewayTaskDefinition(callback?: (err: AWSError, data: IoTWireless.Types.DeleteWirelessGatewayTaskDefinitionResponse) => void): Request<IoTWireless.Types.DeleteWirelessGatewayTaskDefinitionResponse, AWSError>;
|
|
254
|
+
/**
|
|
255
|
+
* Deregister a wireless device from AWS IoT Wireless.
|
|
256
|
+
*/
|
|
257
|
+
deregisterWirelessDevice(params: IoTWireless.Types.DeregisterWirelessDeviceRequest, callback?: (err: AWSError, data: IoTWireless.Types.DeregisterWirelessDeviceResponse) => void): Request<IoTWireless.Types.DeregisterWirelessDeviceResponse, AWSError>;
|
|
258
|
+
/**
|
|
259
|
+
* Deregister a wireless device from AWS IoT Wireless.
|
|
260
|
+
*/
|
|
261
|
+
deregisterWirelessDevice(callback?: (err: AWSError, data: IoTWireless.Types.DeregisterWirelessDeviceResponse) => void): Request<IoTWireless.Types.DeregisterWirelessDeviceResponse, AWSError>;
|
|
246
262
|
/**
|
|
247
263
|
* Disassociates your AWS account from a partner account. If PartnerAccountId and PartnerType are null, disassociates your AWS account from all partner accounts.
|
|
248
264
|
*/
|
|
@@ -443,6 +459,14 @@ declare class IoTWireless extends Service {
|
|
|
443
459
|
* Gets information about a wireless device.
|
|
444
460
|
*/
|
|
445
461
|
getWirelessDevice(callback?: (err: AWSError, data: IoTWireless.Types.GetWirelessDeviceResponse) => void): Request<IoTWireless.Types.GetWirelessDeviceResponse, AWSError>;
|
|
462
|
+
/**
|
|
463
|
+
* Get information about an import task and count of device onboarding summary information for the import task.
|
|
464
|
+
*/
|
|
465
|
+
getWirelessDeviceImportTask(params: IoTWireless.Types.GetWirelessDeviceImportTaskRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.GetWirelessDeviceImportTaskResponse, AWSError>;
|
|
466
|
+
/**
|
|
467
|
+
* Get information about an import task and count of device onboarding summary information for the import task.
|
|
468
|
+
*/
|
|
469
|
+
getWirelessDeviceImportTask(callback?: (err: AWSError, data: IoTWireless.Types.GetWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.GetWirelessDeviceImportTaskResponse, AWSError>;
|
|
446
470
|
/**
|
|
447
471
|
* Gets operating information about a wireless device.
|
|
448
472
|
*/
|
|
@@ -515,6 +539,14 @@ declare class IoTWireless extends Service {
|
|
|
515
539
|
* Lists the device profiles registered to your AWS account.
|
|
516
540
|
*/
|
|
517
541
|
listDeviceProfiles(callback?: (err: AWSError, data: IoTWireless.Types.ListDeviceProfilesResponse) => void): Request<IoTWireless.Types.ListDeviceProfilesResponse, AWSError>;
|
|
542
|
+
/**
|
|
543
|
+
* List the Sidewalk devices in an import task and their onboarding status.
|
|
544
|
+
*/
|
|
545
|
+
listDevicesForWirelessDeviceImportTask(params: IoTWireless.Types.ListDevicesForWirelessDeviceImportTaskRequest, callback?: (err: AWSError, data: IoTWireless.Types.ListDevicesForWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.ListDevicesForWirelessDeviceImportTaskResponse, AWSError>;
|
|
546
|
+
/**
|
|
547
|
+
* List the Sidewalk devices in an import task and their onboarding status.
|
|
548
|
+
*/
|
|
549
|
+
listDevicesForWirelessDeviceImportTask(callback?: (err: AWSError, data: IoTWireless.Types.ListDevicesForWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.ListDevicesForWirelessDeviceImportTaskResponse, AWSError>;
|
|
518
550
|
/**
|
|
519
551
|
* List event configurations where at least one event topic has been enabled.
|
|
520
552
|
*/
|
|
@@ -595,6 +627,14 @@ declare class IoTWireless extends Service {
|
|
|
595
627
|
* Lists the tags (metadata) you have assigned to the resource.
|
|
596
628
|
*/
|
|
597
629
|
listTagsForResource(callback?: (err: AWSError, data: IoTWireless.Types.ListTagsForResourceResponse) => void): Request<IoTWireless.Types.ListTagsForResourceResponse, AWSError>;
|
|
630
|
+
/**
|
|
631
|
+
* List wireless devices that have been added to an import task.
|
|
632
|
+
*/
|
|
633
|
+
listWirelessDeviceImportTasks(params: IoTWireless.Types.ListWirelessDeviceImportTasksRequest, callback?: (err: AWSError, data: IoTWireless.Types.ListWirelessDeviceImportTasksResponse) => void): Request<IoTWireless.Types.ListWirelessDeviceImportTasksResponse, AWSError>;
|
|
634
|
+
/**
|
|
635
|
+
* List wireless devices that have been added to an import task.
|
|
636
|
+
*/
|
|
637
|
+
listWirelessDeviceImportTasks(callback?: (err: AWSError, data: IoTWireless.Types.ListWirelessDeviceImportTasksResponse) => void): Request<IoTWireless.Types.ListWirelessDeviceImportTasksResponse, AWSError>;
|
|
598
638
|
/**
|
|
599
639
|
* Lists the wireless devices registered to your AWS account.
|
|
600
640
|
*/
|
|
@@ -699,6 +739,22 @@ declare class IoTWireless extends Service {
|
|
|
699
739
|
* Starts a multicast group session.
|
|
700
740
|
*/
|
|
701
741
|
startMulticastGroupSession(callback?: (err: AWSError, data: IoTWireless.Types.StartMulticastGroupSessionResponse) => void): Request<IoTWireless.Types.StartMulticastGroupSessionResponse, AWSError>;
|
|
742
|
+
/**
|
|
743
|
+
* Start import task for a single wireless device.
|
|
744
|
+
*/
|
|
745
|
+
startSingleWirelessDeviceImportTask(params: IoTWireless.Types.StartSingleWirelessDeviceImportTaskRequest, callback?: (err: AWSError, data: IoTWireless.Types.StartSingleWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.StartSingleWirelessDeviceImportTaskResponse, AWSError>;
|
|
746
|
+
/**
|
|
747
|
+
* Start import task for a single wireless device.
|
|
748
|
+
*/
|
|
749
|
+
startSingleWirelessDeviceImportTask(callback?: (err: AWSError, data: IoTWireless.Types.StartSingleWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.StartSingleWirelessDeviceImportTaskResponse, AWSError>;
|
|
750
|
+
/**
|
|
751
|
+
* Start import task for provisioning Sidewalk devices in bulk using an S3 CSV file.
|
|
752
|
+
*/
|
|
753
|
+
startWirelessDeviceImportTask(params: IoTWireless.Types.StartWirelessDeviceImportTaskRequest, callback?: (err: AWSError, data: IoTWireless.Types.StartWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.StartWirelessDeviceImportTaskResponse, AWSError>;
|
|
754
|
+
/**
|
|
755
|
+
* Start import task for provisioning Sidewalk devices in bulk using an S3 CSV file.
|
|
756
|
+
*/
|
|
757
|
+
startWirelessDeviceImportTask(callback?: (err: AWSError, data: IoTWireless.Types.StartWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.StartWirelessDeviceImportTaskResponse, AWSError>;
|
|
702
758
|
/**
|
|
703
759
|
* Adds a tag to a resource.
|
|
704
760
|
*/
|
|
@@ -811,6 +867,14 @@ declare class IoTWireless extends Service {
|
|
|
811
867
|
* Updates properties of a wireless device.
|
|
812
868
|
*/
|
|
813
869
|
updateWirelessDevice(callback?: (err: AWSError, data: IoTWireless.Types.UpdateWirelessDeviceResponse) => void): Request<IoTWireless.Types.UpdateWirelessDeviceResponse, AWSError>;
|
|
870
|
+
/**
|
|
871
|
+
* Update an import task to add more devices to the task.
|
|
872
|
+
*/
|
|
873
|
+
updateWirelessDeviceImportTask(params: IoTWireless.Types.UpdateWirelessDeviceImportTaskRequest, callback?: (err: AWSError, data: IoTWireless.Types.UpdateWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.UpdateWirelessDeviceImportTaskResponse, AWSError>;
|
|
874
|
+
/**
|
|
875
|
+
* Update an import task to add more devices to the task.
|
|
876
|
+
*/
|
|
877
|
+
updateWirelessDeviceImportTask(callback?: (err: AWSError, data: IoTWireless.Types.UpdateWirelessDeviceImportTaskResponse) => void): Request<IoTWireless.Types.UpdateWirelessDeviceImportTaskResponse, AWSError>;
|
|
814
878
|
/**
|
|
815
879
|
* Updates properties of a wireless gateway.
|
|
816
880
|
*/
|
|
@@ -864,6 +928,7 @@ declare namespace IoTWireless {
|
|
|
864
928
|
export type AddGwMetadata = boolean;
|
|
865
929
|
export type AmazonId = string;
|
|
866
930
|
export type AmazonResourceName = string;
|
|
931
|
+
export type ApId = string;
|
|
867
932
|
export type AppEui = string;
|
|
868
933
|
export type AppKey = string;
|
|
869
934
|
export type AppSKey = string;
|
|
@@ -880,6 +945,7 @@ declare namespace IoTWireless {
|
|
|
880
945
|
DestinationName?: DestinationName;
|
|
881
946
|
}
|
|
882
947
|
export type ApplicationConfigType = "SemtechGeolocation"|string;
|
|
948
|
+
export type ApplicationServerPublicKey = string;
|
|
883
949
|
export type Applications = ApplicationConfig[];
|
|
884
950
|
export type AssistPosition = Coordinate[];
|
|
885
951
|
export interface AssociateAwsAccountWithPartnerAccountRequest {
|
|
@@ -1174,6 +1240,10 @@ declare namespace IoTWireless {
|
|
|
1174
1240
|
* Each resource must have a unique client request token. If you try to create a new resource with the same token as a resource that already exists, an exception occurs. If you omit this value, AWS SDKs will automatically generate a unique client request.
|
|
1175
1241
|
*/
|
|
1176
1242
|
ClientRequestToken?: ClientRequestToken;
|
|
1243
|
+
/**
|
|
1244
|
+
* The Sidewalk-related information for creating the Sidewalk device profile.
|
|
1245
|
+
*/
|
|
1246
|
+
Sidewalk?: SidewalkCreateDeviceProfile;
|
|
1177
1247
|
}
|
|
1178
1248
|
export interface CreateDeviceProfileResponse {
|
|
1179
1249
|
/**
|
|
@@ -1301,6 +1371,10 @@ declare namespace IoTWireless {
|
|
|
1301
1371
|
* FPort values for the GNSS, stream, and ClockSync functions of the positioning information.
|
|
1302
1372
|
*/
|
|
1303
1373
|
Positioning?: PositioningConfigStatus;
|
|
1374
|
+
/**
|
|
1375
|
+
* The device configuration information to use to create the Sidewalk device.
|
|
1376
|
+
*/
|
|
1377
|
+
Sidewalk?: SidewalkCreateWirelessDevice;
|
|
1304
1378
|
}
|
|
1305
1379
|
export interface CreateWirelessDeviceResponse {
|
|
1306
1380
|
/**
|
|
@@ -1398,6 +1472,31 @@ declare namespace IoTWireless {
|
|
|
1398
1472
|
}
|
|
1399
1473
|
export type CreatedAt = Date;
|
|
1400
1474
|
export type CreationDate = Date;
|
|
1475
|
+
export type CreationTime = Date;
|
|
1476
|
+
export type DakCertificateId = string;
|
|
1477
|
+
export interface DakCertificateMetadata {
|
|
1478
|
+
/**
|
|
1479
|
+
* The certificate ID for the DAK.
|
|
1480
|
+
*/
|
|
1481
|
+
CertificateId: DakCertificateId;
|
|
1482
|
+
/**
|
|
1483
|
+
* The maximum number of signatures that the DAK can sign. A value of -1 indicates that there's no device limit.
|
|
1484
|
+
*/
|
|
1485
|
+
MaxAllowedSignature?: MaxAllowedSignature;
|
|
1486
|
+
/**
|
|
1487
|
+
* Whether factory support has been enabled.
|
|
1488
|
+
*/
|
|
1489
|
+
FactorySupport?: FactorySupport;
|
|
1490
|
+
/**
|
|
1491
|
+
* The advertised product ID (APID) that's used for pre-production and production applications.
|
|
1492
|
+
*/
|
|
1493
|
+
ApId?: ApId;
|
|
1494
|
+
/**
|
|
1495
|
+
* The device type ID that's used for prototyping applications.
|
|
1496
|
+
*/
|
|
1497
|
+
DeviceTypeId?: DeviceTypeId;
|
|
1498
|
+
}
|
|
1499
|
+
export type DakCertificateMetadataList = DakCertificateMetadata[];
|
|
1401
1500
|
export interface DeleteDestinationRequest {
|
|
1402
1501
|
/**
|
|
1403
1502
|
* The name of the resource to delete.
|
|
@@ -1453,6 +1552,14 @@ declare namespace IoTWireless {
|
|
|
1453
1552
|
}
|
|
1454
1553
|
export interface DeleteServiceProfileResponse {
|
|
1455
1554
|
}
|
|
1555
|
+
export interface DeleteWirelessDeviceImportTaskRequest {
|
|
1556
|
+
/**
|
|
1557
|
+
* The unique identifier of the import task to be deleted.
|
|
1558
|
+
*/
|
|
1559
|
+
Id: ImportTaskId;
|
|
1560
|
+
}
|
|
1561
|
+
export interface DeleteWirelessDeviceImportTaskResponse {
|
|
1562
|
+
}
|
|
1456
1563
|
export interface DeleteWirelessDeviceRequest {
|
|
1457
1564
|
/**
|
|
1458
1565
|
* The ID of the resource to delete.
|
|
@@ -1485,6 +1592,18 @@ declare namespace IoTWireless {
|
|
|
1485
1592
|
}
|
|
1486
1593
|
export interface DeleteWirelessGatewayTaskResponse {
|
|
1487
1594
|
}
|
|
1595
|
+
export interface DeregisterWirelessDeviceRequest {
|
|
1596
|
+
/**
|
|
1597
|
+
* The identifier of the wireless device to deregister from AWS IoT Wireless.
|
|
1598
|
+
*/
|
|
1599
|
+
Identifier: Identifier;
|
|
1600
|
+
/**
|
|
1601
|
+
* The type of wireless device to deregister from AWS IoT Wireless, which can be LoRaWAN or Sidewalk.
|
|
1602
|
+
*/
|
|
1603
|
+
WirelessDeviceType?: WirelessDeviceType;
|
|
1604
|
+
}
|
|
1605
|
+
export interface DeregisterWirelessDeviceResponse {
|
|
1606
|
+
}
|
|
1488
1607
|
export type Description = string;
|
|
1489
1608
|
export type DestinationArn = string;
|
|
1490
1609
|
export type DestinationList = Destinations[];
|
|
@@ -1519,6 +1638,9 @@ declare namespace IoTWireless {
|
|
|
1519
1638
|
export type DevEui = string;
|
|
1520
1639
|
export type DevStatusReqFreq = number;
|
|
1521
1640
|
export type DeviceCertificateList = CertificateList[];
|
|
1641
|
+
export type DeviceCreationFile = string;
|
|
1642
|
+
export type DeviceCreationFileList = DeviceCreationFile[];
|
|
1643
|
+
export type DeviceName = string;
|
|
1522
1644
|
export interface DeviceProfile {
|
|
1523
1645
|
/**
|
|
1524
1646
|
* The Amazon Resource Name of the resource.
|
|
@@ -1537,6 +1659,7 @@ declare namespace IoTWireless {
|
|
|
1537
1659
|
export type DeviceProfileId = string;
|
|
1538
1660
|
export type DeviceProfileList = DeviceProfile[];
|
|
1539
1661
|
export type DeviceProfileName = string;
|
|
1662
|
+
export type DeviceProfileType = "Sidewalk"|"LoRaWAN"|string;
|
|
1540
1663
|
export interface DeviceRegistrationStateEventConfiguration {
|
|
1541
1664
|
/**
|
|
1542
1665
|
* Device registration state event configuration object for enabling or disabling Sidewalk related event topics.
|
|
@@ -1554,6 +1677,7 @@ declare namespace IoTWireless {
|
|
|
1554
1677
|
Sidewalk?: SidewalkResourceTypeEventConfiguration;
|
|
1555
1678
|
}
|
|
1556
1679
|
export type DeviceState = "Provisioned"|"RegisteredNotSeen"|"RegisteredReachable"|"RegisteredUnreachable"|string;
|
|
1680
|
+
export type DeviceTypeId = string;
|
|
1557
1681
|
export interface DisassociateAwsAccountFromPartnerAccountRequest {
|
|
1558
1682
|
/**
|
|
1559
1683
|
* The partner account ID to disassociate from the AWS account.
|
|
@@ -1701,6 +1825,7 @@ declare namespace IoTWireless {
|
|
|
1701
1825
|
Applications?: Applications;
|
|
1702
1826
|
}
|
|
1703
1827
|
export type FactoryPresetFreqsList = PresetFreq[];
|
|
1828
|
+
export type FactorySupport = boolean;
|
|
1704
1829
|
export type Fingerprint = string;
|
|
1705
1830
|
export type FirmwareUpdateImage = string;
|
|
1706
1831
|
export type FirmwareUpdateRole = string;
|
|
@@ -1788,6 +1913,10 @@ declare namespace IoTWireless {
|
|
|
1788
1913
|
* Information about the device profile.
|
|
1789
1914
|
*/
|
|
1790
1915
|
LoRaWAN?: LoRaWANDeviceProfile;
|
|
1916
|
+
/**
|
|
1917
|
+
* Information about the Sidewalk parameters in the device profile.
|
|
1918
|
+
*/
|
|
1919
|
+
Sidewalk?: SidewalkGetDeviceProfile;
|
|
1791
1920
|
}
|
|
1792
1921
|
export interface GetEventConfigurationByResourceTypesRequest {
|
|
1793
1922
|
}
|
|
@@ -2085,6 +2214,58 @@ declare namespace IoTWireless {
|
|
|
2085
2214
|
*/
|
|
2086
2215
|
LoRaWAN?: LoRaWANGetServiceProfileInfo;
|
|
2087
2216
|
}
|
|
2217
|
+
export interface GetWirelessDeviceImportTaskRequest {
|
|
2218
|
+
/**
|
|
2219
|
+
* The identifier of the import task for which information is requested.
|
|
2220
|
+
*/
|
|
2221
|
+
Id: ImportTaskId;
|
|
2222
|
+
}
|
|
2223
|
+
export interface GetWirelessDeviceImportTaskResponse {
|
|
2224
|
+
/**
|
|
2225
|
+
* The identifier of the import task for which information is retrieved.
|
|
2226
|
+
*/
|
|
2227
|
+
Id?: ImportTaskId;
|
|
2228
|
+
/**
|
|
2229
|
+
* The ARN (Amazon Resource Name) of the import task.
|
|
2230
|
+
*/
|
|
2231
|
+
Arn?: ImportTaskArn;
|
|
2232
|
+
/**
|
|
2233
|
+
* The name of the destination that's assigned to the wireless devices in the import task.
|
|
2234
|
+
*/
|
|
2235
|
+
DestinationName?: DestinationName;
|
|
2236
|
+
/**
|
|
2237
|
+
* The Sidewalk-related information about an import task.
|
|
2238
|
+
*/
|
|
2239
|
+
Sidewalk?: SidewalkGetStartImportInfo;
|
|
2240
|
+
/**
|
|
2241
|
+
* The time at which the import task was created.
|
|
2242
|
+
*/
|
|
2243
|
+
CreationTime?: CreationTime;
|
|
2244
|
+
/**
|
|
2245
|
+
* The import task status.
|
|
2246
|
+
*/
|
|
2247
|
+
Status?: ImportTaskStatus;
|
|
2248
|
+
/**
|
|
2249
|
+
* The reason for the provided status information, such as a validation error that causes the import task to fail.
|
|
2250
|
+
*/
|
|
2251
|
+
StatusReason?: StatusReason;
|
|
2252
|
+
/**
|
|
2253
|
+
* The number of devices in the import task that are waiting for the control log to start processing.
|
|
2254
|
+
*/
|
|
2255
|
+
InitializedImportedDeviceCount?: ImportedWirelessDeviceCount;
|
|
2256
|
+
/**
|
|
2257
|
+
* The number of devices in the import task that are waiting in the import task queue to be onboarded.
|
|
2258
|
+
*/
|
|
2259
|
+
PendingImportedDeviceCount?: ImportedWirelessDeviceCount;
|
|
2260
|
+
/**
|
|
2261
|
+
* The number of devices in the import task that have been onboarded to the import task.
|
|
2262
|
+
*/
|
|
2263
|
+
OnboardedImportedDeviceCount?: ImportedWirelessDeviceCount;
|
|
2264
|
+
/**
|
|
2265
|
+
* The number of devices in the import task that failed to onboard to the import task.
|
|
2266
|
+
*/
|
|
2267
|
+
FailedImportedDeviceCount?: ImportedWirelessDeviceCount;
|
|
2268
|
+
}
|
|
2088
2269
|
export interface GetWirelessDeviceRequest {
|
|
2089
2270
|
/**
|
|
2090
2271
|
* The identifier of the wireless device to get.
|
|
@@ -2413,6 +2594,35 @@ declare namespace IoTWireless {
|
|
|
2413
2594
|
export type ISODateTimeString = string;
|
|
2414
2595
|
export type Identifier = string;
|
|
2415
2596
|
export type IdentifierType = "PartnerAccountId"|"DevEui"|"GatewayEui"|"WirelessDeviceId"|"WirelessGatewayId"|string;
|
|
2597
|
+
export type ImportTaskArn = string;
|
|
2598
|
+
export type ImportTaskId = string;
|
|
2599
|
+
export type ImportTaskStatus = "INITIALIZING"|"INITIALIZED"|"PENDING"|"COMPLETE"|"FAILED"|"DELETING"|string;
|
|
2600
|
+
export interface ImportedSidewalkDevice {
|
|
2601
|
+
/**
|
|
2602
|
+
* The Sidewalk manufacturing serial number (SMSN) of the Sidewalk device.
|
|
2603
|
+
*/
|
|
2604
|
+
SidewalkManufacturingSn?: SidewalkManufacturingSn;
|
|
2605
|
+
/**
|
|
2606
|
+
* The onboarding status of the Sidewalk device in the import task.
|
|
2607
|
+
*/
|
|
2608
|
+
OnboardingStatus?: OnboardStatus;
|
|
2609
|
+
/**
|
|
2610
|
+
* The reason for the onboarding status information for the Sidewalk device.
|
|
2611
|
+
*/
|
|
2612
|
+
OnboardingStatusReason?: OnboardStatusReason;
|
|
2613
|
+
/**
|
|
2614
|
+
* The time at which the status information was last updated.
|
|
2615
|
+
*/
|
|
2616
|
+
LastUpdateTime?: LastUpdateTime;
|
|
2617
|
+
}
|
|
2618
|
+
export interface ImportedWirelessDevice {
|
|
2619
|
+
/**
|
|
2620
|
+
* The Sidewalk-related information about a device that has been added to an import task.
|
|
2621
|
+
*/
|
|
2622
|
+
Sidewalk?: ImportedSidewalkDevice;
|
|
2623
|
+
}
|
|
2624
|
+
export type ImportedWirelessDeviceCount = number;
|
|
2625
|
+
export type ImportedWirelessDeviceList = ImportedWirelessDevice[];
|
|
2416
2626
|
export type Integer = number;
|
|
2417
2627
|
export type IotCertificateId = string;
|
|
2418
2628
|
export interface Ip {
|
|
@@ -2441,6 +2651,7 @@ declare namespace IoTWireless {
|
|
|
2441
2651
|
LoRaWAN?: LoRaWANJoinResourceTypeEventConfiguration;
|
|
2442
2652
|
}
|
|
2443
2653
|
export type LAC = number;
|
|
2654
|
+
export type LastUpdateTime = Date;
|
|
2444
2655
|
export interface ListDestinationsRequest {
|
|
2445
2656
|
/**
|
|
2446
2657
|
* The maximum number of results to return in this operation.
|
|
@@ -2470,6 +2681,10 @@ declare namespace IoTWireless {
|
|
|
2470
2681
|
* The maximum number of results to return in this operation.
|
|
2471
2682
|
*/
|
|
2472
2683
|
MaxResults?: MaxResults;
|
|
2684
|
+
/**
|
|
2685
|
+
* A filter to list only device profiles that use this type, which can be LoRaWAN or Sidewalk.
|
|
2686
|
+
*/
|
|
2687
|
+
DeviceProfileType?: DeviceProfileType;
|
|
2473
2688
|
}
|
|
2474
2689
|
export interface ListDeviceProfilesResponse {
|
|
2475
2690
|
/**
|
|
@@ -2481,6 +2696,35 @@ declare namespace IoTWireless {
|
|
|
2481
2696
|
*/
|
|
2482
2697
|
DeviceProfileList?: DeviceProfileList;
|
|
2483
2698
|
}
|
|
2699
|
+
export interface ListDevicesForWirelessDeviceImportTaskRequest {
|
|
2700
|
+
/**
|
|
2701
|
+
* The identifier of the import task for which wireless devices are listed.
|
|
2702
|
+
*/
|
|
2703
|
+
Id: ImportTaskId;
|
|
2704
|
+
MaxResults?: MaxResults;
|
|
2705
|
+
/**
|
|
2706
|
+
* To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.
|
|
2707
|
+
*/
|
|
2708
|
+
NextToken?: NextToken;
|
|
2709
|
+
/**
|
|
2710
|
+
* The status of the devices in the import task.
|
|
2711
|
+
*/
|
|
2712
|
+
Status?: OnboardStatus;
|
|
2713
|
+
}
|
|
2714
|
+
export interface ListDevicesForWirelessDeviceImportTaskResponse {
|
|
2715
|
+
/**
|
|
2716
|
+
* The token to use to get the next set of results, or null if there are no additional results.
|
|
2717
|
+
*/
|
|
2718
|
+
NextToken?: NextToken;
|
|
2719
|
+
/**
|
|
2720
|
+
* The name of the Sidewalk destination that describes the IoT rule to route messages received from devices in an import task that are onboarded to AWS IoT Wireless.
|
|
2721
|
+
*/
|
|
2722
|
+
DestinationName?: DestinationName;
|
|
2723
|
+
/**
|
|
2724
|
+
* List of wireless devices in an import task and their onboarding status.
|
|
2725
|
+
*/
|
|
2726
|
+
ImportedWirelessDeviceList?: ImportedWirelessDeviceList;
|
|
2727
|
+
}
|
|
2484
2728
|
export interface ListEventConfigurationsRequest {
|
|
2485
2729
|
/**
|
|
2486
2730
|
* Resource type to filter event configurations.
|
|
@@ -2663,6 +2907,23 @@ declare namespace IoTWireless {
|
|
|
2663
2907
|
*/
|
|
2664
2908
|
Tags?: TagList;
|
|
2665
2909
|
}
|
|
2910
|
+
export interface ListWirelessDeviceImportTasksRequest {
|
|
2911
|
+
MaxResults?: MaxResults;
|
|
2912
|
+
/**
|
|
2913
|
+
* To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.
|
|
2914
|
+
*/
|
|
2915
|
+
NextToken?: NextToken;
|
|
2916
|
+
}
|
|
2917
|
+
export interface ListWirelessDeviceImportTasksResponse {
|
|
2918
|
+
/**
|
|
2919
|
+
* The token to use to get the next set of results, or null if there are no additional results.
|
|
2920
|
+
*/
|
|
2921
|
+
NextToken?: NextToken;
|
|
2922
|
+
/**
|
|
2923
|
+
* List of import tasks and summary information of onboarding status of devices in each import task.
|
|
2924
|
+
*/
|
|
2925
|
+
WirelessDeviceImportTaskList?: WirelessDeviceImportTaskList;
|
|
2926
|
+
}
|
|
2666
2927
|
export interface ListWirelessDevicesRequest {
|
|
2667
2928
|
/**
|
|
2668
2929
|
* The maximum number of results to return in this operation.
|
|
@@ -3222,6 +3483,7 @@ declare namespace IoTWireless {
|
|
|
3222
3483
|
export type MNC = number;
|
|
3223
3484
|
export type MacAddress = string;
|
|
3224
3485
|
export type MacVersion = string;
|
|
3486
|
+
export type MaxAllowedSignature = number;
|
|
3225
3487
|
export type MaxDutyCycle = number;
|
|
3226
3488
|
export type MaxEirp = number;
|
|
3227
3489
|
export type MaxResults = number;
|
|
@@ -3280,6 +3542,8 @@ declare namespace IoTWireless {
|
|
|
3280
3542
|
export type NwkKey = string;
|
|
3281
3543
|
export type NwkSEncKey = string;
|
|
3282
3544
|
export type NwkSKey = string;
|
|
3545
|
+
export type OnboardStatus = "INITIALIZED"|"PENDING"|"ONBOARDED"|"FAILED"|string;
|
|
3546
|
+
export type OnboardStatusReason = string;
|
|
3283
3547
|
export interface OtaaV1_0_x {
|
|
3284
3548
|
/**
|
|
3285
3549
|
* The AppKey value.
|
|
@@ -3383,6 +3647,7 @@ declare namespace IoTWireless {
|
|
|
3383
3647
|
export type PositioningConfigStatus = "Enabled"|"Disabled"|string;
|
|
3384
3648
|
export type PrAllowed = boolean;
|
|
3385
3649
|
export type PresetFreq = number;
|
|
3650
|
+
export type PrivateKeysList = CertificateList[];
|
|
3386
3651
|
export interface ProximityEventConfiguration {
|
|
3387
3652
|
/**
|
|
3388
3653
|
* Proximity event configuration object for enabling or disabling Sidewalk related event topics.
|
|
@@ -3429,6 +3694,7 @@ declare namespace IoTWireless {
|
|
|
3429
3694
|
}
|
|
3430
3695
|
export interface PutResourceLogLevelResponse {
|
|
3431
3696
|
}
|
|
3697
|
+
export type QualificationStatus = boolean;
|
|
3432
3698
|
export type QueryString = string;
|
|
3433
3699
|
export type RSCP = number;
|
|
3434
3700
|
export type RSRP = number;
|
|
@@ -3457,6 +3723,7 @@ declare namespace IoTWireless {
|
|
|
3457
3723
|
export type ResourceType = string;
|
|
3458
3724
|
export type Result = string;
|
|
3459
3725
|
export type RfRegion = string;
|
|
3726
|
+
export type Role = string;
|
|
3460
3727
|
export type RoleArn = string;
|
|
3461
3728
|
export type RxDataRate2 = number;
|
|
3462
3729
|
export type RxDelay1 = number;
|
|
@@ -3595,6 +3862,14 @@ declare namespace IoTWireless {
|
|
|
3595
3862
|
Arn?: PartnerAccountArn;
|
|
3596
3863
|
}
|
|
3597
3864
|
export type SidewalkAccountList = SidewalkAccountInfoWithFingerprint[];
|
|
3865
|
+
export interface SidewalkCreateDeviceProfile {
|
|
3866
|
+
}
|
|
3867
|
+
export interface SidewalkCreateWirelessDevice {
|
|
3868
|
+
/**
|
|
3869
|
+
* The ID of the Sidewalk device profile.
|
|
3870
|
+
*/
|
|
3871
|
+
DeviceProfileId?: DeviceProfileId;
|
|
3872
|
+
}
|
|
3598
3873
|
export interface SidewalkDevice {
|
|
3599
3874
|
AmazonId?: AmazonId;
|
|
3600
3875
|
/**
|
|
@@ -3609,6 +3884,22 @@ declare namespace IoTWireless {
|
|
|
3609
3884
|
* The sidewalk device certificates for Ed25519 and P256r1.
|
|
3610
3885
|
*/
|
|
3611
3886
|
DeviceCertificates?: DeviceCertificateList;
|
|
3887
|
+
/**
|
|
3888
|
+
* The Sidewalk device private keys that will be used for onboarding the device.
|
|
3889
|
+
*/
|
|
3890
|
+
PrivateKeys?: PrivateKeysList;
|
|
3891
|
+
/**
|
|
3892
|
+
* The ID of the Sidewalk device profile.
|
|
3893
|
+
*/
|
|
3894
|
+
DeviceProfileId?: DeviceProfileId;
|
|
3895
|
+
/**
|
|
3896
|
+
* The ID of the Sidewalk device profile.
|
|
3897
|
+
*/
|
|
3898
|
+
CertificateId?: DakCertificateId;
|
|
3899
|
+
/**
|
|
3900
|
+
* The Sidewalk device status, such as provisioned or registered.
|
|
3901
|
+
*/
|
|
3902
|
+
Status?: WirelessDeviceSidewalkStatus;
|
|
3612
3903
|
}
|
|
3613
3904
|
export interface SidewalkDeviceMetadata {
|
|
3614
3905
|
/**
|
|
@@ -3634,6 +3925,30 @@ declare namespace IoTWireless {
|
|
|
3634
3925
|
*/
|
|
3635
3926
|
AmazonIdEventTopic?: EventNotificationTopicStatus;
|
|
3636
3927
|
}
|
|
3928
|
+
export interface SidewalkGetDeviceProfile {
|
|
3929
|
+
/**
|
|
3930
|
+
* The Sidewalk application server public key.
|
|
3931
|
+
*/
|
|
3932
|
+
ApplicationServerPublicKey?: ApplicationServerPublicKey;
|
|
3933
|
+
/**
|
|
3934
|
+
* Gets information about the certification status of a Sidewalk device profile.
|
|
3935
|
+
*/
|
|
3936
|
+
QualificationStatus?: QualificationStatus;
|
|
3937
|
+
/**
|
|
3938
|
+
* The DAK certificate information of the Sidewalk device profile.
|
|
3939
|
+
*/
|
|
3940
|
+
DakCertificateMetadata?: DakCertificateMetadataList;
|
|
3941
|
+
}
|
|
3942
|
+
export interface SidewalkGetStartImportInfo {
|
|
3943
|
+
/**
|
|
3944
|
+
* List of Sidewalk devices that are added to the import task.
|
|
3945
|
+
*/
|
|
3946
|
+
DeviceCreationFileList?: DeviceCreationFileList;
|
|
3947
|
+
/**
|
|
3948
|
+
* The IAM role that allows AWS IoT Wireless to access the CSV file in the S3 bucket.
|
|
3949
|
+
*/
|
|
3950
|
+
Role?: Role;
|
|
3951
|
+
}
|
|
3637
3952
|
export type SidewalkId = string;
|
|
3638
3953
|
export interface SidewalkListDevice {
|
|
3639
3954
|
/**
|
|
@@ -3652,6 +3967,14 @@ declare namespace IoTWireless {
|
|
|
3652
3967
|
* The sidewalk device certificates for Ed25519 and P256r1.
|
|
3653
3968
|
*/
|
|
3654
3969
|
DeviceCertificates?: DeviceCertificateList;
|
|
3970
|
+
/**
|
|
3971
|
+
* Sidewalk object used by list functions.
|
|
3972
|
+
*/
|
|
3973
|
+
DeviceProfileId?: DeviceProfileId;
|
|
3974
|
+
/**
|
|
3975
|
+
* The status of the Sidewalk devices, such as provisioned or registered.
|
|
3976
|
+
*/
|
|
3977
|
+
Status?: WirelessDeviceSidewalkStatus;
|
|
3655
3978
|
}
|
|
3656
3979
|
export type SidewalkManufacturingSn = string;
|
|
3657
3980
|
export interface SidewalkResourceTypeEventConfiguration {
|
|
@@ -3671,12 +3994,34 @@ declare namespace IoTWireless {
|
|
|
3671
3994
|
*/
|
|
3672
3995
|
AckModeRetryDurationSecs?: AckModeRetryDurationSecs;
|
|
3673
3996
|
}
|
|
3997
|
+
export interface SidewalkSingleStartImportInfo {
|
|
3998
|
+
/**
|
|
3999
|
+
* The Sidewalk manufacturing serial number (SMSN) of the device added to the import task.
|
|
4000
|
+
*/
|
|
4001
|
+
SidewalkManufacturingSn?: SidewalkManufacturingSn;
|
|
4002
|
+
}
|
|
4003
|
+
export interface SidewalkStartImportInfo {
|
|
4004
|
+
/**
|
|
4005
|
+
* The CSV file contained in an S3 bucket that's used for adding devices to an import task.
|
|
4006
|
+
*/
|
|
4007
|
+
DeviceCreationFile?: DeviceCreationFile;
|
|
4008
|
+
/**
|
|
4009
|
+
* The IAM role that allows AWS IoT Wireless to access the CSV file in the S3 bucket.
|
|
4010
|
+
*/
|
|
4011
|
+
Role?: Role;
|
|
4012
|
+
}
|
|
3674
4013
|
export interface SidewalkUpdateAccount {
|
|
3675
4014
|
/**
|
|
3676
4015
|
* The new Sidewalk application server private key.
|
|
3677
4016
|
*/
|
|
3678
4017
|
AppServerPrivateKey?: AppServerPrivateKey;
|
|
3679
4018
|
}
|
|
4019
|
+
export interface SidewalkUpdateImportInfo {
|
|
4020
|
+
/**
|
|
4021
|
+
* The CSV file contained in an S3 bucket that's used for appending devices to an existing import task.
|
|
4022
|
+
*/
|
|
4023
|
+
DeviceCreationFile?: DeviceCreationFile;
|
|
4024
|
+
}
|
|
3680
4025
|
export type SigningAlg = "Ed25519"|"P256r1"|string;
|
|
3681
4026
|
export interface StartBulkAssociateWirelessDeviceWithMulticastGroupRequest {
|
|
3682
4027
|
Id: MulticastGroupId;
|
|
@@ -3704,11 +4049,60 @@ declare namespace IoTWireless {
|
|
|
3704
4049
|
}
|
|
3705
4050
|
export interface StartMulticastGroupSessionResponse {
|
|
3706
4051
|
}
|
|
4052
|
+
export interface StartSingleWirelessDeviceImportTaskRequest {
|
|
4053
|
+
/**
|
|
4054
|
+
* The name of the Sidewalk destination that describes the IoT rule to route messages from the device in the import task that will be onboarded to AWS IoT Wireless.
|
|
4055
|
+
*/
|
|
4056
|
+
DestinationName: DestinationName;
|
|
4057
|
+
ClientRequestToken?: ClientRequestToken;
|
|
4058
|
+
/**
|
|
4059
|
+
* The name of the wireless device for which an import task is being started.
|
|
4060
|
+
*/
|
|
4061
|
+
DeviceName?: DeviceName;
|
|
4062
|
+
Tags?: TagList;
|
|
4063
|
+
/**
|
|
4064
|
+
* The Sidewalk-related parameters for importing a single wireless device.
|
|
4065
|
+
*/
|
|
4066
|
+
Sidewalk: SidewalkSingleStartImportInfo;
|
|
4067
|
+
}
|
|
4068
|
+
export interface StartSingleWirelessDeviceImportTaskResponse {
|
|
4069
|
+
/**
|
|
4070
|
+
* The import task ID.
|
|
4071
|
+
*/
|
|
4072
|
+
Id?: ImportTaskId;
|
|
4073
|
+
/**
|
|
4074
|
+
* The ARN (Amazon Resource Name) of the import task.
|
|
4075
|
+
*/
|
|
4076
|
+
Arn?: ImportTaskArn;
|
|
4077
|
+
}
|
|
3707
4078
|
export type StartTime = Date;
|
|
4079
|
+
export interface StartWirelessDeviceImportTaskRequest {
|
|
4080
|
+
/**
|
|
4081
|
+
* The name of the Sidewalk destination that describes the IoT rule to route messages from the devices in the import task that are onboarded to AWS IoT Wireless.
|
|
4082
|
+
*/
|
|
4083
|
+
DestinationName: DestinationName;
|
|
4084
|
+
ClientRequestToken?: ClientRequestToken;
|
|
4085
|
+
Tags?: TagList;
|
|
4086
|
+
/**
|
|
4087
|
+
* The Sidewalk-related parameters for importing wireless devices that need to be provisioned in bulk.
|
|
4088
|
+
*/
|
|
4089
|
+
Sidewalk: SidewalkStartImportInfo;
|
|
4090
|
+
}
|
|
4091
|
+
export interface StartWirelessDeviceImportTaskResponse {
|
|
4092
|
+
/**
|
|
4093
|
+
* The import task ID.
|
|
4094
|
+
*/
|
|
4095
|
+
Id?: ImportTaskId;
|
|
4096
|
+
/**
|
|
4097
|
+
* The ARN (Amazon Resource Name) of the import task.
|
|
4098
|
+
*/
|
|
4099
|
+
Arn?: ImportTaskArn;
|
|
4100
|
+
}
|
|
3708
4101
|
export type Station = string;
|
|
4102
|
+
export type StatusReason = string;
|
|
3709
4103
|
export type SubBand = number;
|
|
3710
4104
|
export type SubBands = SubBand[];
|
|
3711
|
-
export type SupportedRfRegion = "EU868"|"US915"|"AU915"|"AS923-1"|string;
|
|
4105
|
+
export type SupportedRfRegion = "EU868"|"US915"|"AU915"|"AS923-1"|"AS923-2"|"AS923-3"|"AS923-4"|"EU433"|"CN470"|"CN779"|"RU864"|"KR920"|"IN865"|string;
|
|
3712
4106
|
export type Supports32BitFCnt = boolean;
|
|
3713
4107
|
export type SupportsClassB = boolean;
|
|
3714
4108
|
export type SupportsClassC = boolean;
|
|
@@ -4059,6 +4453,18 @@ declare namespace IoTWireless {
|
|
|
4059
4453
|
export interface UpdateResourcePositionResponse {
|
|
4060
4454
|
}
|
|
4061
4455
|
export type UpdateSignature = string;
|
|
4456
|
+
export interface UpdateWirelessDeviceImportTaskRequest {
|
|
4457
|
+
/**
|
|
4458
|
+
* The identifier of the import task to be updated.
|
|
4459
|
+
*/
|
|
4460
|
+
Id: ImportTaskId;
|
|
4461
|
+
/**
|
|
4462
|
+
* The Sidewalk-related parameters of the import task to be updated.
|
|
4463
|
+
*/
|
|
4464
|
+
Sidewalk: SidewalkUpdateImportInfo;
|
|
4465
|
+
}
|
|
4466
|
+
export interface UpdateWirelessDeviceImportTaskResponse {
|
|
4467
|
+
}
|
|
4062
4468
|
export interface UpdateWirelessDeviceRequest {
|
|
4063
4469
|
/**
|
|
4064
4470
|
* The ID of the resource to update.
|
|
@@ -4210,7 +4616,7 @@ declare namespace IoTWireless {
|
|
|
4210
4616
|
*/
|
|
4211
4617
|
MacAddress: MacAddress;
|
|
4212
4618
|
/**
|
|
4213
|
-
*
|
|
4619
|
+
* Received signal strength (dBm) of the WLAN measurement data.
|
|
4214
4620
|
*/
|
|
4215
4621
|
Rss: RSS;
|
|
4216
4622
|
}
|
|
@@ -4225,6 +4631,53 @@ declare namespace IoTWireless {
|
|
|
4225
4631
|
export type WirelessDeviceFrameInfo = "ENABLED"|"DISABLED"|string;
|
|
4226
4632
|
export type WirelessDeviceId = string;
|
|
4227
4633
|
export type WirelessDeviceIdType = "WirelessDeviceId"|"DevEui"|"ThingName"|"SidewalkManufacturingSn"|string;
|
|
4634
|
+
export interface WirelessDeviceImportTask {
|
|
4635
|
+
/**
|
|
4636
|
+
* The ID of the wireless device import task.
|
|
4637
|
+
*/
|
|
4638
|
+
Id?: ImportTaskId;
|
|
4639
|
+
/**
|
|
4640
|
+
* The ARN (Amazon Resource Name) of the wireless device import task.
|
|
4641
|
+
*/
|
|
4642
|
+
Arn?: ImportTaskArn;
|
|
4643
|
+
/**
|
|
4644
|
+
* The name of the Sidewalk destination that that describes the IoT rule to route messages from the device in the import task that will be onboarded to AWS IoT Wireless
|
|
4645
|
+
*/
|
|
4646
|
+
DestinationName?: DestinationName;
|
|
4647
|
+
/**
|
|
4648
|
+
* The Sidewalk-related information of the wireless device import task.
|
|
4649
|
+
*/
|
|
4650
|
+
Sidewalk?: SidewalkGetStartImportInfo;
|
|
4651
|
+
/**
|
|
4652
|
+
* The time at which the import task was created.
|
|
4653
|
+
*/
|
|
4654
|
+
CreationTime?: CreationTime;
|
|
4655
|
+
/**
|
|
4656
|
+
* The status information of the wireless device import task.
|
|
4657
|
+
*/
|
|
4658
|
+
Status?: ImportTaskStatus;
|
|
4659
|
+
/**
|
|
4660
|
+
* The reason that provides additional information about the import task status.
|
|
4661
|
+
*/
|
|
4662
|
+
StatusReason?: StatusReason;
|
|
4663
|
+
/**
|
|
4664
|
+
* The summary information of count of wireless devices that are waiting for the control log to be added to an import task.
|
|
4665
|
+
*/
|
|
4666
|
+
InitializedImportedDeviceCount?: ImportedWirelessDeviceCount;
|
|
4667
|
+
/**
|
|
4668
|
+
* The summary information of count of wireless devices in an import task that are waiting in the queue to be onboarded.
|
|
4669
|
+
*/
|
|
4670
|
+
PendingImportedDeviceCount?: ImportedWirelessDeviceCount;
|
|
4671
|
+
/**
|
|
4672
|
+
* The summary information of count of wireless devices in an import task that have been onboarded to the import task.
|
|
4673
|
+
*/
|
|
4674
|
+
OnboardedImportedDeviceCount?: ImportedWirelessDeviceCount;
|
|
4675
|
+
/**
|
|
4676
|
+
* The summary information of count of wireless devices in an import task that failed to onboarded to the import task.
|
|
4677
|
+
*/
|
|
4678
|
+
FailedImportedDeviceCount?: ImportedWirelessDeviceCount;
|
|
4679
|
+
}
|
|
4680
|
+
export type WirelessDeviceImportTaskList = WirelessDeviceImportTask[];
|
|
4228
4681
|
export type WirelessDeviceList = WirelessDeviceId[];
|
|
4229
4682
|
export interface WirelessDeviceLogOption {
|
|
4230
4683
|
/**
|
|
@@ -4236,6 +4689,7 @@ declare namespace IoTWireless {
|
|
|
4236
4689
|
}
|
|
4237
4690
|
export type WirelessDeviceLogOptionList = WirelessDeviceLogOption[];
|
|
4238
4691
|
export type WirelessDeviceName = string;
|
|
4692
|
+
export type WirelessDeviceSidewalkStatus = "PROVISIONED"|"REGISTERED"|"ACTIVATED"|"UNKNOWN"|string;
|
|
4239
4693
|
export interface WirelessDeviceStatistics {
|
|
4240
4694
|
/**
|
|
4241
4695
|
* The Amazon Resource Name of the resource.
|