Class: Aws::RoboMaker::Types::ComputeResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::ComputeResponse
- Includes:
- Structure
- Defined in:
- 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 response 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 response information for the simulation job.
230 231 232 233 234 235 236 |
# File 'lib/aws-sdk-robomaker/types.rb', line 230 class ComputeResponse < 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.
230 231 232 233 234 235 236 |
# File 'lib/aws-sdk-robomaker/types.rb', line 230 class ComputeResponse < 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.
230 231 232 233 234 235 236 |
# File 'lib/aws-sdk-robomaker/types.rb', line 230 class ComputeResponse < Struct.new( :simulation_unit_limit, :compute_type, :gpu_unit_limit) SENSITIVE = [] include Aws::Structure end |