Module Values.GetDataViewResponseSource

Response from retrieving a dataview, which includes details on the target database and table name

Sourcetype nonrec t = {
  1. autoUpdate : Boolean.t option;
    (*

    Flag to indicate Dataview should be updated automatically.

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

    Ordered set of column names used to partition data.

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

    The unique identifier for the Dataset used in the Dataview.

    *)
  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. errorInfo : DataViewErrorInfo.t option;
    (*

    Information about an error that occurred for the Dataview.

    *)
  6. 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.

    *)
  7. 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.

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

    Columns to be used for sorting the data.

    *)
  9. dataViewId : DataViewId.t option;
    (*

    The unique identifier for the Dataview.

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

    The ARN identifier of the Dataview.

    *)
  11. destinationTypeParams : DataViewDestinationTypeParams.t option;
    (*

    Options that define the destination type for the Dataview.

    *)
  12. 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.

    *)
}
Sourcetype nonrec error = [
  1. | `ConflictException of ConflictException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?autoUpdate:??? -> ?partitionColumns:??? -> ?datasetId:??? -> ?asOfTimestamp:??? -> ?errorInfo:??? -> ?lastModifiedTime:??? -> ?createTime:??? -> ?sortColumns:??? -> ?dataViewId:??? -> ?dataViewArn:??? -> ?destinationTypeParams:??? -> ?status:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of unit | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of unit | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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 DatasetId.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