Interface UpdateRuntimeConfigurationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateRuntimeConfigurationRequest.Builder,UpdateRuntimeConfigurationRequest>,GameLiftRequest.Builder,SdkBuilder<UpdateRuntimeConfigurationRequest.Builder,UpdateRuntimeConfigurationRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateRuntimeConfigurationRequest
public static interface UpdateRuntimeConfigurationRequest.Builder extends GameLiftRequest.Builder, SdkPojo, CopyableBuilder<UpdateRuntimeConfigurationRequest.Builder,UpdateRuntimeConfigurationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateRuntimeConfigurationRequest.BuilderfleetId(String fleetId)A unique identifier for the fleet to update runtime configuration for.UpdateRuntimeConfigurationRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateRuntimeConfigurationRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default UpdateRuntimeConfigurationRequest.BuilderruntimeConfiguration(Consumer<RuntimeConfiguration.Builder> runtimeConfiguration)Instructions for launching server processes on fleet computes.UpdateRuntimeConfigurationRequest.BuilderruntimeConfiguration(RuntimeConfiguration runtimeConfiguration)Instructions for launching server processes on fleet computes.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.gamelift.model.GameLiftRequest.Builder
build
-
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
-
fleetId
UpdateRuntimeConfigurationRequest.Builder fleetId(String fleetId)
A unique identifier for the fleet to update runtime configuration for. You can use either the fleet ID or ARN value.
- Parameters:
fleetId- A unique identifier for the fleet to update runtime configuration for. You can use either the fleet ID or ARN value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runtimeConfiguration
UpdateRuntimeConfigurationRequest.Builder runtimeConfiguration(RuntimeConfiguration runtimeConfiguration)
Instructions for launching server processes on fleet computes. Server processes run either a custom game build executable or a Realtime Servers script. The runtime configuration lists the types of server processes to run, how to launch them, and the number of processes to run concurrently.
- Parameters:
runtimeConfiguration- Instructions for launching server processes on fleet computes. Server processes run either a custom game build executable or a Realtime Servers script. The runtime configuration lists the types of server processes to run, how to launch them, and the number of processes to run concurrently.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runtimeConfiguration
default UpdateRuntimeConfigurationRequest.Builder runtimeConfiguration(Consumer<RuntimeConfiguration.Builder> runtimeConfiguration)
Instructions for launching server processes on fleet computes. Server processes run either a custom game build executable or a Realtime Servers script. The runtime configuration lists the types of server processes to run, how to launch them, and the number of processes to run concurrently.
This is a convenience method that creates an instance of theRuntimeConfiguration.Builderavoiding the need to create one manually viaRuntimeConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toruntimeConfiguration(RuntimeConfiguration).- Parameters:
runtimeConfiguration- a consumer that will call methods onRuntimeConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
runtimeConfiguration(RuntimeConfiguration)
-
overrideConfiguration
UpdateRuntimeConfigurationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateRuntimeConfigurationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-