Class: Aws::Batch::Types::TerminateServiceJobsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::TerminateServiceJobsRequest
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
Specifies the service jobs to terminate and the reason for the termination.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#jobs ⇒ Array<String>
An array of up to 50 service job IDs of the service jobs to terminate.
-
#reason ⇒ String
A message to attach to the service job that explains the reason for terminating it.
Instance Attribute Details
#jobs ⇒ Array<String>
An array of up to 50 service job IDs of the service jobs to terminate.
11645 11646 11647 11648 11649 11650 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 11645 class TerminateServiceJobsRequest < Struct.new( :jobs, :reason) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
A message to attach to the service job that explains the reason for
terminating it. This message is returned by DescribeServiceJob
operations on the service job.
11645 11646 11647 11648 11649 11650 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 11645 class TerminateServiceJobsRequest < Struct.new( :jobs, :reason) SENSITIVE = [] include Aws::Structure end |