List Data Quality Rulesets
| glue_list_data_quality_rulesets | R Documentation |
Returns a paginated list of rulesets for the specified list of Glue tables¶
Description¶
Returns a paginated list of rulesets for the specified list of Glue tables.
Usage¶
Arguments¶
NextTokenA paginated token to offset the results.
MaxResultsThe maximum number of results to return.
FilterThe filter criteria.
TagsA list of key-value pair tags.
Value¶
A list with the following syntax:
list(
Rulesets = list(
list(
Name = "string",
Description = "string",
CreatedOn = as.POSIXct(
"2015-01-01"
),
LastModifiedOn = as.POSIXct(
"2015-01-01"
),
TargetTable = list(
TableName = "string",
DatabaseName = "string",
CatalogId = "string"
),
RecommendationRunId = "string",
RuleCount = 123
)
),
NextToken = "string"
)
Request syntax¶
svc$list_data_quality_rulesets(
NextToken = "string",
MaxResults = 123,
Filter = list(
Name = "string",
Description = "string",
CreatedBefore = as.POSIXct(
"2015-01-01"
),
CreatedAfter = as.POSIXct(
"2015-01-01"
),
LastModifiedBefore = as.POSIXct(
"2015-01-01"
),
LastModifiedAfter = as.POSIXct(
"2015-01-01"
),
TargetTable = list(
TableName = "string",
DatabaseName = "string",
CatalogId = "string"
)
),
Tags = list(
"string"
)
)