Get Data View
finspacedata_get_data_view | R Documentation |
Gets information about a Dataview¶
Description¶
Gets information about a Dataview.
Usage¶
Arguments¶
dataViewId
[required] The unique identifier for the Dataview.
datasetId
[required] The unique identifier for the Dataset used in the Dataview.
Value¶
A list with the following syntax:
list(
autoUpdate = TRUE|FALSE,
partitionColumns = list(
"string"
),
datasetId = "string",
asOfTimestamp = 123,
errorInfo = list(
errorMessage = "string",
errorCategory = "VALIDATION"|"SERVICE_QUOTA_EXCEEDED"|"ACCESS_DENIED"|"RESOURCE_NOT_FOUND"|"THROTTLING"|"INTERNAL_SERVICE_EXCEPTION"|"CANCELLED"|"USER_RECOVERABLE"
),
lastModifiedTime = 123,
createTime = 123,
sortColumns = list(
"string"
),
dataViewId = "string",
dataViewArn = "string",
destinationTypeParams = list(
destinationType = "string",
s3DestinationExportFileFormat = "PARQUET"|"DELIMITED_TEXT",
s3DestinationExportFileFormatOptions = list(
"string"
)
),
status = "RUNNING"|"STARTING"|"FAILED"|"CANCELLED"|"TIMEOUT"|"SUCCESS"|"PENDING"|"FAILED_CLEANUP_FAILED"
)