Module Values.WirelessDeviceImportTaskSource

Information about an import task for wireless devices.

Sourcetype nonrec t = {
  1. id : ImportTaskId.t option;
    (*

    The ID of the wireless device import task.

    *)
  2. arn : ImportTaskArn.t option;
    (*

    The ARN (Amazon Resource Name) of the wireless device import task.

    *)
  3. destinationName : DestinationName.t option;
    (*

    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

    *)
  4. positioning : PositioningConfigStatus.t option;
    (*

    The integration status of the Device Location feature for Sidewalk devices.

    *)
  5. sidewalk : SidewalkGetStartImportInfo.t option;
    (*

    The Sidewalk-related information of the wireless device import task.

    *)
  6. creationTime : CreationTime.t option;
    (*

    The time at which the import task was created.

    *)
  7. status : ImportTaskStatus.t option;
    (*

    The status information of the wireless device import task.

    *)
  8. statusReason : StatusReason.t option;
    (*

    The reason that provides additional information about the import task status.

    *)
  9. initializedImportedDeviceCount : ImportedWirelessDeviceCount.t option;
    (*

    The summary information of count of wireless devices that are waiting for the control log to be added to an import task.

    *)
  10. pendingImportedDeviceCount : ImportedWirelessDeviceCount.t option;
    (*

    The summary information of count of wireless devices in an import task that are waiting in the queue to be onboarded.

    *)
  11. onboardedImportedDeviceCount : ImportedWirelessDeviceCount.t option;
    (*

    The summary information of count of wireless devices in an import task that have been onboarded to the import task.

    *)
  12. failedImportedDeviceCount : ImportedWirelessDeviceCount.t option;
    (*

    The summary information of count of wireless devices in an import task that failed to onboarded to the import task.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?destinationName:??? -> ?positioning:??? -> ?sidewalk:??? -> ?creationTime:??? -> ?status:??? -> ?statusReason:??? -> ?initializedImportedDeviceCount:??? -> ?pendingImportedDeviceCount:??? -> ?onboardedImportedDeviceCount:??? -> ?failedImportedDeviceCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of ImportedWirelessDeviceCount.t | `String of ImportTaskId.t | `Structure of (string * [> `List of [> `String of DeviceCreationFile.t ] list | `String of Role.t | `Structure of (string * [> `String of DestinationName.t ]) list ]) list | `Timestamp of CreationTime.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t