Class: Aws::Glue::Types::UpdateJobRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::UpdateJobRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass UpdateJobRequest data as a hash:
{
job_name: "NameString", # required
job_update: { # required
description: "DescriptionString",
log_uri: "UriString",
role: "RoleString",
execution_property: {
max_concurrent_runs: 1,
},
command: {
name: "GenericString",
script_location: "ScriptLocationString",
python_version: "PythonVersionString",
},
default_arguments: {
"GenericString" => "GenericString",
},
non_overridable_arguments: {
"GenericString" => "GenericString",
},
connections: {
connections: ["GenericString"],
},
max_retries: 1,
allocated_capacity: 1,
timeout: 1,
max_capacity: 1.0,
worker_type: "Standard", # accepts Standard, G.1X, G.2X
number_of_workers: 1,
security_configuration: "NameString",
notification_property: {
notify_delay_after: 1,
},
glue_version: "GlueVersionString",
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_name ⇒ String
The name of the job definition to update.
-
#job_update ⇒ Types::JobUpdate
Specifies the values with which to update the job definition.
Instance Attribute Details
#job_name ⇒ String
The name of the job definition to update.
16140 16141 16142 16143 16144 16145 |
# File 'lib/aws-sdk-glue/types.rb', line 16140 class UpdateJobRequest < Struct.new( :job_name, :job_update) SENSITIVE = [] include Aws::Structure end |
#job_update ⇒ Types::JobUpdate
Specifies the values with which to update the job definition.
16140 16141 16142 16143 16144 16145 |
# File 'lib/aws-sdk-glue/types.rb', line 16140 class UpdateJobRequest < Struct.new( :job_name, :job_update) SENSITIVE = [] include Aws::Structure end |