Module Values.VcfVersionInfoSource

Information about a VCF versions provided by Amazon EVS, including its status, default ESX version, and EC2 instance types.

Sourcetype nonrec t = {
  1. vcfVersion : VcfVersion.t option;
    (*

    The VCF version number.

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

    The status for this VCF version. Valid values are: AVAILABLE - This VCF version is available to you. RESTRICTED - This VCF version has limited availability. If the version you need shows RESTRICTED, and you require, check out VCF versions and EC2 instance types provided by Amazon EVS for more information.

    *)
  3. defaultEsxVersion : String_.t option;
    (*

    The default ESX version for this VCF version. It is based on Broadcom's Bill Of Materials (BOM).

    *)
  4. instanceTypes : InstanceTypeList.t option;
    (*

    EC2 instance types provided by Amazon EVS for this VCF version for creating environments.

    *)
}
Sourceval make : ?vcfVersion:??? -> ?status:??? -> ?defaultEsxVersion:??? -> ?instanceTypes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `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