List Domain Object Types
| customerprofiles_list_domain_object_types | R Documentation |
List all DomainObjectType(s) in a Customer Profiles domain¶
Description¶
List all DomainObjectType(s) in a Customer Profiles domain.
Usage¶
customerprofiles_list_domain_object_types(DomainName, MaxResults,
NextToken)
Arguments¶
DomainName |
[required] The unique name of the domain. |
MaxResults |
The maximum number of domain object types returned per page. |
NextToken |
The pagination token from the previous call to ListDomainObjectTypes. |
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"
),
Tags = list(
"string"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_domain_object_types(
DomainName = "string",
MaxResults = 123,
NextToken = "string"
)