Module Values.SidewalkStartImportInfoSource

Information about an import task created for bulk provisioning.

Sourcetype nonrec t = {
  1. deviceCreationFile : DeviceCreationFile.t option;
    (*

    The CSV file contained in an S3 bucket that's used for adding devices to an 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 : ?deviceCreationFile:??? -> ?role:??? -> ?positioning:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DeviceCreationFile.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