Module Values_0.TableOptimizerSource

Contains details about an optimizer associated with a table.

Sourcetype nonrec t = {
  1. type_ : TableOptimizerType.t option;
    (*

    The type of table optimizer. The valid values are: compaction: for managing compaction with a table optimizer. retention: for managing the retention of snapshot with a table optimizer. orphan_file_deletion: for managing the deletion of orphan files with a table optimizer.

    *)
  2. configuration : TableOptimizerConfiguration.t option;
    (*

    A TableOptimizerConfiguration object that was specified when creating or updating a table optimizer.

    *)
  3. lastRun : TableOptimizerRun.t option;
    (*

    A TableOptimizerRun object representing the last run of the table optimizer.

    *)
  4. configurationSource : ConfigurationSource.t option;
    (*

    Specifies the source of the optimizer configuration. This indicates how the table optimizer was configured and which entity or service initiated the configuration.

    *)
}
Sourceval make : ?type_:??? -> ?configuration:??? -> ?lastRun:??? -> ?configurationSource:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `String of ArnString.t | `Structure of (string * [> `String of GlueConnectionNameString.t | `Structure of (string * [> `Boolean of NullableBoolean.t | `Double of DpuHours.t | `Enum of string | `Integer of NullableInteger.t | `Long of MetricCounts.t | `String of MessageString.t ]) list ]) list | `Timestamp of TableOptimizerRunTimestamp.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