Create Asset Filter
datazone_create_asset_filter | R Documentation |
Creates a data asset filter¶
Description¶
Creates a data asset filter.
Usage¶
datazone_create_asset_filter(assetIdentifier, clientToken,
configuration, description, domainIdentifier, name)
Arguments¶
assetIdentifier
[required] The ID of the data asset.
clientToken
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
configuration
[required] The configuration of the asset filter.
description
The description of the asset filter.
domainIdentifier
[required] The ID of the domain in which you want to create an asset filter.
name
[required] The name of the asset filter.
Value¶
A list with the following syntax:
list(
assetId = "string",
configuration = list(
columnConfiguration = list(
includedColumnNames = list(
"string"
)
),
rowConfiguration = list(
rowFilter = list(
and = list(
list()
),
expression = list(
equalTo = list(
columnName = "string",
value = "string"
),
greaterThan = list(
columnName = "string",
value = "string"
),
greaterThanOrEqualTo = list(
columnName = "string",
value = "string"
),
in = list(
columnName = "string",
values = list(
"string"
)
),
isNotNull = list(
columnName = "string"
),
isNull = list(
columnName = "string"
),
lessThan = list(
columnName = "string",
value = "string"
),
lessThanOrEqualTo = list(
columnName = "string",
value = "string"
),
like = list(
columnName = "string",
value = "string"
),
notEqualTo = list(
columnName = "string",
value = "string"
),
notIn = list(
columnName = "string",
values = list(
"string"
)
),
notLike = list(
columnName = "string",
value = "string"
)
),
or = list(
list()
)
),
sensitive = TRUE|FALSE
)
),
createdAt = as.POSIXct(
"2015-01-01"
),
description = "string",
domainId = "string",
effectiveColumnNames = list(
"string"
),
effectiveRowFilter = "string",
errorMessage = "string",
id = "string",
name = "string",
status = "VALID"|"INVALID"
)
Request syntax¶
svc$create_asset_filter(
assetIdentifier = "string",
clientToken = "string",
configuration = list(
columnConfiguration = list(
includedColumnNames = list(
"string"
)
),
rowConfiguration = list(
rowFilter = list(
and = list(
list()
),
expression = list(
equalTo = list(
columnName = "string",
value = "string"
),
greaterThan = list(
columnName = "string",
value = "string"
),
greaterThanOrEqualTo = list(
columnName = "string",
value = "string"
),
in = list(
columnName = "string",
values = list(
"string"
)
),
isNotNull = list(
columnName = "string"
),
isNull = list(
columnName = "string"
),
lessThan = list(
columnName = "string",
value = "string"
),
lessThanOrEqualTo = list(
columnName = "string",
value = "string"
),
like = list(
columnName = "string",
value = "string"
),
notEqualTo = list(
columnName = "string",
value = "string"
),
notIn = list(
columnName = "string",
values = list(
"string"
)
),
notLike = list(
columnName = "string",
value = "string"
)
),
or = list(
list()
)
),
sensitive = TRUE|FALSE
)
),
description = "string",
domainIdentifier = "string",
name = "string"
)