Class ClassifierCsvClassifierArgs
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.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ClassifierCsvClassifierArgs : ResourceArgs
Constructors
View SourceClassifierCsvClassifierArgs()
Declaration
public ClassifierCsvClassifierArgs()
Properties
View SourceAllowSingleColumn
Enables the processing of files that contain only one column.
Declaration
public Input<bool> AllowSingleColumn { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
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> |
Delimiter
The delimiter used in the Csv to separate columns.
Declaration
public Input<string> Delimiter { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
DisableValueTrimming
Specifies whether to trim column values.
Declaration
public Input<bool> DisableValueTrimming { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Headers
A list of strings representing column names.
Declaration
public InputList<string> Headers { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
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> |