ColumnMetadata
public struct ColumnMetadata : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember] -
The type of the column.
Declaration
Swift
public let arrayBaseColumnType: Int? -
A value that indicates whether the column increments automatically.
Declaration
Swift
public let isAutoIncrement: Bool? -
A value that indicates whether the column is case-sensitive.
Declaration
Swift
public let isCaseSensitive: Bool? -
A value that indicates whether the column contains currency values.
Declaration
Swift
public let isCurrency: Bool? -
A value that indicates whether an integer column is signed.
Declaration
Swift
public let isSigned: Bool? -
The label for the column.
Declaration
Swift
public let label: String? -
The name of the column.
Declaration
Swift
public let name: String? -
A value that indicates whether the column is nullable.
Declaration
Swift
public let nullable: Int? -
The precision value of a decimal number column.
Declaration
Swift
public let precision: Int? -
The scale value of a decimal number column.
Declaration
Swift
public let scale: Int? -
The name of the schema that owns the table that includes the column.
Declaration
Swift
public let schemaName: String? -
The name of the table that includes the column.
Declaration
Swift
public let tableName: String? -
The type of the column.
Declaration
Swift
public let type: Int? -
The database-specific data type of the column.
Declaration
Swift
public let typeName: String? -
init(arrayBaseColumnType:isAutoIncrement:isCaseSensitive:isCurrency:isSigned:label:name:nullable:precision:scale:schemaName:tableName:type:typeName:)Undocumented
Declaration
Swift
public init(arrayBaseColumnType: Int? = nil, isAutoIncrement: Bool? = nil, isCaseSensitive: Bool? = nil, isCurrency: Bool? = nil, isSigned: Bool? = nil, label: String? = nil, name: String? = nil, nullable: Int? = nil, precision: Int? = nil, scale: Int? = nil, schemaName: String? = nil, tableName: String? = nil, type: Int? = nil, typeName: String? = nil)
View on GitHub
ColumnMetadata Structure Reference