You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::RoboMaker::Types::WorldCount

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing WorldCount as input to an Aws::Client method, you can use a vanilla Hash:

{
  floorplan_count: 1,
  interior_count_per_floorplan: 1,
}

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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#floorplan_countInteger

The number of unique floorplans.

Returns:

  • (Integer)

    The number of unique floorplans.

#interior_count_per_floorplanInteger

The number of unique interiors per floorplan.

Returns:

  • (Integer)

    The number of unique interiors per floorplan.