Module Values.DescribeEphemerisResponseSource

Retrieve information about an existing ephemeris.

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

    The AWS Ground Station ephemeris ID.

    *)
  2. satelliteId : Uuid.t option;
    (*

    The AWS Ground Station satellite ID associated with 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. creationTime : Timestamp.t option;
    (*

    The time the ephemeris was uploaded in UTC.

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

    Whether or not the ephemeris is enabled.

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

    A name that you can use to identify the ephemeris.

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

    Tags assigned to an ephemeris.

    *)
  9. suppliedData : EphemerisTypeDescription.t option;
    (*

    Supplied ephemeris data.

    *)
  10. invalidReason : EphemerisInvalidReason.t option;
    (*

    Reason that an ephemeris failed validation. Appears only when the status is INVALID.

    *)
  11. errorReasons : EphemerisErrorReasonList.t option;
    (*

    Detailed error information for ephemerides with INVALID status. Provides specific error codes and messages to help diagnose validation failures.

    *)
}
Sourcetype nonrec error = [
  1. | `DependencyException of DependencyException.t
  2. | `InvalidParameterException of InvalidParameterException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?ephemerisId:??? -> ?satelliteId:??? -> ?status:??? -> ?priority:??? -> ?creationTime:??? -> ?enabled:??? -> ?name:??? -> ?tags:??? -> ?suppliedData:??? -> ?invalidReason:??? -> ?errorReasons:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DependencyException of DependencyException.t | `InvalidParameterException of InvalidParameterException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DependencyException of DependencyException.t | `InvalidParameterException of InvalidParameterException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of EphemerisPriority.t | `List of [> `Structure of (string * [> `Enum of string | `String of ErrorString.t ]) list ] list | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of Uuid.t | `Structure of (string * [> `Structure of (string * [> `String of UnboundedString.t | `Structure of (string * [> `String of S3BucketName.t ]) list ]) list ]) 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