Class: Aws::Glue::Types::DeleteJobRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::DeleteJobRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass DeleteJobRequest data as a hash:
{
job_name: "NameString", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_name ⇒ String
The name of the job definition to delete.
Instance Attribute Details
#job_name ⇒ String
The name of the job definition to delete.
5333 5334 5335 5336 5337 |
# File 'lib/aws-sdk-glue/types.rb', line 5333 class DeleteJobRequest < Struct.new( :job_name) SENSITIVE = [] include Aws::Structure end |