Skip to content

List Attribute Groups

appregistry_list_attribute_groups R Documentation

Lists all attribute groups which you have access to

Description

Lists all attribute groups which you have access to. Results are paginated.

Usage

appregistry_list_attribute_groups(nextToken, maxResults)

Arguments

nextToken

The token to use to get the next page of results after a previous API call.

maxResults

The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.

Value

A list with the following syntax:

list(
  attributeGroups = list(
    list(
      id = "string",
      arn = "string",
      name = "string",
      description = "string",
      creationTime = as.POSIXct(
        "2015-01-01"
      ),
      lastUpdateTime = as.POSIXct(
        "2015-01-01"
      ),
      createdBy = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_attribute_groups(
  nextToken = "string",
  maxResults = 123
)