Module Values.IcebergUnreferencedFileRemovalSettingsSource

Contains details about the unreferenced file removal settings for an Iceberg table bucket.

Sourcetype nonrec t = {
  1. unreferencedDays : PositiveInteger.t option;
    (*

    The number of days an object has to be unreferenced before it is marked as non-current.

    *)
  2. nonCurrentDays : PositiveInteger.t option;
    (*

    The number of days an object has to be non-current before it is deleted.

    *)
}
Sourceval make : ?unreferencedDays:??? -> ?nonCurrentDays:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PositiveInteger.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