Module Values.GetDeviceDefinitionVersionResponseSource

Retrieves information about a device definition version.

Sourcetype nonrec t = {
  1. arn : string option;
    (*

    The ARN of the device definition version.

    *)
  2. creationTimestamp : string option;
    (*

    The time, in milliseconds since the epoch, when the device definition version was created.

    *)
  3. definition : DeviceDefinitionVersion.t option;
    (*

    Information about the device definition version.

    *)
  4. id : string option;
    (*

    The ID of the device definition version.

    *)
  5. nextToken : string option;
    (*

    The token for the next set of results, or ''null'' if there are no additional results.

    *)
  6. version : string option;
    (*

    The version of the device definition version.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?creationTimestamp:??? -> ?definition:??? -> ?id:??? -> ?nextToken:??? -> ?version:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of bool | `String of string ]) list ] list ]) 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