Starts a recommendation run that is used to generate rules when you don't know what rules to write
Source:R/glue_operations.R
glue_start_data_quality_rule_recommendation_run.RdStarts a recommendation run that is used to generate rules when you don't know what rules to write. Glue Data Quality analyzes the data and comes up with recommendations for a potential ruleset. You can then triage the ruleset and modify the generated ruleset to your liking.
See https://www.paws-r-sdk.com/docs/glue_start_data_quality_rule_recommendation_run/ for full documentation.
Usage
glue_start_data_quality_rule_recommendation_run(
DataSource,
Role,
NumberOfWorkers = NULL,
Timeout = NULL,
CreatedRulesetName = NULL,
DataQualitySecurityConfiguration = NULL,
ClientToken = NULL
)Arguments
- DataSource
[required] The data source (Glue table) associated with this run.
- Role
[required] An IAM role supplied to encrypt the results of the run.
- NumberOfWorkers
The number of
G.1Xworkers to be used in the run. The default is 5.- Timeout
The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and enters
TIMEOUTstatus. The default is 2,880 minutes (48 hours).- CreatedRulesetName
A name for the ruleset.
- DataQualitySecurityConfiguration
The name of the security configuration created with the data quality encryption option.
- ClientToken
Used for idempotency and is recommended to be set to a random ID (such as a UUID) to avoid creating or starting multiple instances of the same resource.