List Project Profiles
datazone_list_project_profiles | R Documentation |
Lists project profiles¶
Description¶
Lists project profiles.
Usage¶
datazone_list_project_profiles(domainIdentifier, maxResults, name,
nextToken, sortBy, sortOrder)
Arguments¶
domainIdentifier |
[required] The ID of the domain where you want to list project profiles. |
maxResults |
The maximum number of project profiles to return in a single call to ListProjectProfiles. When the number of project profiles to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListProjectProfiles to list the next set of project profiles. |
name |
The name of a project profile. |
nextToken |
When the number of project profiles is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of project profiles, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListProjectProfiles to list the next set of project profiles. |
sortBy |
Specifies by what to sort project profiles. |
sortOrder |
Specifies the sort order of the project profiles. |
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",
id = "string",
lastUpdatedAt = as.POSIXct(
"2015-01-01"
),
name = "string",
status = "ENABLED"|"DISABLED"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_project_profiles(
domainIdentifier = "string",
maxResults = 123,
name = "string",
nextToken = "string",
sortBy = "NAME",
sortOrder = "ASCENDING"|"DESCENDING"
)