List Contact Lists
sesv2_list_contact_lists | R Documentation |
Lists all of the contact lists available¶
Description¶
Lists all of the contact lists available.
If your output includes a "NextToken" field with a string value, this indicates there may be additional contacts on the filtered list - regardless of the number of contacts returned.
Usage¶
sesv2_list_contact_lists(PageSize, NextToken)
Arguments¶
PageSize |
Maximum number of contact lists to return at once. Use this
parameter to paginate results. If additional contact lists exist beyond
the specified limit, the |
NextToken |
A string token indicating that there might be additional contact lists available to be listed. Use the token provided in the Response to use in the subsequent call to ListContactLists with the same parameters to retrieve the next page of contact lists. |
Value¶
A list with the following syntax:
list(
ContactLists = list(
list(
ContactListName = "string",
LastUpdatedTimestamp = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$list_contact_lists(
PageSize = 123,
NextToken = "string"
)