Module Values.AzElSegmentsDataSource

Container for azimuth elevation segment data. Specify either AzElSegmentsData$s3Object to reference data in Amazon S3, or AzElSegmentsData$azElData to provide data inline.

Sourcetype nonrec t = {
  1. s3Object : S3Object.t option;
    (*

    The Amazon S3 object containing azimuth elevation segment data. The Amazon S3 object must contain JSON-formatted azimuth elevation data matching the AzElSegments structure.

    *)
  2. azElData : AzElSegments.t option;
    (*

    Azimuth elevation segment data provided directly in the request. Use this option for smaller datasets or when Amazon S3 access is not available.

    *)
}
Sourceval make : ?s3Object:??? -> ?azElData:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t ]) list ] list | `Structure of (string * [> `Timestamp of SyntheticTimestamp_date_time.t ]) list | `Timestamp of SyntheticTimestamp_date_time.t ]) list ] list | `String of S3BucketName.t ]) list ]) 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