Module Values.GetDatasetResponseSource

Response for the GetDataset operation

Sourcetype nonrec t = {
  1. datasetId : DatasetId.t option;
    (*

    The unique identifier for a Dataset.

    *)
  2. datasetArn : DatasetArn.t option;
    (*

    The ARN identifier of the Dataset.

    *)
  3. datasetTitle : DatasetTitle.t option;
    (*

    Display title for a Dataset.

    *)
  4. kind : DatasetKind.t option;
    (*

    The format in which Dataset data is structured. TABULAR – Data is structured in a tabular format. NON_TABULAR – Data is structured in a non-tabular format.

    *)
  5. datasetDescription : DatasetDescription.t option;
    (*

    A description of the Dataset.

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

    The timestamp at which the Dataset 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.

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

    The last time that the Dataset 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.

    *)
  8. schemaDefinition : SchemaUnion.t option;
    (*

    Definition for a schema on a tabular Dataset.

    *)
  9. alias : AliasString.t option;
    (*

    The unique resource identifier for a Dataset.

    *)
  10. status : DatasetStatus.t option;
    (*

    Status of the Dataset creation. PENDING – Dataset is pending creation. FAILED – Dataset creation has failed. SUCCESS – Dataset creation has succeeded. RUNNING – Dataset creation is running.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `ValidationException of ValidationException.t
  7. | `Unknown_operation_error of string * string option
]
Sourceval make : ?datasetId:??? -> ?datasetArn:??? -> ?datasetTitle:??? -> ?kind:??? -> ?datasetDescription:??? -> ?createTime:??? -> ?lastModifiedTime:??? -> ?schemaDefinition:??? -> ?alias:??? -> ?status:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.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 -> [> `AccessDeniedException of AccessDeniedException.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 * [> `Enum of string | `Long of TimestampEpoch.t | `String of DatasetId.t | `Structure of (string * [> `Structure of (string * [> `List of [> `String of ColumnName.t | `Structure of (string * [> `Enum of string | `String of ColumnName.t ]) list ] list ]) list ]) 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