{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-start-data-quality-rule-recommendation-run-request-schema.json",
"title": "StartDataQualityRuleRecommendationRunRequest",
"description": "StartDataQualityRuleRecommendationRunRequest schema from Amazon Glue API",
"type": "object",
"properties": {
"DataSource": {
"allOf": [
{
"$ref": "#/components/schemas/DataSource"
},
{
"description": "The data source (Glue table) associated with this run."
}
]
},
"Role": {
"allOf": [
{
"$ref": "#/components/schemas/RoleString"
},
{
"description": "An IAM role supplied to encrypt the results of the run."
}
]
},
"NumberOfWorkers": {
"allOf": [
{
"$ref": "#/components/schemas/NullableInteger"
},
{
"description": "The number of G.1X workers to be used in the run. The default is 5."
}
]
},
"Timeout": {
"allOf": [
{
"$ref": "#/components/schemas/Timeout"
},
{
"description": "The timeout for a run in minutes. This is the maximum time that a run can consume resources before it is terminated and enters TIMEOUT status. The default is 2,880 minutes (48 hours)."
}
]
},
"CreatedRulesetName": {
"allOf": [
{
"$ref": "#/components/schemas/NameString"
},
{
"description": "A name for the ruleset."
}
]
},
"ClientToken": {
"allOf": [
{
"$ref": "#/components/schemas/HashString"
},
{
"description": "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."
}
]
}
},
"required": [
"DataSource",
"Role"
]
}