Skip to content

Get External Data View Access Details

finspacedata_get_external_data_view_access_details R Documentation

Returns the credentials to access the external Dataview from an S3 location

Description

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.

Usage

finspacedata_get_external_data_view_access_details(dataViewId,
  datasetId)

Arguments

dataViewId

[required] The unique identifier for the Dataview that you want to access.

datasetId

[required] The unique identifier for the Dataset.

Value

A list with the following syntax:

list(
  credentials = list(
    accessKeyId = "string",
    secretAccessKey = "string",
    sessionToken = "string",
    expiration = 123
  ),
  s3Location = list(
    bucket = "string",
    key = "string"
  )
)

Request syntax

svc$get_external_data_view_access_details(
  dataViewId = "string",
  datasetId = "string"
)