Class: Aws::Batch::Types::TerminateServiceJobsRequest

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

Instance Attribute Details

#jobsArray<String>

An array of up to 50 service job IDs of the service jobs to terminate.

Returns:

  • (Array<String>)


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

#reasonString

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.

Returns:

  • (String)


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