Skip to content

List Profile Object Types

customerprofiles_list_profile_object_types R Documentation

Lists all of the templates available within the service

Description

Lists all of the templates available within the service.

Usage

customerprofiles_list_profile_object_types(DomainName, NextToken,
  MaxResults)

Arguments

DomainName

[required] The unique name of the domain.

NextToken

Identifies the next page of results to return.

MaxResults

The maximum number of objects returned per page.

Value

A list with the following syntax:

list(
  Items = list(
    list(
      ObjectTypeName = "string",
      Description = "string",
      CreatedAt = as.POSIXct(
        "2015-01-01"
      ),
      LastUpdatedAt = as.POSIXct(
        "2015-01-01"
      ),
      MaxProfileObjectCount = 123,
      MaxAvailableProfileObjectCount = 123,
      Tags = list(
        "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_profile_object_types(
  DomainName = "string",
  NextToken = "string",
  MaxResults = 123
)