UpdateTableRequest
public struct UpdateTableRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ID of the Data Catalog where the table resides. If none is provided, the AWS account ID is used by default.
Declaration
Swift
public let catalogId: String?
-
The name of the catalog database in which the table resides. For Hive compatibility, this name is entirely lowercase.
Declaration
Swift
public let databaseName: String
-
By default, UpdateTable always creates an archived version of the table before updating it. However, if skipArchive is set to true, UpdateTable does not create the archived version.
Declaration
Swift
public let skipArchive: Bool?
-
An updated TableInput object to define the metadata table in the catalog.
Declaration
Swift
public let tableInput: TableInput
-
Undocumented
Declaration
Swift
public init(catalogId: String? = nil, databaseName: String, skipArchive: Bool? = nil, tableInput: TableInput)
-
Declaration
Swift
public func validate(name: String) throws