Value
public class Value : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
An array of column values.
Declaration
Swift
public let arrayValues: [Value]?
-
A value for a column of big integer data type.
Declaration
Swift
public let bigIntValue: Int64?
-
A value for a column of BIT data type.
Declaration
Swift
public let bitValue: Bool?
-
A value for a column of BLOB data type.
Declaration
Swift
public let blobValue: Data?
-
A value for a column of double data type.
Declaration
Swift
public let doubleValue: Double?
-
A value for a column of integer data type.
Declaration
Swift
public let intValue: Int?
-
A NULL value.
Declaration
Swift
public let isNull: Bool?
-
A value for a column of real data type.
Declaration
Swift
public let realValue: Float?
-
A value for a column of string data type.
Declaration
Swift
public let stringValue: String?
-
A value for a column of STRUCT data type.
Declaration
Swift
public let structValue: StructValue?
-
init(arrayValues:bigIntValue:bitValue:blobValue:doubleValue:intValue:isNull:realValue:stringValue:structValue:)
Undocumented
Declaration
Swift
public init(arrayValues: [Value]? = nil, bigIntValue: Int64? = nil, bitValue: Bool? = nil, blobValue: Data? = nil, doubleValue: Double? = nil, intValue: Int? = nil, isNull: Bool? = nil, realValue: Float? = nil, stringValue: String? = nil, structValue: StructValue? = nil)