Skip to content

List Domains

customerprofiles_list_domains R Documentation

Returns a list of all the domains for an AWS account that have been created

Description

Returns a list of all the domains for an AWS account that have been created.

Usage

customerprofiles_list_domains(NextToken, MaxResults)

Arguments

NextToken

The pagination token from the previous ListDomain API call.

MaxResults

The maximum number of objects returned per page.

Value

A list with the following syntax:

list(
  Items = list(
    list(
      DomainName = "string",
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      Tags = list(
        "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_domains(
  NextToken = "string",
  MaxResults = 123
)