Module Values.EphemerisItemSource

Ephemeris item.

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

    The AWS Ground Station ephemeris ID.

    *)
  2. ephemerisType : EphemerisType.t option;
    (*

    The type of ephemeris.

    *)
  3. status : EphemerisStatus.t option;
    (*

    The status of 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.

    *)
  5. enabled : Boolean.t option;
    (*

    Whether or not the ephemeris is enabled.

    *)
  6. creationTime : Timestamp.t option;
    (*

    The time the ephemeris was uploaded in UTC.

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

    A name that you can use to identify the ephemeris.

    *)
  8. sourceS3Object : S3Object.t option;
    (*

    Source Amazon S3 object used for the ephemeris.

    *)
}
Sourceval make : ?ephemerisId:??? -> ?ephemerisType:??? -> ?status:??? -> ?priority:??? -> ?enabled:??? -> ?creationTime:??? -> ?name:??? -> ?sourceS3Object:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of EphemerisPriority.t | `String of Uuid.t | `Structure of (string * [> `String of S3BucketName.t ]) list | `Timestamp of Timestamp.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