Class: Aws::Batch::Types::TerminateServiceJobsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::TerminateServiceJobsResponse
- 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
-
#errors ⇒ Array<Types::TerminateServiceJobsErrorDetail>
A list of
TerminateServiceJobsErrorDetailitems, one for each service job that couldn't be terminated. -
#successful ⇒ Array<String>
A list of the service job IDs whose termination request was accepted.
Instance Attribute Details
#errors ⇒ Array<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 |
#successful ⇒ Array<String>
A list of the service job IDs whose termination request was accepted.
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 |