Skip to content

List Datasets

finspacedata_list_datasets R Documentation

Lists all of the active Datasets that a user has access to

Description

Lists all of the active Datasets that a user has access to.

Usage

finspacedata_list_datasets(nextToken, maxResults)

Arguments

nextToken

A token that indicates where a results page should begin.

maxResults

The maximum number of results per page.

Value

A list with the following syntax:

list(
  datasets = list(
    list(
      datasetId = "string",
      datasetArn = "string",
      datasetTitle = "string",
      kind = "TABULAR"|"NON_TABULAR",
      datasetDescription = "string",
      ownerInfo = list(
        name = "string",
        phoneNumber = "string",
        email = "string"
      ),
      createTime = 123,
      lastModifiedTime = 123,
      schemaDefinition = list(
        tabularSchemaConfig = list(
          columns = list(
            list(
              dataType = "STRING"|"CHAR"|"INTEGER"|"TINYINT"|"SMALLINT"|"BIGINT"|"FLOAT"|"DOUBLE"|"DATE"|"DATETIME"|"BOOLEAN"|"BINARY",
              columnName = "string",
              columnDescription = "string"
            )
          ),
          primaryKeyColumns = list(
            "string"
          )
        )
      ),
      alias = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_datasets(
  nextToken = "string",
  maxResults = 123
)