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).
8403 8404 8405 8406 8407 8408 |
# File 'lib/aws-sdk-eks/types.rb', line 8403 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.
8403 8404 8405 8406 8407 8408 |
# File 'lib/aws-sdk-eks/types.rb', line 8403 class ResourceWeight < Struct.new( :name, :weight) SENSITIVE = [] include Aws::Structure end |