DeletePartitionRequest

public struct DeletePartitionRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ID of the Data Catalog where the partition to be deleted 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 in question resides.

    Declaration

    Swift

    public let databaseName: String
  • The values that define the partition.

    Declaration

    Swift

    public let partitionValues: [String]
  • The name of the table that contains the partition to be deleted.

    Declaration

    Swift

    public let tableName: String
  • Undocumented

    Declaration

    Swift

    public init(catalogId: String? = nil, databaseName: String, partitionValues: [String], tableName: String)
  • Declaration

    Swift

    public func validate(name: String) throws