List Projects
| datazone_list_projects | R Documentation |
Lists Amazon DataZone projects¶
Description¶
Lists Amazon DataZone projects.
Usage¶
datazone_list_projects(domainIdentifier, userIdentifier,
groupIdentifier, name, projectCategory, nextToken, maxResults)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon DataZone domain. |
userIdentifier |
The identifier of the Amazon DataZone user. |
groupIdentifier |
The identifier of a group. |
name |
The name of the project. |
projectCategory |
A parameter to filter projects by their category. |
nextToken |
When the number of projects is greater than the default value for
the |
maxResults |
The maximum number of projects to return in a single call to
|
Value¶
A list with the following syntax:
list(
items = list(
list(
domainId = "string",
id = "string",
name = "string",
description = "string",
projectStatus = "ACTIVE"|"DELETING"|"DELETE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"MOVING",
failureReasons = list(
list(
code = "string",
message = "string"
)
),
createdBy = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
domainUnitId = "string",
projectCategory = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_projects(
domainIdentifier = "string",
userIdentifier = "string",
groupIdentifier = "string",
name = "string",
projectCategory = "string",
nextToken = "string",
maxResults = 123
)