ColumnMetadata
public struct ColumnMetadata : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The default value of the column.
Declaration
Swift
public let columnDefault: String?
-
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 length of the column.
Declaration
Swift
public let length: Int?
-
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 contains 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 database-specific data type of the column.
Declaration
Swift
public let typeName: String?
-
init(columnDefault:isCaseSensitive:isCurrency:isSigned:label:length:name:nullable:precision:scale:schemaName:tableName:typeName:)
Undocumented
Declaration
Swift
public init(columnDefault: String? = nil, isCaseSensitive: Bool? = nil, isCurrency: Bool? = nil, isSigned: Bool? = nil, label: String? = nil, length: Int? = nil, name: String? = nil, nullable: Int? = nil, precision: Int? = nil, scale: Int? = nil, schemaName: String? = nil, tableName: String? = nil, typeName: String? = nil)