CreateTableRequest
public struct CreateTableRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ID of the Data Catalog in which to create the Table. If none is supplied, the AWS account ID is used by default.
Declaration
Swift
public let catalogId: String?
-
The catalog database in which to create the new table. For Hive compatibility, this name is entirely lowercase.
Declaration
Swift
public let databaseName: String
-
A list of partition indexes, PartitionIndex structures, to create in the table.
Declaration
Swift
public let partitionIndexes: [PartitionIndex]?
-
The TableInput object that defines the metadata table to create in the catalog.
Declaration
Swift
public let tableInput: TableInput
-
Undocumented
Declaration
Swift
public init(catalogId: String? = nil, databaseName: String, partitionIndexes: [PartitionIndex]? = nil, tableInput: TableInput)
-
Declaration
Swift
public func validate(name: String) throws