Module Values_0.PartitionInputSource

The structure used to create and update a partition.

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

    The values of the partition. Although this parameter is not required by the SDK, you must specify this parameter for a valid input. The values for the keys for the new partition must be passed as an array of String objects that must be ordered in the same order as the partition keys appearing in the Amazon S3 prefix. Otherwise Glue will add the values to the wrong keys.

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

    The last time at which the partition was accessed.

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

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

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

    These key-value pairs define partition parameters.

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

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

    *)
}
Sourceval make : ?values:??? -> ?lastAccessTime:??? -> ?storageDescriptor:??? -> ?parameters:??? -> ?lastAnalyzedTime:??? -> 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 | `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