Class: Aws::Batch::Types::SchedulingPolicyDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::SchedulingPolicyDetail
- Defined in:
- gems/aws-sdk-batch/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
.
6929 6930 6931 6932 6933 6934 6935 6936 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6929 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.
6929 6930 6931 6932 6933 6934 6935 6936 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6929 class SchedulingPolicyDetail < Struct.new( :name, :arn, :fairshare_policy, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the scheduling policy.
6929 6930 6931 6932 6933 6934 6935 6936 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6929 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.
6929 6930 6931 6932 6933 6934 6935 6936 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6929 class SchedulingPolicyDetail < Struct.new( :name, :arn, :fairshare_policy, :tags) SENSITIVE = [] include Aws::Structure end |