UpdateCsvClassifierRequest
public struct UpdateCsvClassifierRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Enables the processing of files that contain only one column.
Declaration
Swift
public let allowSingleColumn: Bool?
-
Indicates whether the CSV file contains a header.
Declaration
Swift
public let containsHeader: CsvHeaderOption?
-
A custom symbol to denote what separates each column entry in the row.
Declaration
Swift
public let delimiter: String?
-
Specifies not to trim values before identifying the type of column values. The default value is true.
Declaration
Swift
public let disableValueTrimming: Bool?
-
A list of strings representing column names.
Declaration
Swift
public let header: [String]?
-
The name of the classifier.
Declaration
Swift
public let name: String
-
A custom symbol to denote what combines content into a single column value. It must be different from the column delimiter.
Declaration
Swift
public let quoteSymbol: String?
-
Undocumented
Declaration
Swift
public init(allowSingleColumn: Bool? = nil, containsHeader: CsvHeaderOption? = nil, delimiter: String? = nil, disableValueTrimming: Bool? = nil, header: [String]? = nil, name: String, quoteSymbol: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws