Class: Aws::GlueDataBrew::Types::Job
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::Job
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gluedatabrew/types.rb
Overview
Represents all of the attributes of a DataBrew job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The ID of the Amazon Web Services account that owns the job.
-
#create_date ⇒ Time
The date and time that the job was created.
-
#created_by ⇒ String
The Amazon Resource Name (ARN) of the user who created the job.
-
#data_catalog_outputs ⇒ Array<Types::DataCatalogOutput>
One or more artifacts that represent the Glue Data Catalog output from running the job.
-
#database_outputs ⇒ Array<Types::DatabaseOutput>
Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write into.
-
#dataset_name ⇒ String
A dataset that the job is to process.
-
#encryption_key_arn ⇒ String
The Amazon Resource Name (ARN) of an encryption key that is used to protect the job output.
-
#encryption_mode ⇒ String
The encryption mode for the job, which can be one of the following:.
-
#job_sample ⇒ Types::JobSample
A sample configuration for profile jobs only, which determines the number of rows on which the profile job is run.
-
#last_modified_by ⇒ String
The Amazon Resource Name (ARN) of the user who last modified the job.
-
#last_modified_date ⇒ Time
The modification date and time of the job.
-
#log_subscription ⇒ String
The current status of Amazon CloudWatch logging for the job.
-
#max_capacity ⇒ Integer
The maximum number of nodes that can be consumed when the job processes data.
-
#max_retries ⇒ Integer
The maximum number of times to retry the job after a job run fails.
-
#name ⇒ String
The unique name of the job.
-
#outputs ⇒ Array<Types::Output>
One or more artifacts that represent output from running the job.
-
#project_name ⇒ String
The name of the project that the job is associated with.
-
#recipe_reference ⇒ Types::RecipeReference
A set of steps that the job runs.
-
#resource_arn ⇒ String
The unique Amazon Resource Name (ARN) for the job.
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the role to be assumed for this job.
-
#tags ⇒ Hash<String,String>
Metadata tags that have been applied to the job.
-
#timeout ⇒ Integer
The job’s timeout in minutes.
-
#type ⇒ String
The job type of the job, which must be one of the following:.
-
#validation_configurations ⇒ Array<Types::ValidationConfiguration>
List of validation configurations that are applied to the profile job.
Instance Attribute Details
#account_id ⇒ String
The ID of the Amazon Web Services account that owns the job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#create_date ⇒ Time
The date and time that the job was created.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#created_by ⇒ String
The Amazon Resource Name (ARN) of the user who created the job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#data_catalog_outputs ⇒ Array<Types::DataCatalogOutput>
One or more artifacts that represent the Glue Data Catalog output from running the job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#database_outputs ⇒ Array<Types::DatabaseOutput>
Represents a list of JDBC database output objects which defines the output destination for a DataBrew recipe job to write into.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#dataset_name ⇒ String
A dataset that the job is to process.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#encryption_key_arn ⇒ String
The Amazon Resource Name (ARN) of an encryption key that is used to protect the job output. For more information, see [Encrypting data written by DataBrew jobs]
[1]: docs.aws.amazon.com/databrew/latest/dg/encryption-security-configuration.html
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#encryption_mode ⇒ String
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.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#job_sample ⇒ Types::JobSample
A sample configuration for profile jobs only, which determines the number of rows on which the profile job is run. If a ‘JobSample` value isn’t provided, the default value is used. The default value is CUSTOM_ROWS for the mode parameter and 20,000 for the size parameter.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#last_modified_by ⇒ String
The Amazon Resource Name (ARN) of the user who last modified the job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#last_modified_date ⇒ Time
The modification date and time of the job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#log_subscription ⇒ String
The current status of Amazon CloudWatch logging for the job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#max_capacity ⇒ Integer
The maximum number of nodes that can be consumed when the job processes data.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#max_retries ⇒ Integer
The maximum number of times to retry the job after a job run fails.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The unique name of the job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#outputs ⇒ Array<Types::Output>
One or more artifacts that represent output from running the job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#project_name ⇒ String
The name of the project that the job is associated with.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#recipe_reference ⇒ Types::RecipeReference
A set of steps that the job runs.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#resource_arn ⇒ String
The unique Amazon Resource Name (ARN) for the job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the role to be assumed for this job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Metadata tags that have been applied to the job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#timeout ⇒ Integer
The job’s timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of ‘TIMEOUT`.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The job type of the job, which must be one of the following:
-
‘PROFILE` - A job to analyze a dataset, to determine its size, data types, data distribution, and more.
-
‘RECIPE` - A job to apply one or more transformations to a dataset.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |
#validation_configurations ⇒ Array<Types::ValidationConfiguration>
List of validation configurations that are applied to the profile job.
2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 2210 class Job < Struct.new( :account_id, :created_by, :create_date, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :data_catalog_outputs, :database_outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :timeout, :tags, :job_sample, :validation_configurations) SENSITIVE = [] include Aws::Structure end |