working_locations
Creates, updates, deletes, gets or lists a working_locations resource.
Overview
| Name | working_locations |
| Type | Resource |
| Id | aws.finspace_data.working_locations |
Fields
The following fields are returned by SELECT queries:
- get_working_location
| Name | Datatype | Description |
|---|---|---|
s_3_bucket | string | Returns the Amazon S3 bucket name for the working location. (pattern: <code>.\S.</code>) |
s_3_path | string | Returns the Amazon S3 Path for the working location. (pattern: <code>.\S.</code>) |
s_3_uri | string | Returns the Amazon S3 URI for the working location. (pattern: <code>.\S.</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_working_location | select | region | A temporary Amazon S3 location, where you can copy your files from a source location to stage or use as a scratch space in FinSpace notebook. |
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_working_location
A temporary Amazon S3 location, where you can copy your files from a source location to stage or use as a scratch space in FinSpace notebook.
SELECT
s_3_bucket,
s_3_path,
s_3_uri
FROM aws.finspace_data.working_locations
WHERE region = '{{ region }}' -- required
;