Class: Aws::Batch::Types::TerminateJobsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::TerminateJobsResponse
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
The result of a TerminateJobs request, including the jobs whose
termination request was accepted and the errors for jobs that
couldn't be terminated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#errors ⇒ Array<Types::TerminateJobsErrorDetail>
A list of
TerminateJobsErrorDetailitems, one for each job that couldn't be terminated. -
#successful ⇒ Array<String>
A list of the job IDs whose termination request was accepted.
Instance Attribute Details
#errors ⇒ Array<Types::TerminateJobsErrorDetail>
A list of TerminateJobsErrorDetail items, one for each job that
couldn't be terminated. Each item includes the job ID along with a
code and message that describe why the job wasn't terminated.
11559 11560 11561 11562 11563 11564 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 11559 class TerminateJobsResponse < Struct.new( :successful, :errors) SENSITIVE = [] include Aws::Structure end |
#successful ⇒ Array<String>
A list of the job IDs whose termination request was accepted.
11559 11560 11561 11562 11563 11564 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 11559 class TerminateJobsResponse < Struct.new( :successful, :errors) SENSITIVE = [] include Aws::Structure end |