Module Values.SpectrumConfigSource

Object that describes a spectral Config.

Sourcetype nonrec t = {
  1. centerFrequency : Frequency.t;
    (*

    Center frequency of a spectral Config. Valid values are between 2200 to 2300 MHz and 7750 to 8400 MHz for downlink and 2025 to 2120 MHz for uplink.

    *)
  2. bandwidth : FrequencyBandwidth.t;
    (*

    Bandwidth of a spectral Config. AWS Ground Station currently has the following bandwidth limitations: For AntennaDownlinkDemodDecodeconfig, valid values are between 125 kHz to 650 MHz. For AntennaDownlinkconfig valid values are between 10 kHz to 54 MHz. For AntennaUplinkConfig, valid values are between 10 kHz to 54 MHz.

    *)
  3. polarization : Polarization.t option;
    (*

    Polarization of a spectral Config. Capturing both "RIGHT_HAND" and "LEFT_HAND" polarization requires two separate configs.

    *)
}
Sourceval context_ : string
Sourceval make : ?polarization:??? -> centerFrequency:Frequency.t -> bandwidth:FrequencyBandwidth.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Double of Double.t | `Enum of string ]) 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