Skip to content

List Object Type Attributes

customerprofiles_list_object_type_attributes R Documentation

Fetch the possible attribute values given the attribute name

Description

Fetch the possible attribute values given the attribute name.

Usage

customerprofiles_list_object_type_attributes(NextToken, MaxResults,
  DomainName, ObjectTypeName)

Arguments

NextToken

The pagination token from the previous call.

MaxResults

The maximum number of objects returned per page.

DomainName

[required] The unique identifier of the domain.

ObjectTypeName

[required] The name of the profile object type.

Value

A list with the following syntax:

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

Request syntax

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