AnalyticBucket

@Serializable
data class AnalyticBucket(val name: String, val type: String, val format: String, val createdAt: Instant, val updatedAt: Instant)(source)

Represents an Analytics Bucket using Apache Iceberg table format. Analytics buckets are optimized for analytical queries and data processing.

Parameters

name

Unique identifier for the bucket

type

Bucket type - always 'ANALYTICS' for analytics buckets

format

Storage format used (e.g., 'iceberg')

createdAt

Timestamp of bucket creation

updatedAt

Timestamp of last update

Constructors

Link copied to clipboard
constructor(name: String, type: String, format: String, createdAt: Instant, updatedAt: Instant)

Properties

Link copied to clipboard
@SerialName(value = "created_at")
val createdAt: Instant
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "updated_at")
val updatedAt: Instant