Skip to content

List Projects

gluedatabrew_list_projects R Documentation

Lists all of the DataBrew projects that are defined

Description

Lists all of the DataBrew projects that are defined.

Usage

gluedatabrew_list_projects(NextToken, MaxResults)

Arguments

NextToken

The token returned by a previous call to retrieve the next set of results.

MaxResults

The maximum number of results to return in this request.

Value

A list with the following syntax:

list(
  Projects = list(
    list(
      AccountId = "string",
      CreateDate = as.POSIXct(
        "2015-01-01"
      ),
      CreatedBy = "string",
      DatasetName = "string",
      LastModifiedDate = as.POSIXct(
        "2015-01-01"
      ),
      LastModifiedBy = "string",
      Name = "string",
      RecipeName = "string",
      ResourceArn = "string",
      Sample = list(
        Size = 123,
        Type = "FIRST_N"|"LAST_N"|"RANDOM"
      ),
      Tags = list(
        "string"
      ),
      RoleArn = "string",
      OpenedBy = "string",
      OpenDate = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_projects(
  NextToken = "string",
  MaxResults = 123
)