Module Values.SidewalkDeviceSource

Sidewalk device object.

Sourcetype nonrec t = {
  1. amazonId : AmazonId.t option;
  2. sidewalkId : SidewalkId.t option;
    (*

    The sidewalk device identification.

    *)
  3. sidewalkManufacturingSn : SidewalkManufacturingSn.t option;
    (*

    The Sidewalk manufacturing series number.

    *)
  4. deviceCertificates : DeviceCertificateList.t option;
    (*

    The sidewalk device certificates for Ed25519 and P256r1.

    *)
  5. privateKeys : PrivateKeysList.t option;
    (*

    The Sidewalk device private keys that will be used for onboarding the device.

    *)
  6. deviceProfileId : DeviceProfileId.t option;
    (*

    The ID of the Sidewalk device profile.

    *)
  7. certificateId : DakCertificateId.t option;
    (*

    The ID of the Sidewalk device profile.

    *)
  8. status : WirelessDeviceSidewalkStatus.t option;
    (*

    The Sidewalk device status, such as provisioned or registered.

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

    The Positioning object of the Sidewalk device.

    *)
}
Sourceval make : ?amazonId:??? -> ?sidewalkId:??? -> ?sidewalkManufacturingSn:??? -> ?deviceCertificates:??? -> ?privateKeys:??? -> ?deviceProfileId:??? -> ?certificateId:??? -> ?status:??? -> ?positioning:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of CertificateValue.t ]) list ] list | `String of AmazonId.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