Module Values.GetVersionsResponseSource

Returns information about VCF versions, ESX versions and EC2 instance types provided by Amazon EVS. For each VCF version, the response also includes the default ESX version and provided EC2 instance types.

Sourcetype nonrec t = {
  1. vcfVersions : VcfVersionList.t option;
    (*

    A list of VCF versions with their availability status, default ESX version, and instance types.

    *)
  2. instanceTypeEsxVersions : InstanceTypeEsxVersionsList.t option;
    (*

    A list of EC2 instance types and their available ESX versions.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ThrottlingException of ThrottlingException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?vcfVersions:??? -> ?instanceTypeEsxVersions:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of String_.t ] list | `String of String_.t ]) list ] 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