Interface ReplicaContainerGroupCounts.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReplicaContainerGroupCounts.Builder,ReplicaContainerGroupCounts>,SdkBuilder<ReplicaContainerGroupCounts.Builder,ReplicaContainerGroupCounts>,SdkPojo
- Enclosing class:
- ReplicaContainerGroupCounts
public static interface ReplicaContainerGroupCounts.Builder extends SdkPojo, CopyableBuilder<ReplicaContainerGroupCounts.Builder,ReplicaContainerGroupCounts>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ReplicaContainerGroupCounts.Builderactive(Integer active)The number of container groups that have active game sessions.ReplicaContainerGroupCounts.Builderidle(Integer idle)The number of container groups that have no active game sessions.ReplicaContainerGroupCounts.Builderpending(Integer pending)The number of container groups that are starting up but have not yet registered.ReplicaContainerGroupCounts.Builderterminating(Integer terminating)The number of container groups that are in the process of shutting down.-
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
-
pending
ReplicaContainerGroupCounts.Builder pending(Integer pending)
The number of container groups that are starting up but have not yet registered.
- Parameters:
pending- The number of container groups that are starting up but have not yet registered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
active
ReplicaContainerGroupCounts.Builder active(Integer active)
The number of container groups that have active game sessions.
- Parameters:
active- The number of container groups that have active game sessions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
idle
ReplicaContainerGroupCounts.Builder idle(Integer idle)
The number of container groups that have no active game sessions.
- Parameters:
idle- The number of container groups that have no active game sessions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
terminating
ReplicaContainerGroupCounts.Builder terminating(Integer terminating)
The number of container groups that are in the process of shutting down.
- Parameters:
terminating- The number of container groups that are in the process of shutting down.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-