Module Values_0.TableOptimizerConfigurationSource

Contains details on the configuration of a table optimizer. You pass this configuration when creating or updating a table optimizer.

Sourcetype nonrec t = {
  1. roleArn : ArnString.t option;
    (*

    A role passed by the caller which gives the service permission to update the resources associated with the optimizer on the caller's behalf.

    *)
  2. enabled : NullableBoolean.t option;
    (*

    Whether table optimization is enabled.

    *)
  3. vpcConfiguration : TableOptimizerVpcConfiguration.t option;
    (*

    A TableOptimizerVpcConfiguration object representing the VPC configuration for a table optimizer. This configuration is necessary to perform optimization on tables that are in a customer VPC.

    *)
  4. compactionConfiguration : CompactionConfiguration.t option;
    (*

    The configuration for a compaction optimizer. This configuration defines how data files in your table will be compacted to improve query performance and reduce storage costs.

    *)
  5. retentionConfiguration : RetentionConfiguration.t option;
    (*

    The configuration for a snapshot retention optimizer.

    *)
  6. orphanFileDeletionConfiguration : OrphanFileDeletionConfiguration.t option;
    (*

    The configuration for an orphan file deletion optimizer.

    *)
}
Sourceval make : ?roleArn:??? -> ?enabled:??? -> ?vpcConfiguration:??? -> ?compactionConfiguration:??? -> ?retentionConfiguration:??? -> ?orphanFileDeletionConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of NullableBoolean.t | `String of ArnString.t | `Structure of (string * [> `String of GlueConnectionNameString.t | `Structure of (string * [> `Boolean of NullableBoolean.t | `Enum of string | `Integer of NullableInteger.t | `String of MessageString.t ]) 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