Get Partition Indexes
| glue_get_partition_indexes | R Documentation | 
Retrieves the partition indexes associated with a table¶
Description¶
Retrieves the partition indexes associated with a table.
Usage¶
glue_get_partition_indexes(CatalogId, DatabaseName, TableName,
  NextToken)
Arguments¶
CatalogId | 
The catalog ID where the table resides.  | 
DatabaseName | 
[required] Specifies the name of a database from which you want to retrieve partition indexes.  | 
TableName | 
[required] Specifies the name of a table for which you want to retrieve the partition indexes.  | 
NextToken | 
A continuation token, included if this is a continuation call.  | 
Value¶
A list with the following syntax:
list(
  PartitionIndexDescriptorList = list(
    list(
      IndexName = "string",
      Keys = list(
        list(
          Name = "string",
          Type = "string"
        )
      ),
      IndexStatus = "CREATING"|"ACTIVE"|"DELETING"|"FAILED",
      BackfillErrors = list(
        list(
          Code = "ENCRYPTED_PARTITION_ERROR"|"INTERNAL_ERROR"|"INVALID_PARTITION_TYPE_DATA_ERROR"|"MISSING_PARTITION_VALUE_ERROR"|"UNSUPPORTED_PARTITION_CHARACTER_ERROR",
          Partitions = list(
            list(
              Values = list(
                "string"
              )
            )
          )
        )
      )
    )
  ),
  NextToken = "string"
)
Request syntax¶
svc$get_partition_indexes(
  CatalogId = "string",
  DatabaseName = "string",
  TableName = "string",
  NextToken = "string"
)