Class: Aws::S3Control::Types::UpdateJobPriorityRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::UpdateJobPriorityRequest
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Note:
When making an API call, you may pass UpdateJobPriorityRequest data as a hash:
{
account_id: "AccountId", # required
job_id: "JobId", # required
priority: 1, # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The Amazon Web Services account ID associated with the S3 Batch Operations job.
-
#job_id ⇒ String
The ID for the job whose priority you want to update.
-
#priority ⇒ Integer
The priority you want to assign to this job.
Instance Attribute Details
#account_id ⇒ String
The Amazon Web Services account ID associated with the S3 Batch Operations job.
6698 6699 6700 6701 6702 6703 6704 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 6698 class UpdateJobPriorityRequest < Struct.new( :account_id, :job_id, :priority) SENSITIVE = [] include Aws::Structure end |
#job_id ⇒ String
The ID for the job whose priority you want to update.
6698 6699 6700 6701 6702 6703 6704 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 6698 class UpdateJobPriorityRequest < Struct.new( :account_id, :job_id, :priority) SENSITIVE = [] include Aws::Structure end |
#priority ⇒ Integer
The priority you want to assign to this job.
6698 6699 6700 6701 6702 6703 6704 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 6698 class UpdateJobPriorityRequest < Struct.new( :account_id, :job_id, :priority) SENSITIVE = [] include Aws::Structure end |