Class: Aws::EKS::Types::ResourceWeight
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ResourceWeight
- Includes:
- Structure
- Defined in:
- 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).
8504 8505 8506 8507 8508 8509 |
# File 'lib/aws-sdk-eks/types.rb', line 8504 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.
8504 8505 8506 8507 8508 8509 |
# File 'lib/aws-sdk-eks/types.rb', line 8504 class ResourceWeight < Struct.new( :name, :weight) SENSITIVE = [] include Aws::Structure end |