Class: Aws::RoboMaker::Types::Compute
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::Compute
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Compute information for the simulation job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compute_type ⇒ String
Compute type information for the simulation job.
-
#gpu_unit_limit ⇒ Integer
Compute GPU unit limit for the simulation job.
-
#simulation_unit_limit ⇒ Integer
The simulation unit limit.
Instance Attribute Details
#compute_type ⇒ String
Compute type information for the simulation job.
201 202 203 204 205 206 207 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 201 class Compute < Struct.new( :simulation_unit_limit, :compute_type, :gpu_unit_limit) SENSITIVE = [] include Aws::Structure end |
#gpu_unit_limit ⇒ Integer
Compute GPU unit limit for the simulation job. It is the same as the number of GPUs allocated to the SimulationJob.
201 202 203 204 205 206 207 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 201 class Compute < Struct.new( :simulation_unit_limit, :compute_type, :gpu_unit_limit) SENSITIVE = [] include Aws::Structure end |
#simulation_unit_limit ⇒ Integer
The simulation unit limit. Your simulation is allocated CPU and memory proportional to the supplied simulation unit limit. A simulation unit is 1 vcpu and 2GB of memory. You are only billed for the SU utilization you consume up to the maximum value provided. The default is 15.
201 202 203 204 205 206 207 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 201 class Compute < Struct.new( :simulation_unit_limit, :compute_type, :gpu_unit_limit) SENSITIVE = [] include Aws::Structure end |