Module Values.UpdateEphemerisRequestSource

Update an existing ephemeris.

Sourcetype nonrec t = {
  1. ephemerisId : Uuid.t;
    (*

    The AWS Ground Station ephemeris ID.

    *)
  2. enabled : Boolean.t;
    (*

    Enable or disable the ephemeris. Changing this value doesn't require re-validation.

    *)
  3. name : SafeName.t option;
    (*

    A name that you can use to identify the ephemeris.

    *)
  4. priority : EphemerisPriority.t option;
    (*

    A priority score that determines which ephemeris to use when multiple ephemerides overlap. Higher numbers take precedence. The default is 1. Must be 1 or greater.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?priority:??? -> ephemerisId:Uuid.t -> enabled:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of EphemerisPriority.t | `String of Uuid.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