Skip to main content

working_locations

Creates, updates, deletes, gets or lists a working_locations resource.

Overview

Nameworking_locations
TypeResource
Idaws.finspace_data.working_locations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
s_3_bucketstringReturns the Amazon S3 bucket name for the working location. (pattern: <code>.\S.</code>)
s_3_pathstringReturns the Amazon S3 Path for the working location. (pattern: <code>.\S.</code>)
s_3_uristringReturns the Amazon S3 URI for the working location. (pattern: <code>.\S.</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_working_locationselectregionA 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.

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

SELECT examples

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
;