ColumnInfo
public struct ColumnInfo : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember] -
Indicates whether values in the column are case-sensitive.
Declaration
Swift
public let caseSensitive: Bool? -
The catalog to which the query results belong.
Declaration
Swift
public let catalogName: String? -
A column label.
Declaration
Swift
public let label: String? -
The name of the column.
Declaration
Swift
public let name: String -
Indicates the column’s nullable status.
Declaration
Swift
public let nullable: ColumnNullable? -
For DECIMAL data types, specifies the total number of digits, up to 38. For performance reasons, we recommend up to 18 digits.
Declaration
Swift
public let precision: Int? -
For DECIMAL data types, specifies the total number of digits in the fractional part of the value. Defaults to 0.
Declaration
Swift
public let scale: Int? -
The schema name (database name) to which the query results belong.
Declaration
Swift
public let schemaName: String? -
The table name for the query results.
Declaration
Swift
public let tableName: String? -
The data type of the column.
Declaration
Swift
public let type: String -
Undocumented
Declaration
Swift
public init(caseSensitive: Bool? = nil, catalogName: String? = nil, label: String? = nil, name: String, nullable: ColumnNullable? = nil, precision: Int? = nil, scale: Int? = nil, schemaName: String? = nil, tableName: String? = nil, type: String)
View on GitHub
ColumnInfo Structure Reference