Module Values_0.PartitionSource

Represents a slice of table data.

Sourcetype nonrec t = {
  1. values : ValueStringList.t option;
    (*

    The values of the partition.

    *)
  2. databaseName : NameString.t option;
    (*

    The name of the catalog database in which to create the partition.

    *)
  3. tableName : NameString.t option;
    (*

    The name of the database table in which to create the partition.

    *)
  4. creationTime : Timestamp.t option;
    (*

    The time at which the partition was created.

    *)
  5. lastAccessTime : Timestamp.t option;
    (*

    The last time at which the partition was accessed.

    *)
  6. storageDescriptor : StorageDescriptor.t option;
    (*

    Provides information about the physical location where the partition is stored.

    *)
  7. parameters : ParametersMap.t option;
    (*

    These key-value pairs define partition parameters.

    *)
  8. lastAnalyzedTime : Timestamp.t option;
    (*

    The last time at which column statistics were computed for this partition.

    *)
  9. catalogId : CatalogIdString.t option;
    (*

    The ID of the Data Catalog in which the partition resides.

    *)
}
Sourceval make : ?values:??? -> ?databaseName:??? -> ?tableName:??? -> ?creationTime:??? -> ?lastAccessTime:??? -> ?storageDescriptor:??? -> ?parameters:??? -> ?lastAnalyzedTime:??? -> ?catalogId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ValueString.t ] list | `Map of ([> `String of KeyString.t ] * [> `String of ParametersMapValue.t ]) list | `String of NameString.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `String of LocationString.t | `Structure of (string * [> `Integer of IntegerFlag.t | `Map of ([> `String of KeyString.t ] * [> `String of ParametersMapValue.t ]) list | `String of NameString.t ]) list ] list | `Map of ([> `String of KeyString.t ] * [> `String of ParametersMapValue.t ]) list | `String of LocationString.t | `Structure of (string * [> `List of [> `String of NameString.t ] list | `Long of VersionLongNumber.t | `Map of ([> `String of KeyString.t ] * [> `String of ParametersMapValue.t ]) list | `String of NameString.t | `Structure of (string * [> `String of GlueResourceArn.t ]) list ]) list ]) list | `Timestamp of Timestamp.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