Class: Aws::Batch::Types::TerminateServiceJobsResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb

Overview

The result of a TerminateServiceJobs request, including the service jobs whose termination request was accepted and the errors for service jobs that couldn't be terminated.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#errorsArray<Types::TerminateServiceJobsErrorDetail>

A list of TerminateServiceJobsErrorDetail items, one for each service job that couldn't be terminated. Each item includes the service job ID along with a code and message that describe why the service job wasn't terminated.



11670
11671
11672
11673
11674
11675
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 11670

class TerminateServiceJobsResponse < Struct.new(
  :successful,
  :errors)
  SENSITIVE = []
  include Aws::Structure
end

#successfulArray<String>

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

Returns:

  • (Array<String>)


11670
11671
11672
11673
11674
11675
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 11670

class TerminateServiceJobsResponse < Struct.new(
  :successful,
  :errors)
  SENSITIVE = []
  include Aws::Structure
end