List Projects
| datazone_list_projects | R Documentation |
Lists Amazon DataZone projects¶
Description¶
Lists Amazon DataZone projects.
Usage¶
datazone_list_projects(domainIdentifier, groupIdentifier, maxResults,
name, nextToken, userIdentifier)
Arguments¶
domainIdentifier[required] The identifier of the Amazon DataZone domain.
groupIdentifierThe identifier of a group.
maxResultsThe maximum number of projects to return in a single call to
list_projects. When the number of projects to be listed is greater than the value ofMaxResults, the response contains aNextTokenvalue that you can use in a subsequent call tolist_projectsto list the next set of projects.nameThe name of the project.
nextTokenWhen the number of projects is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of projects, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call tolist_projectsto list the next set of projects.userIdentifierThe identifier of the Amazon DataZone user.
Value¶
A list with the following syntax:
list(
items = list(
list(
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
description = "string",
domainId = "string",
domainUnitId = "string",
failureReasons = list(
list(
code = "string",
message = "string"
)
),
id = "string",
name = "string",
projectStatus = "ACTIVE"|"DELETING"|"DELETE_FAILED",
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)