{ "$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-describe-job-response-schema.json", "title": "DescribeJobResponse", "description": "DescribeJobResponse schema from Amazon Glue DataBrew API", "type": "object", "properties": { "CreateDate": { "allOf": [ { "$ref": "#/components/schemas/Date" }, { "description": "The date and time that the job was created." } ] }, "CreatedBy": { "allOf": [ { "$ref": "#/components/schemas/CreatedBy" }, { "description": "The identifier (user name) of the user associated with the creation of the job." } ] }, "DatasetName": { "allOf": [ { "$ref": "#/components/schemas/DatasetName" }, { "description": "The dataset that the job acts 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 - Server-side encryption with keys managed by KMS.
SSE-S3 - Server-side encryption with keys managed by Amazon S3.
The job type, which must be one of the following:
PROFILE - The job analyzes the dataset to determine its size, data types, data distribution, and more.
RECIPE - The job applies one or more transformations to a dataset.
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."
}
]
}
},
"required": [
"Name"
]
}