Show / Hide Table of Contents

Class CatalogTableStorageDescriptorArgs

Inheritance
System.Object
InputArgs
ResourceArgs
CatalogTableStorageDescriptorArgs
Inherited Members
ResourceArgs.Empty
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.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class CatalogTableStorageDescriptorArgs : ResourceArgs

Constructors

View Source

CatalogTableStorageDescriptorArgs()

Declaration
public CatalogTableStorageDescriptorArgs()

Properties

View Source

BucketColumns

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

Declaration
public InputList<string> BucketColumns { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Columns

A list of the Columns in the table.

Declaration
public InputList<CatalogTableStorageDescriptorColumnArgs> Columns { get; set; }
Property Value
Type Description
InputList<CatalogTableStorageDescriptorColumnArgs>
View Source

Compressed

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

Declaration
public Input<bool> Compressed { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

InputFormat

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

Declaration
public Input<string> InputFormat { get; set; }
Property Value
Type Description
Input<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 Input<string> Location { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NumberOfBuckets

Must be specified if the table contains any dimension columns.

Declaration
public Input<int> NumberOfBuckets { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

OutputFormat

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

Declaration
public Input<string> OutputFormat { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Parameters

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

Declaration
public InputMap<string> Parameters { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

SerDeInfo

Serialization/deserialization (SerDe) information.

Declaration
public Input<CatalogTableStorageDescriptorSerDeInfoArgs> SerDeInfo { get; set; }
Property Value
Type Description
Input<CatalogTableStorageDescriptorSerDeInfoArgs>
View Source

SkewedInfo

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

Declaration
public Input<CatalogTableStorageDescriptorSkewedInfoArgs> SkewedInfo { get; set; }
Property Value
Type Description
Input<CatalogTableStorageDescriptorSkewedInfoArgs>
View Source

SortColumns

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

Declaration
public InputList<CatalogTableStorageDescriptorSortColumnArgs> SortColumns { get; set; }
Property Value
Type Description
InputList<CatalogTableStorageDescriptorSortColumnArgs>
View Source

StoredAsSubDirectories

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

Declaration
public Input<bool> StoredAsSubDirectories { get; set; }
Property Value
Type Description
Input<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.