Module Values.InstanceSnapshotInfoSource

Describes an instance snapshot.

Sourcetype nonrec t = {
  1. fromBundleId : NonEmptyString.t option;
    (*

    The bundle ID from which the source instance was created (micro_x_x).

    *)
  2. fromBlueprintId : NonEmptyString.t option;
    (*

    The blueprint ID from which the source instance (amazon_linux_2023).

    *)
  3. fromDiskInfo : DiskInfoList.t option;
    (*

    A list of objects describing the disks that were attached to the source instance.

    *)
}
Sourceval make : ?fromBundleId:??? -> ?fromBlueprintId:??? -> ?fromDiskInfo:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `String of String_.t ]) list ] list | `String of NonEmptyString.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