Module Values.CompatibleImageSource

A JSON-formatted object that describes a compatible Amazon Machine Image (AMI), including the ID and name for a Snow device AMI. This AMI is compatible with the device's physical hardware requirements, and it should be able to be run in an SBE1 instance on the device.

Sourcetype nonrec t = {
  1. amiId : String_.t option;
    (*

    The unique identifier for an individual Snow device AMI.

    *)
  2. name : String_.t option;
    (*

    The optional name of a compatible image.

    *)
}
Sourceval make : ?amiId:??? -> ?name:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t ]) 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