Class: Aws::GlueDataBrew::Types::DescribeJobResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::DescribeJobResponse
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#create_date ⇒ Time
The date and time that the job was created.
-
#created_by ⇒ String
The identifier (user name) of the user associated with the creation of the job.
-
#dataset_name ⇒ String
The dataset that the job acts upon.
-
#encryption_key_arn ⇒ String
The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.
-
#encryption_mode ⇒ String
The encryption mode for the job, which can be one of the following:.
-
#job_sample ⇒ Types::JobSample
Sample configuration for profile jobs only.
-
#last_modified_by ⇒ String
The identifier (user name) of the user who last modified the job.
-
#last_modified_date ⇒ Time
The date and time that the job was last modified.
-
#log_subscription ⇒ String
Indicates whether Amazon CloudWatch logging is enabled for this job.
-
#max_capacity ⇒ Integer
The maximum number of compute nodes that DataBrew can consume 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 name of the job.
-
#outputs ⇒ Array<Types::Output>
One or more artifacts that represent the output from running the job.
-
#project_name ⇒ String
The DataBrew project associated with this job.
-
#recipe_reference ⇒ Types::RecipeReference
Represents the name and version of a DataBrew recipe.
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the job.
-
#role_arn ⇒ String
The ARN of the AWS Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
-
#tags ⇒ Hash<String,String>
Metadata tags associated with this job.
-
#timeout ⇒ Integer
The job's timeout in minutes.
-
#type ⇒ String
The job type, which must be one of the following:.
Instance Attribute Details
#create_date ⇒ Time
The date and time that the job was created.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#created_by ⇒ String
The identifier (user name) of the user associated with the creation of the job.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#dataset_name ⇒ String
The dataset that the job acts upon.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) 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.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) 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 AWS KMS.SSE-S3
- Server-side encryption with keys managed by Amazon S3.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#job_sample ⇒ Types::JobSample
Sample configuration for profile jobs only. Determines the number of rows on which the profile job will be executed.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#last_modified_by ⇒ String
The identifier (user name) of the user who last modified the job.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#last_modified_date ⇒ Time
The date and time that the job was last modified.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#log_subscription ⇒ String
Indicates whether Amazon CloudWatch logging is enabled for this job.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#max_capacity ⇒ Integer
The maximum number of compute nodes that DataBrew can consume when the job processes data.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#max_retries ⇒ Integer
The maximum number of times to retry the job after a job run fails.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the job.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#outputs ⇒ Array<Types::Output>
One or more artifacts that represent the output from running the job.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#project_name ⇒ String
The DataBrew project associated with this job.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#recipe_reference ⇒ Types::RecipeReference
Represents the name and version of a DataBrew recipe.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#resource_arn ⇒ String
The Amazon Resource Name (ARN) of the job.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of the AWS Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Metadata tags associated with this job.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) 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
.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
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.
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1219 class DescribeJobResponse < Struct.new( :create_date, :created_by, :dataset_name, :encryption_key_arn, :encryption_mode, :name, :type, :last_modified_by, :last_modified_date, :log_subscription, :max_capacity, :max_retries, :outputs, :project_name, :recipe_reference, :resource_arn, :role_arn, :tags, :timeout, :job_sample) SENSITIVE = [] include Aws::Structure end |