Module Values.S3ObjectSource

Object stored in Amazon S3 containing ephemeris data.

Sourcetype nonrec t = {
  1. bucket : S3BucketName.t option;
    (*

    An Amazon S3 Bucket name.

    *)
  2. key : S3ObjectKey.t option;
    (*

    An Amazon S3 key for the ephemeris.

    *)
  3. version : S3VersionId.t option;
    (*

    For versioned Amazon S3 objects, the version to use for the ephemeris.

    *)
}
Sourceval make : ?bucket:??? -> ?key:??? -> ?version:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of S3BucketName.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