Class: Aws::Batch::Types::TerminateJobsResponse

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#errorsArray<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

#successfulArray<String>

A list of the job IDs whose termination request was accepted.

Returns:

  • (Array<String>)


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