Module Values.DeviceInstanceSource

Represents the device instance.

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

    The Amazon Resource Name (ARN) of the device instance.

    *)
  2. deviceArn : AmazonResourceName.t option;
    (*

    The ARN of the device.

    *)
  3. labels : InstanceLabels.t option;
    (*

    An array of strings that describe the device instance.

    *)
  4. status : InstanceStatus.t option;
    (*

    The status of the device instance. Valid values are listed here.

    *)
  5. udid : String_.t option;
    (*

    Unique device identifier for the device instance.

    *)
  6. instanceProfile : InstanceProfile.t option;
    (*

    A object that contains information about the instance profile.

    *)
}
Sourceval make : ?arn:??? -> ?deviceArn:??? -> ?labels:??? -> ?status:??? -> ?udid:??? -> ?instanceProfile:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of AmazonResourceName.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list | `String of AmazonResourceName.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