effective_permissions_for_paths
Creates, updates, deletes, gets or lists an effective_permissions_for_paths resource.
Overview
| Name | effective_permissions_for_paths |
| Type | Resource |
| Id | aws.lakeformation.effective_permissions_for_paths |
Fields
The following fields are returned by SELECT queries:
- get_effective_permissions_for_path
| Name | Datatype | Description |
|---|---|---|
next_token | string | A continuation token, if this is not the first call to retrieve this list. |
permissions | array | A list of the permissions for the specified table or database resource located at the path in Amazon S3. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_effective_permissions_for_path | select | region | Returns the Lake Formation permissions for a specified table or database resource located at a path in Amazon S3. GetEffectivePermissionsForPath will not return databases and tables if the catalog is encrypted. |
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_effective_permissions_for_path
Returns the Lake Formation permissions for a specified table or database resource located at a path in Amazon S3. GetEffectivePermissionsForPath will not return databases and tables if the catalog is encrypted.
SELECT
next_token,
permissions
FROM aws.lakeformation.effective_permissions_for_paths
WHERE region = '{{ region }}' -- required
;