Module Values.LicenseConfigurationSource

Describes the configuration of a license for an Amazon EC2 instance.

Sourcetype nonrec t = {
  1. numberOfCores : NumberOfCores.t option;
    (*

    The current number of cores associated with the instance.

    *)
  2. instanceType : InstanceType.t option;
    (*

    The instance type used in the license.

    *)
  3. operatingSystem : OperatingSystem.t option;
    (*

    The operating system of the instance.

    *)
  4. licenseEdition : LicenseEdition.t option;
    (*

    The edition of the license for the application that runs on the instance.

    *)
  5. licenseName : LicenseName.t option;
    (*

    The name of the license for the application that runs on the instance.

    *)
  6. licenseModel : LicenseModel.t option;
    (*

    The license type associated with the instance.

    *)
  7. licenseVersion : LicenseVersion.t option;
    (*

    The version of the license for the application that runs on the instance.

    *)
  8. metricsSource : MetricsSource.t option;
    (*

    The list of metric sources required to generate recommendations for commercial software licenses.

    *)
}
Sourceval make : ?numberOfCores:??? -> ?instanceType:??? -> ?operatingSystem:??? -> ?licenseEdition:??? -> ?licenseName:??? -> ?licenseModel:??? -> ?licenseVersion:??? -> ?metricsSource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of NumberOfCores.t | `List of [> `Structure of (string * [> `Enum of string | `String of MetricProviderArn.t ]) list ] list | `String of InstanceType.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