unfiltered_partition_metadatas
Creates, updates, deletes, gets or lists an unfiltered_partition_metadatas resource.
Overview
| Name | unfiltered_partition_metadatas |
| Type | Resource |
| Id | aws.glue.unfiltered_partition_metadatas |
Fields
The following fields are returned by SELECT queries:
- get_unfiltered_partition_metadata
| Name | Datatype | Description |
|---|---|---|
authorized_columns | array | A list of column names that the user has been granted access to. |
is_registered_with_lake_formation | boolean | A Boolean value that indicates whether the partition location is registered with Lake Formation. |
partition | object | Represents a slice of table data. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_unfiltered_partition_metadata | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_unfiltered_partition_metadata
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
;