Show / Hide Table of Contents

Class ClassifierCsvClassifierGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ClassifierCsvClassifierGetArgs
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 ClassifierCsvClassifierGetArgs : ResourceArgs

Constructors

View Source

ClassifierCsvClassifierGetArgs()

Declaration
public ClassifierCsvClassifierGetArgs()

Properties

View Source

AllowSingleColumn

Enables the processing of files that contain only one column.

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

ContainsHeader

Indicates whether the CSV file contains a header. This can be one of "ABSENT", "PRESENT", or "UNKNOWN".

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

Delimiter

The delimiter used in the Csv to separate columns.

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

DisableValueTrimming

Specifies whether to trim column values.

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

Headers

A list of strings representing column names.

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

QuoteSymbol

A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.

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