Module Values.EksAnywhereSubscriptionTermSource

An object representing the term duration and term unit type of your subscription. This determines the term length of your subscription. Valid values are MONTHS for term unit and 12 or 36 for term duration, indicating a 12 month or 36 month subscription.

Sourcetype nonrec t = {
  1. duration : Integer.t option;
    (*

    The duration of the subscription term. Valid values are 12 and 36, indicating a 12 month or 36 month subscription.

    *)
  2. unit : EksAnywhereSubscriptionTermUnit.t option;
    (*

    The term unit of the subscription. Valid value is MONTHS.

    *)
}
Sourceval make : ?duration:??? -> ?unit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.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