Interface PlayerLatency.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PlayerLatency.Builder,PlayerLatency>,SdkBuilder<PlayerLatency.Builder,PlayerLatency>,SdkPojo
- Enclosing class:
- PlayerLatency
public static interface PlayerLatency.Builder extends SdkPojo, CopyableBuilder<PlayerLatency.Builder,PlayerLatency>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PlayerLatency.BuilderlatencyInMilliseconds(Float latencyInMilliseconds)Amount of time that represents the time lag experienced by the player when connected to the specified Region.PlayerLatency.BuilderplayerId(String playerId)A unique identifier for a player associated with the latency data.PlayerLatency.BuilderregionIdentifier(String regionIdentifier)Name of the Region that is associated with the latency value.-
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, sdkFields
-
-
-
-
Method Detail
-
playerId
PlayerLatency.Builder playerId(String playerId)
A unique identifier for a player associated with the latency data.
- Parameters:
playerId- A unique identifier for a player associated with the latency data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
regionIdentifier
PlayerLatency.Builder regionIdentifier(String regionIdentifier)
Name of the Region that is associated with the latency value.
- Parameters:
regionIdentifier- Name of the Region that is associated with the latency value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
latencyInMilliseconds
PlayerLatency.Builder latencyInMilliseconds(Float latencyInMilliseconds)
Amount of time that represents the time lag experienced by the player when connected to the specified Region.
- Parameters:
latencyInMilliseconds- Amount of time that represents the time lag experienced by the player when connected to the specified Region.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-