Skip to main content

unfiltered_partition_metadatas

Creates, updates, deletes, gets or lists an unfiltered_partition_metadatas resource.

Overview

Nameunfiltered_partition_metadatas
TypeResource
Idaws.glue.unfiltered_partition_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
authorized_columnsarrayA list of column names that the user has been granted access to.
is_registered_with_lake_formationbooleanA Boolean value that indicates whether the partition location is registered with Lake Formation.
partitionobjectRepresents a slice of table data.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_unfiltered_partition_metadataselectregionRetrieves partition metadata from the Data Catalog that contains unfiltered metadata. For IAM authorization, the public IAM action associated with this API is glue:GetPartition.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves partition metadata from the Data Catalog that contains unfiltered metadata. For IAM authorization, the public IAM action associated with this API is glue:GetPartition.

SELECT
authorized_columns,
is_registered_with_lake_formation,
partition
FROM aws.glue.unfiltered_partition_metadatas
WHERE region = '{{ region }}' -- required
;