Class WorldCount
- java.lang.Object
-
- software.amazon.awssdk.services.robomaker.model.WorldCount
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<WorldCount.Builder,WorldCount>
@Generated("software.amazon.awssdk:codegen") public final class WorldCount extends Object implements SdkPojo, Serializable, ToCopyableBuilder<WorldCount.Builder,WorldCount>
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 = 1andinteriorCountPerFloorplan = 20. This will result in 20 worlds (floorplanCount*interiorCountPerFloorplan).If you set
floorplanCount = 4andinteriorCountPerFloorplan = 5, there will be 20 worlds with 5 unique floor plans.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceWorldCount.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WorldCount.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)IntegerfloorplanCount()The number of unique floorplans.<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()IntegerinteriorCountPerFloorplan()The number of unique interiors per floorplan.List<SdkField<?>>sdkFields()static Class<? extends WorldCount.Builder>serializableBuilderClass()WorldCount.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
floorplanCount
public final Integer floorplanCount()
The number of unique floorplans.
- Returns:
- The number of unique floorplans.
-
interiorCountPerFloorplan
public final Integer interiorCountPerFloorplan()
The number of unique interiors per floorplan.
- Returns:
- The number of unique interiors per floorplan.
-
toBuilder
public WorldCount.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<WorldCount.Builder,WorldCount>
-
builder
public static WorldCount.Builder builder()
-
serializableBuilderClass
public static Class<? extends WorldCount.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-