Get Data Quality Rule Recommendation Run
glue_get_data_quality_rule_recommendation_run | R Documentation |
Gets the specified recommendation run that was used to generate rules¶
Description¶
Gets the specified recommendation run that was used to generate rules.
Usage¶
glue_get_data_quality_rule_recommendation_run(RunId)
Arguments¶
RunId |
[required] The unique run identifier associated with this run. |
Value¶
A list with the following syntax:
list(
RunId = "string",
DataSource = list(
GlueTable = list(
DatabaseName = "string",
TableName = "string",
CatalogId = "string",
ConnectionName = "string",
AdditionalOptions = list(
"string"
)
)
),
Role = "string",
NumberOfWorkers = 123,
Timeout = 123,
Status = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT",
ErrorString = "string",
StartedOn = as.POSIXct(
"2015-01-01"
),
LastModifiedOn = as.POSIXct(
"2015-01-01"
),
CompletedOn = as.POSIXct(
"2015-01-01"
),
ExecutionTime = 123,
RecommendedRuleset = "string",
CreatedRulesetName = "string",
DataQualitySecurityConfiguration = "string"
)
Request syntax¶
svc$get_data_quality_rule_recommendation_run(
RunId = "string"
)