Module Values.ContactDataSource

Data describing a contact.

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

    UUID of a contact.

    *)
  2. missionProfileArn : MissionProfileArn.t option;
    (*

    ARN of a mission profile.

    *)
  3. satelliteArn : SatelliteArn.t option;
    (*

    ARN of a satellite.

    *)
  4. startTime : Timestamp.t option;
    (*

    Start time of a contact in UTC.

    *)
  5. endTime : Timestamp.t option;
    (*

    End time of a contact in UTC.

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

    Start time in UTC of the pre-pass period, at which you receive a CloudWatch event indicating an upcoming pass.

    *)
  7. postPassEndTime : Timestamp.t option;
    (*

    End time in UTC of the post-pass period, at which you receive a CloudWatch event indicating the pass has finished.

    *)
  8. groundStation : String_.t option;
    (*

    Name of a ground station.

    *)
  9. contactStatus : ContactStatus.t option;
    (*

    Status of a contact.

    *)
  10. errorMessage : String_.t option;
    (*

    Error message of a contact.

    *)
  11. maximumElevation : Elevation.t option;
    (*

    Maximum elevation angle of a contact.

    *)
  12. region : String_.t option;
    (*

    Region of a contact.

    *)
  13. tags : TagsMap.t option;
    (*

    Tags assigned to a contact.

    *)
  14. visibilityStartTime : Timestamp.t option;
    (*

    Projected time in UTC your satellite will rise above the receive mask. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts. This field is not present for contacts with a SCHEDULING or SCHEDULED status.

    *)
  15. visibilityEndTime : Timestamp.t option;
    (*

    Projected time in UTC your satellite will set below the receive mask. This time is based on the satellite's current active ephemeris for future contacts and the ephemeris that was active during contact execution for completed contacts. This field is not present for contacts with a SCHEDULING or SCHEDULED status.

    *)
  16. ephemeris : EphemerisResponseData.t option;
    (*

    The ephemeris that determines antenna pointing for the contact.

    *)
  17. version : ContactVersion.t option;
    (*

    Version information for a contact.

    *)
}
Sourceval make : ?contactId:??? -> ?missionProfileArn:??? -> ?satelliteArn:??? -> ?startTime:??? -> ?endTime:??? -> ?prePassStartTime:??? -> ?postPassEndTime:??? -> ?groundStation:??? -> ?contactStatus:??? -> ?errorMessage:??? -> ?maximumElevation:??? -> ?region:??? -> ?tags:??? -> ?visibilityStartTime:??? -> ?visibilityEndTime:??? -> ?ephemeris:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of Uuid.t | `Structure of (string * [> `Double of Double.t | `Enum of string | `Integer of VersionId.t | `List of [> `Enum of string ] list | `String of Uuid.t | `Timestamp of Timestamp.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