Class: Aws::MediaConvert::Types::HopDestination

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

Overview

Optional. Configuration for a destination queue to which the job can hop once a customer-defined minimum wait time has passed.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#priorityInteger

Optional. When you set up a job to use queue hopping, you can specify a different relative priority for the job in the destination queue. If you don’t specify, the relative priority will remain the same as in the previous queue.

Returns:

  • (Integer)


6988
6989
6990
6991
6992
6993
6994
# File 'lib/aws-sdk-mediaconvert/types.rb', line 6988

class HopDestination < Struct.new(
  :priority,
  :queue,
  :wait_minutes)
  SENSITIVE = []
  include Aws::Structure
end

#queueString

Optional unless the job is submitted on the default queue. When you set up a job to use queue hopping, you can specify a destination queue. This queue cannot be the original queue to which the job is submitted. If the original queue isn’t the default queue and you don’t specify the destination queue, the job will move to the default queue.

Returns:

  • (String)


6988
6989
6990
6991
6992
6993
6994
# File 'lib/aws-sdk-mediaconvert/types.rb', line 6988

class HopDestination < Struct.new(
  :priority,
  :queue,
  :wait_minutes)
  SENSITIVE = []
  include Aws::Structure
end

#wait_minutesInteger

Required for setting up a job to use queue hopping. Minimum wait time in minutes until the job can hop to the destination queue. Valid range is 1 to 4320 minutes, inclusive.

Returns:

  • (Integer)


6988
6989
6990
6991
6992
6993
6994
# File 'lib/aws-sdk-mediaconvert/types.rb', line 6988

class HopDestination < Struct.new(
  :priority,
  :queue,
  :wait_minutes)
  SENSITIVE = []
  include Aws::Structure
end