Show / Hide Table of Contents

Class CatalogTableStorageDescriptor

Inheritance
System.Object
CatalogTableStorageDescriptor
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Glue.Outputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class CatalogTableStorageDescriptor

Fields

View Source

BucketColumns

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

Declaration
public readonly ImmutableArray<string> BucketColumns
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<System.String>
View Source

Columns

A list of the Columns in the table.

Declaration
public readonly ImmutableArray<CatalogTableStorageDescriptorColumn> Columns
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<CatalogTableStorageDescriptorColumn>
View Source

Compressed

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

Declaration
public readonly bool? Compressed
Field Value
Type Description
System.Nullable<System.Boolean>
View Source

InputFormat

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

Declaration
public readonly string InputFormat
Field Value
Type Description
System.String
View Source

Location

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.

Declaration
public readonly string Location
Field Value
Type Description
System.String
View Source

NumberOfBuckets

Must be specified if the table contains any dimension columns.

Declaration
public readonly int? NumberOfBuckets
Field Value
Type Description
System.Nullable<System.Int32>
View Source

OutputFormat

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

Declaration
public readonly string OutputFormat
Field Value
Type Description
System.String
View Source

Parameters

A map of initialization parameters for the SerDe, in key-value form.

Declaration
public readonly ImmutableDictionary<string, string> Parameters
Field Value
Type Description
System.Collections.Immutable.ImmutableDictionary<System.String, System.String>
View Source

SerDeInfo

Serialization/deserialization (SerDe) information.

Declaration
public readonly CatalogTableStorageDescriptorSerDeInfo SerDeInfo
Field Value
Type Description
CatalogTableStorageDescriptorSerDeInfo
View Source

SkewedInfo

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

Declaration
public readonly CatalogTableStorageDescriptorSkewedInfo SkewedInfo
Field Value
Type Description
CatalogTableStorageDescriptorSkewedInfo
View Source

SortColumns

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

Declaration
public readonly ImmutableArray<CatalogTableStorageDescriptorSortColumn> SortColumns
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<CatalogTableStorageDescriptorSortColumn>
View Source

StoredAsSubDirectories

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

Declaration
public readonly bool? StoredAsSubDirectories
Field Value
Type Description
System.Nullable<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.