paws.analytics (version 0.1.0)

glue_batch_delete_partition: Deletes one or more partitions in a batch operation

Description

Deletes one or more partitions in a batch operation.

Usage

glue_batch_delete_partition(CatalogId, DatabaseName, TableName,
  PartitionsToDelete)

Arguments

CatalogId

The ID of the Data Catalog where the partition to be deleted resides. If none is supplied, the AWS account ID is used by default.

DatabaseName

[required] The name of the catalog database in which the table in question resides.

TableName

[required] The name of the table where the partitions to be deleted is located.

PartitionsToDelete

[required] A list of PartitionInput structures that define the partitions to be deleted.

Request syntax

svc$batch_delete_partition(
  CatalogId = "string",
  DatabaseName = "string",
  TableName = "string",
  PartitionsToDelete = list(
    list(
      Values = list(
        "string"
      )
    )
  )
)