Class: Aws::Batch::Types::SchedulingPolicyDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::SchedulingPolicyDetail
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-batch/types.rb
Overview
An object that represents a scheduling policy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the scheduling policy.
-
#fairshare_policy ⇒ Types::FairsharePolicy
The fair share policy for the scheduling policy.
-
#name ⇒ String
The name of the scheduling policy.
-
#tags ⇒ Hash<String,String>
The tags that you apply to the scheduling policy to categorize and organize your resources.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the scheduling policy. An example is ‘arn:aws:batch:us-east-1:123456789012:scheduling-policy/HighPriority `.
6771 6772 6773 6774 6775 6776 6777 6778 |
# File 'lib/aws-sdk-batch/types.rb', line 6771 class SchedulingPolicyDetail < Struct.new( :name, :arn, :fairshare_policy, :tags) SENSITIVE = [] include Aws::Structure end |
#fairshare_policy ⇒ Types::FairsharePolicy
The fair share policy for the scheduling policy.
6771 6772 6773 6774 6775 6776 6777 6778 |
# File 'lib/aws-sdk-batch/types.rb', line 6771 class SchedulingPolicyDetail < Struct.new( :name, :arn, :fairshare_policy, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the scheduling policy.
6771 6772 6773 6774 6775 6776 6777 6778 |
# File 'lib/aws-sdk-batch/types.rb', line 6771 class SchedulingPolicyDetail < Struct.new( :name, :arn, :fairshare_policy, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The tags that you apply to the scheduling policy to categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see [Tagging Amazon Web Services resources] in *Amazon Web Services General Reference*.
6771 6772 6773 6774 6775 6776 6777 6778 |
# File 'lib/aws-sdk-batch/types.rb', line 6771 class SchedulingPolicyDetail < Struct.new( :name, :arn, :fairshare_policy, :tags) SENSITIVE = [] include Aws::Structure end |