Class: Aws::RoboMaker::Types::WorldCount
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::WorldCount
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-robomaker/types.rb
Overview
The number of worlds that will be created. You can configure the number of unique floorplans and the number of unique interiors for each floor plan. For example, if you want 1 world with 20 unique interiors, you set ‘floorplanCount = 1` and `interiorCountPerFloorplan
20`. This will result in 20 worlds (‘floorplanCount` *
‘interiorCountPerFloorplan)`.
If you set ‘floorplanCount = 4` and `interiorCountPerFloorplan = 5`, there will be 20 worlds with 5 unique floor plans.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#floorplan_count ⇒ Integer
The number of unique floorplans.
-
#interior_count_per_floorplan ⇒ Integer
The number of unique interiors per floorplan.
Instance Attribute Details
#floorplan_count ⇒ Integer
The number of unique floorplans.
5786 5787 5788 5789 5790 5791 |
# File 'lib/aws-sdk-robomaker/types.rb', line 5786 class WorldCount < Struct.new( :floorplan_count, :interior_count_per_floorplan) SENSITIVE = [] include Aws::Structure end |
#interior_count_per_floorplan ⇒ Integer
The number of unique interiors per floorplan.
5786 5787 5788 5789 5790 5791 |
# File 'lib/aws-sdk-robomaker/types.rb', line 5786 class WorldCount < Struct.new( :floorplan_count, :interior_count_per_floorplan) SENSITIVE = [] include Aws::Structure end |