Module Values.SidewalkGetStartImportInfoSource

Sidewalk-related information for devices in an import task that are being onboarded.

Sourcetype nonrec t = {
  1. deviceCreationFileList : DeviceCreationFileList.t option;
    (*

    List of Sidewalk devices that are added to the import task.

    *)
  2. role : Role.t option;
    (*

    The IAM role that allows AWS IoT Wireless to access the CSV file in the S3 bucket.

    *)
  3. positioning : SidewalkPositioning.t option;
    (*

    The Positioning object of the Sidewalk device.

    *)
}
Sourceval make : ?deviceCreationFileList:??? -> ?role:??? -> ?positioning:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of DeviceCreationFile.t ] list | `String of Role.t | `Structure of (string * [> `String of DestinationName.t ]) list ]) 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