Module Values.DataViewSummarySource

Structure for the summary of a Dataview.

Sourcetype nonrec t = {
  1. dataViewId : DataViewId.t option;
    (*

    The unique identifier for the Dataview.

    *)
  2. dataViewArn : DataViewArn.t option;
    (*

    The ARN identifier of the Dataview.

    *)
  3. datasetId : DatasetId.t option;
    (*

    Th unique identifier for the Dataview Dataset.

    *)
  4. asOfTimestamp : TimestampEpoch.t option;
    (*

    Time range to use for the Dataview. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  5. partitionColumns : PartitionColumnList.t option;
    (*

    Ordered set of column names used to partition data.

    *)
  6. sortColumns : SortColumnList.t option;
    (*

    Columns to be used for sorting the data.

    *)
  7. status : DataViewStatus.t option;
    (*

    The status of a Dataview creation. RUNNING – Dataview creation is running. STARTING – Dataview creation is starting. FAILED – Dataview creation has failed. CANCELLED – Dataview creation has been cancelled. TIMEOUT – Dataview creation has timed out. SUCCESS – Dataview creation has succeeded. PENDING – Dataview creation is pending. FAILED_CLEANUP_FAILED – Dataview creation failed and resource cleanup failed.

    *)
  8. errorInfo : DataViewErrorInfo.t option;
    (*

    The structure with error messages.

    *)
  9. destinationTypeProperties : DataViewDestinationTypeParams.t option;
    (*

    Information about the Dataview destination.

    *)
  10. autoUpdate : Boolean.t option;
    (*

    The flag to indicate Dataview should be updated automatically.

    *)
  11. createTime : TimestampEpoch.t option;
    (*

    The timestamp at which the Dataview was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  12. lastModifiedTime : TimestampEpoch.t option;
    (*

    The last time that a Dataview was modified. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
}
Sourceval make : ?dataViewId:??? -> ?dataViewArn:??? -> ?datasetId:??? -> ?asOfTimestamp:??? -> ?partitionColumns:??? -> ?sortColumns:??? -> ?status:??? -> ?errorInfo:??? -> ?destinationTypeProperties:??? -> ?autoUpdate:??? -> ?createTime:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of StringValueLength1to255.t ] list | `Long of TimestampEpoch.t | `String of DataViewId.t | `Structure of (string * [> `Enum of string | `Map of ([> `String of StringMapKey.t ] * [> `String of StringMapValue.t ]) list | `String of ErrorMessage.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