Skip to main content

external_data_view_access_details

Creates, updates, deletes, gets or lists an external_data_view_access_details resource.

Overview

Nameexternal_data_view_access_details
TypeResource
Idaws.finspace_data.external_data_view_access_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
credentialsobjectThe credentials required to access the external Dataview from the S3 location.
s_3_locationobjectThe location where the external Dataview is stored.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_external_data_view_access_detailsselectdataview_id, dataset_id, regionReturns the credentials to access the external Dataview from an S3 location. To call this API: You must retrieve the programmatic credentials. You must be a member of a FinSpace user group, where the dataset that you want to access has Read Dataset Data permissions.

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
dataset_idstringThe unique identifier for the Dataset.
dataview_idstringThe unique identifier for the Dataview that you want to access.
regionstringAWS region (default: us-east-1)

SELECT examples

Returns the credentials to access the external Dataview from an S3 location. To call this API: You must retrieve the programmatic credentials. You must be a member of a FinSpace user group, where the dataset that you want to access has Read Dataset Data permissions.

SELECT
credentials,
s_3_location
FROM aws.finspace_data.external_data_view_access_details
WHERE dataview_id = '{{ dataview_id }}' -- required
AND dataset_id = '{{ dataset_id }}' -- required
AND region = '{{ region }}' -- required
;