Get Data Quality Ruleset
| glue_get_data_quality_ruleset | R Documentation | 
Returns an existing ruleset by identifier or name¶
Description¶
Returns an existing ruleset by identifier or name.
Usage¶
glue_get_data_quality_ruleset(Name)
Arguments¶
Name | 
[required] The name of the ruleset.  | 
Value¶
A list with the following syntax:
list(
  Name = "string",
  Description = "string",
  Ruleset = "string",
  TargetTable = list(
    TableName = "string",
    DatabaseName = "string",
    CatalogId = "string"
  ),
  CreatedOn = as.POSIXct(
    "2015-01-01"
  ),
  LastModifiedOn = as.POSIXct(
    "2015-01-01"
  ),
  RecommendationRunId = "string",
  DataQualitySecurityConfiguration = "string"
)
Request syntax¶
svc$get_data_quality_ruleset(
  Name = "string"
)