Class: Aws::GreengrassV2::Types::SystemResourceLimits
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::SystemResourceLimits
- Defined in:
- gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb
Overview
Contains information about system resource limits that the IoT Greengrass Core software applies to a component's processes. For more information, see Configure system resource limits for components.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cpus ⇒ Float
The maximum amount of CPU time that a component's processes can use on the core device.
-
#memory ⇒ Integer
The maximum amount of RAM, expressed in kilobytes, that a component's processes can use on the core device.
Instance Attribute Details
#cpus ⇒ Float
The maximum amount of CPU time that a component's processes can use
on the core device. A core device's total CPU time is equivalent to
the device's number of CPU cores. For example, on a core device
with 4 CPU cores, you can set this value to 2
to limit the
component's processes to 50 percent usage of each CPU core. On a
device with 1 CPU core, you can set this value to 0.25
to limit
the component's processes to 25 percent usage of the CPU. If you
set this value to a number greater than the number of CPU cores, the
IoT Greengrass Core software doesn't limit the component's CPU
usage.
2947 2948 2949 2950 2951 2952 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2947 class SystemResourceLimits < Struct.new( :memory, :cpus) SENSITIVE = [] include Aws::Structure end |
#memory ⇒ Integer
The maximum amount of RAM, expressed in kilobytes, that a component's processes can use on the core device.
2947 2948 2949 2950 2951 2952 |
# File 'gems/aws-sdk-greengrassv2/lib/aws-sdk-greengrassv2/types.rb', line 2947 class SystemResourceLimits < Struct.new( :memory, :cpus) SENSITIVE = [] include Aws::Structure end |