{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue-databrew/refs/heads/main/json-schema/glue-databrew-create-profile-job-request-schema.json", "title": "CreateProfileJobRequest", "description": "CreateProfileJobRequest schema from Amazon Glue DataBrew API", "type": "object", "properties": { "DatasetName": { "allOf": [ { "$ref": "#/components/schemas/DatasetName" }, { "description": "The name of the dataset that this job is to act upon." } ] }, "EncryptionKeyArn": { "allOf": [ { "$ref": "#/components/schemas/EncryptionKeyArn" }, { "description": "The Amazon Resource Name (ARN) of an encryption key that is used to protect the job." } ] }, "EncryptionMode": { "allOf": [ { "$ref": "#/components/schemas/EncryptionMode" }, { "description": "
The encryption mode for the job, which can be one of the following:
SSE-KMS - SSE-KMS - Server-side encryption with KMS-managed keys.
SSE-S3 - Server-side encryption with keys managed by Amazon S3.
TIMEOUT."
}
]
},
"JobSample": {
"allOf": [
{
"$ref": "#/components/schemas/JobSample"
},
{
"description": "Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be executed. If a JobSample value is not provided, the default value will be used. The default value is CUSTOM_ROWS for the mode parameter and 20000 for the size parameter."
}
]
}
},
"required": [
"DatasetName",
"Name",
"OutputLocation",
"RoleArn"
]
}