Class: Aws::ElasticTranscoder::Types::CancelJobRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elastictranscoder/types.rb

Overview

Note:

When making an API call, you may pass CancelJobRequest data as a hash:

{
  id: "Id", # required
}

The ‘CancelJobRequest` structure.

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The identifier of the job that you want to cancel.

To get a list of the jobs (including their ‘jobId`) that have a status of `Submitted`, use the ListJobsByStatus API action.

Returns:

  • (String)


432
433
434
435
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 432

class CancelJobRequest < Struct.new(
  :id)
  include Aws::Structure
end