Module Values.Ec2AmiResourceSource

A JSON-formatted object that contains the IDs for an Amazon Machine Image (AMI), including the Amazon EC2-compatible AMI ID and the Snow device AMI ID. Each AMI has these two IDs to simplify identifying the AMI in both the Amazon Web Services Cloud and on the device.

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

    The ID of the AMI in Amazon EC2.

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

    The ID of the AMI on the Snow device.

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