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.

Constant Summary collapse

SENSITIVE =
[]

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)


441
442
443
444
445
# File 'lib/aws-sdk-elastictranscoder/types.rb', line 441

class CancelJobRequest < Struct.new(
  :id)
  SENSITIVE = []
  include Aws::Structure
end