Module Values.GetDeviceDefinitionResponseSource

Retrieves information about a device definition.

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

    The ARN of the definition.

    *)
  2. creationTimestamp : string option;
    (*

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

    *)
  3. id : string option;
    (*

    The ID of the definition.

    *)
  4. lastUpdatedTimestamp : string option;
    (*

    The time, in milliseconds since the epoch, when the definition was last updated.

    *)
  5. latestVersion : string option;
    (*

    The ID of the latest version associated with the definition.

    *)
  6. latestVersionArn : string option;
    (*

    The ARN of the latest version associated with the definition.

    *)
  7. name : string option;
    (*

    The name of the definition.

    *)
  8. tags : Tags.t option;
    (*

    Tag(s) attached to the resource arn.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?creationTimestamp:??? -> ?id:??? -> ?lastUpdatedTimestamp:??? -> ?latestVersion:??? -> ?latestVersionArn:??? -> ?name:??? -> ?tags:??? -> 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 * [> `Map of ([> `String of string ] * [> `String of string ]) list | `String of string ]) 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