Module Values.LicenseInfoSource

The license information that Amazon EVS requires to create an environment. Amazon EVS requires two license keys: a VCF solution key and a vSAN license key.

Sourcetype nonrec t = {
  1. solutionKey : SolutionKey.t;
    (*

    The VCF solution key. This license unlocks VMware VCF product features, including vSphere, NSX, SDDC Manager, and vCenter Server. The VCF solution key must meet the instance-type-specific minimum core requirements.

    *)
  2. vsanKey : VSanLicenseKey.t;
    (*

    The VSAN license key. This license unlocks vSAN features. The vSAN license key must meet the instance-type-specific minimum capacity requirements.

    *)
}
Sourceval context_ : string
Sourceval make : solutionKey:SolutionKey.t -> vsanKey:VSanLicenseKey.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SolutionKey.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