PartitionStorageDescriptorArgs

data class PartitionStorageDescriptorArgs(val bucketColumns: Output<List<String>>? = null, val columns: Output<List<PartitionStorageDescriptorColumnArgs>>? = null, val compressed: Output<Boolean>? = null, val inputFormat: Output<String>? = null, val location: Output<String>? = null, val numberOfBuckets: Output<Int>? = null, val outputFormat: Output<String>? = null, val parameters: Output<Map<String, String>>? = null, val serDeInfo: Output<PartitionStorageDescriptorSerDeInfoArgs>? = null, val skewedInfo: Output<PartitionStorageDescriptorSkewedInfoArgs>? = null, val sortColumns: Output<List<PartitionStorageDescriptorSortColumnArgs>>? = null, val storedAsSubDirectories: Output<Boolean>? = null) : ConvertibleToJava<PartitionStorageDescriptorArgs>

Constructors

Link copied to clipboard
constructor(bucketColumns: Output<List<String>>? = null, columns: Output<List<PartitionStorageDescriptorColumnArgs>>? = null, compressed: Output<Boolean>? = null, inputFormat: Output<String>? = null, location: Output<String>? = null, numberOfBuckets: Output<Int>? = null, outputFormat: Output<String>? = null, parameters: Output<Map<String, String>>? = null, serDeInfo: Output<PartitionStorageDescriptorSerDeInfoArgs>? = null, skewedInfo: Output<PartitionStorageDescriptorSkewedInfoArgs>? = null, sortColumns: Output<List<PartitionStorageDescriptorSortColumnArgs>>? = null, storedAsSubDirectories: Output<Boolean>? = null)

Properties

Link copied to clipboard
val bucketColumns: Output<List<String>>? = null

A list of reducer grouping columns, clustering columns, and bucketing columns in the table.

Link copied to clipboard

A list of the Columns in the table.

Link copied to clipboard
val compressed: Output<Boolean>? = null

True if the data in the table is compressed, or False if not.

Link copied to clipboard
val inputFormat: Output<String>? = null

The input format: SequenceFileInputFormat (binary), or TextInputFormat, or a custom format.

Link copied to clipboard
val location: Output<String>? = null

The physical location of the table. By default this takes the form of the warehouse location, followed by the database location in the warehouse, followed by the table name.

Link copied to clipboard
val numberOfBuckets: Output<Int>? = null

Must be specified if the table contains any dimension columns.

Link copied to clipboard
val outputFormat: Output<String>? = null

The output format: SequenceFileOutputFormat (binary), or IgnoreKeyTextOutputFormat, or a custom format.

Link copied to clipboard
val parameters: Output<Map<String, String>>? = null

User-supplied properties in key-value form.

Link copied to clipboard

Serialization/deserialization (SerDe) information.

Link copied to clipboard

Information about values that appear very frequently in a column (skewed values).

Link copied to clipboard

A list of Order objects specifying the sort order of each bucket in the table.

Link copied to clipboard
val storedAsSubDirectories: Output<Boolean>? = null

True if the table data is stored in subdirectories, or False if not.

Functions

Link copied to clipboard
open override fun toJava(): PartitionStorageDescriptorArgs