List Asset Filters
datazone_list_asset_filters | R Documentation |
Lists asset filters¶
Description¶
Lists asset filters.
Usage¶
Arguments¶
assetIdentifier
[required] The ID of the data asset.
domainIdentifier
[required] The ID of the domain where you want to list asset filters.
maxResults
The maximum number of asset filters to return in a single call to
list_asset_filters
. When the number of asset filters to be listed is greater than the value ofMaxResults
, the response contains aNextToken
value that you can use in a subsequent call tolist_asset_filters
to list the next set of asset filters.nextToken
When the number of asset filters is greater than the default value for the
MaxResults
parameter, or if you explicitly specify a value forMaxResults
that is less than the number of asset filters, the response includes a pagination token namedNextToken
. You can specify thisNextToken
value in a subsequent call tolist_asset_filters
to list the next set of asset filters.status
The status of the asset filter.
Value¶
A list with the following syntax:
list(
items = list(
list(
assetId = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
description = "string",
domainId = "string",
effectiveColumnNames = list(
"string"
),
effectiveRowFilter = "string",
errorMessage = "string",
id = "string",
name = "string",
status = "VALID"|"INVALID"
)
),
nextToken = "string"
)