Class: Aws::EKS::Types::ResourceWeight
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ResourceWeight
- Defined in:
- gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb
Overview
A resource weight entry for the scheduler scoring strategy.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the resource (for example,
cpuormemory). -
#weight ⇒ Integer
The weight assigned to the resource for scoring.
Instance Attribute Details
#name ⇒ String
The name of the resource (for example, cpu or memory).
7954 7955 7956 7957 7958 7959 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 7954 class ResourceWeight < Struct.new( :name, :weight) SENSITIVE = [] include Aws::Structure end |
#weight ⇒ Integer
The weight assigned to the resource for scoring. Must be between 1 and 100.
7954 7955 7956 7957 7958 7959 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 7954 class ResourceWeight < Struct.new( :name, :weight) SENSITIVE = [] include Aws::Structure end |