Interface LiveSimulationState.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<LiveSimulationState.Builder,
,LiveSimulationState> SdkBuilder<LiveSimulationState.Builder,
,LiveSimulationState> SdkPojo
- Enclosing class:
LiveSimulationState
-
Method Summary
Modifier and TypeMethodDescriptionclocks
(Collection<SimulationClock> clocks) A list of simulation clocks.clocks
(Consumer<SimulationClock.Builder>... clocks) A list of simulation clocks.clocks
(SimulationClock... clocks) A list of simulation clocks.domains
(Collection<Domain> domains) A list of domains for the simulation.domains
(Consumer<Domain.Builder>... domains) A list of domains for the simulation.A list of domains for the simulation.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
clocks
A list of simulation clocks.
At this time, a simulation has only one clock.
- Parameters:
clocks
- A list of simulation clocks.At this time, a simulation has only one clock.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clocks
A list of simulation clocks.
At this time, a simulation has only one clock.
- Parameters:
clocks
- A list of simulation clocks.At this time, a simulation has only one clock.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clocks
A list of simulation clocks.
At this time, a simulation has only one clock.
SimulationClock.Builder
avoiding the need to create one manually viaSimulationClock.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toclocks(List<SimulationClock>)
.- Parameters:
clocks
- a consumer that will call methods onSimulationClock.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
domains
A list of domains for the simulation. For more information about domains, see Key concepts: Domains in the SimSpace Weaver User Guide.
- Parameters:
domains
- A list of domains for the simulation. For more information about domains, see Key concepts: Domains in the SimSpace Weaver User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domains
A list of domains for the simulation. For more information about domains, see Key concepts: Domains in the SimSpace Weaver User Guide.
- Parameters:
domains
- A list of domains for the simulation. For more information about domains, see Key concepts: Domains in the SimSpace Weaver User Guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
domains
A list of domains for the simulation. For more information about domains, see Key concepts: Domains in the SimSpace Weaver User Guide.
This is a convenience method that creates an instance of theDomain.Builder
avoiding the need to create one manually viaDomain.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed todomains(List<Domain>)
.- Parameters:
domains
- a consumer that will call methods onDomain.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-