Skip to content

List Project Profiles

datazone_list_project_profiles R Documentation

Lists project profiles

Description

Lists project profiles.

Usage

datazone_list_project_profiles(domainIdentifier, name, sortBy,
  sortOrder, nextToken, maxResults)

Arguments

domainIdentifier

[required] The ID of the domain where you want to list project profiles.

name

The name of a project profile.

sortBy

Specifies by what to sort project profiles.

sortOrder

Specifies the sort order of the project profiles.

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.

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.

Value

A list with the following syntax:

list(
  items = list(
    list(
      domainId = "string",
      id = "string",
      name = "string",
      description = "string",
      status = "ENABLED"|"DISABLED",
      createdBy = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      domainUnitId = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_project_profiles(
  domainIdentifier = "string",
  name = "string",
  sortBy = "NAME",
  sortOrder = "ASCENDING"|"DESCENDING",
  nextToken = "string",
  maxResults = 123
)