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).
8508 8509 8510 8511 8512 8513 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 8508 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.
8508 8509 8510 8511 8512 8513 |
# File 'gems/aws-sdk-eks/lib/aws-sdk-eks/types.rb', line 8508 class ResourceWeight < Struct.new( :name, :weight) SENSITIVE = [] include Aws::Structure end |