unfiltered_partitions_metadatas
Creates, updates, deletes, gets or lists an unfiltered_partitions_metadatas resource.
Overview
| Name | unfiltered_partitions_metadatas |
| Type | Resource |
| Id | aws.glue.unfiltered_partitions_metadatas |
Fields
The following fields are returned by SELECT queries:
- get_unfiltered_partitions_metadata
| Name | Datatype | Description |
|---|---|---|
next_token | string | A continuation token, if the returned list of partitions does not include the last one. |
unfiltered_partitions | array | A list of requested partitions. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_unfiltered_partitions_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:GetPartitions. |
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_partitions_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:GetPartitions.
SELECT
next_token,
unfiltered_partitions
FROM aws.glue.unfiltered_partitions_metadatas
WHERE region = '{{ region }}' -- required
;