Class: Aws::Batch::Types::TerminateJobRequest

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

Overview

Contains the parameters for TerminateJob.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#job_idString

The Batch job ID of the job to terminate.

Returns:

  • (String)


8134
8135
8136
8137
8138
8139
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 8134

class TerminateJobRequest < Struct.new(
  :job_id,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end

#reasonString

A message to attach to the job that explains the reason for canceling it. This message is returned by future DescribeJobs operations on the job. It is also recorded in the Batch activity logs.

This parameter has as limit of 1024 characters.

Returns:

  • (String)


8134
8135
8136
8137
8138
8139
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 8134

class TerminateJobRequest < Struct.new(
  :job_id,
  :reason)
  SENSITIVE = []
  include Aws::Structure
end