List Filters
| personalize_list_filters | R Documentation |
Lists all filters that belong to a given dataset group¶
Description¶
Lists all filters that belong to a given dataset group.
Usage¶
Arguments¶
datasetGroupArnThe ARN of the dataset group that contains the filters.
nextTokenA token returned from the previous call to
list_filtersfor getting the next set of filters (if they exist).maxResultsThe maximum number of filters to return.
Value¶
A list with the following syntax:
list(
Filters = list(
list(
name = "string",
filterArn = "string",
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
),
datasetGroupArn = "string",
failureReason = "string",
status = "string"
)
),
nextToken = "string"
)