List Asset Filters
| datazone_list_asset_filters | R Documentation |
Lists asset filters¶
Description¶
Lists asset filters.
Prerequisites:
-
A valid domain and asset must exist.
-
The asset must have at least one filter created to return results.
Usage¶
datazone_list_asset_filters(domainIdentifier, assetIdentifier, status,
nextToken, maxResults)
Arguments¶
domainIdentifier |
[required] The ID of the domain where you want to list asset filters. |
assetIdentifier |
[required] The ID of the data asset. |
status |
The status of the asset filter. |
nextToken |
When the number of asset filters is greater than the default
value for the |
maxResults |
The maximum number of asset filters to return in a single call to
|
Value¶
A list with the following syntax:
list(
items = list(
list(
id = "string",
domainId = "string",
assetId = "string",
name = "string",
description = "string",
status = "VALID"|"INVALID",
effectiveColumnNames = list(
"string"
),
effectiveRowFilter = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
errorMessage = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_asset_filters(
domainIdentifier = "string",
assetIdentifier = "string",
status = "VALID"|"INVALID",
nextToken = "string",
maxResults = 123
)