Class: Aws::MediaConvert::Types::UpdateQueueRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConvert::Types::UpdateQueueRequest
- Defined in:
- gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb
Overview
When making an API call, you may pass UpdateQueueRequest data as a hash:
{
description: "__string",
name: "__string", # required
reservation_plan_settings: {
commitment: "ONE_YEAR", # required, accepts ONE_YEAR
renewal_type: "AUTO_RENEW", # required, accepts AUTO_RENEW, EXPIRE
reserved_slots: 1, # required
},
status: "ACTIVE", # accepts ACTIVE, PAUSED
}
Modify a queue by sending a request with the queue name and any changes to the queue.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
The new description for the queue, if you are changing it.
-
#name ⇒ String
The name of the queue that you are modifying.
-
#reservation_plan_settings ⇒ Types::ReservationPlanSettings
The new details of your pricing plan for your reserved queue.
-
#status ⇒ String
Pause or activate a queue by changing its status between ACTIVE and PAUSED.
Instance Attribute Details
#description ⇒ String
The new description for the queue, if you are changing it.
25613 25614 25615 25616 25617 25618 25619 25620 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 25613 class UpdateQueueRequest < Struct.new( :description, :name, :reservation_plan_settings, :status) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the queue that you are modifying.
25613 25614 25615 25616 25617 25618 25619 25620 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 25613 class UpdateQueueRequest < Struct.new( :description, :name, :reservation_plan_settings, :status) SENSITIVE = [] include Aws::Structure end |
#reservation_plan_settings ⇒ Types::ReservationPlanSettings
The new details of your pricing plan for your reserved queue. When you set up a new pricing plan to replace an expired one, you enter into another 12-month commitment. When you add capacity to your queue by increasing the number of RTS, you extend the term of your commitment to 12 months from when you add capacity. After you make these commitments, you can't cancel them.
25613 25614 25615 25616 25617 25618 25619 25620 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 25613 class UpdateQueueRequest < Struct.new( :description, :name, :reservation_plan_settings, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Pause or activate a queue by changing its status between ACTIVE and PAUSED. If you pause a queue, jobs in that queue won't begin. Jobs that are running when you pause the queue continue to run until they finish or result in an error.
25613 25614 25615 25616 25617 25618 25619 25620 |
# File 'gems/aws-sdk-mediaconvert/lib/aws-sdk-mediaconvert/types.rb', line 25613 class UpdateQueueRequest < Struct.new( :description, :name, :reservation_plan_settings, :status) SENSITIVE = [] include Aws::Structure end |