Class: Aws::Batch::Types::UpdateSchedulingPolicyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::UpdateSchedulingPolicyRequest
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
Contains the parameters for UpdateSchedulingPolicy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the scheduling policy to update.
-
#fairshare_policy ⇒ Types::FairsharePolicy
The fair-share policy scheduling details.
-
#quota_share_policy ⇒ Types::QuotaSharePolicy
The quota share scheduling policy details.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the scheduling policy to update.
11287 11288 11289 11290 11291 11292 11293 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 11287 class UpdateSchedulingPolicyRequest < Struct.new( :arn, :quota_share_policy, :fairshare_policy) SENSITIVE = [] include Aws::Structure end |
#fairshare_policy ⇒ Types::FairsharePolicy
The fair-share policy scheduling details. Once set during creation, a fairsharePolicy cannot be removed or changed to a quotaSharePolicy.
11287 11288 11289 11290 11291 11292 11293 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 11287 class UpdateSchedulingPolicyRequest < Struct.new( :arn, :quota_share_policy, :fairshare_policy) SENSITIVE = [] include Aws::Structure end |
#quota_share_policy ⇒ Types::QuotaSharePolicy
The quota share scheduling policy details. Once set during creation, a quotaSharePolicy cannot be removed or changed to a fairsharePolicy.
11287 11288 11289 11290 11291 11292 11293 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 11287 class UpdateSchedulingPolicyRequest < Struct.new( :arn, :quota_share_policy, :fairshare_policy) SENSITIVE = [] include Aws::Structure end |