Interface CreateFleetLocationsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<CreateFleetLocationsRequest.Builder,CreateFleetLocationsRequest>,GameLiftRequest.Builder,SdkBuilder<CreateFleetLocationsRequest.Builder,CreateFleetLocationsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- CreateFleetLocationsRequest
public static interface CreateFleetLocationsRequest.Builder extends GameLiftRequest.Builder, SdkPojo, CopyableBuilder<CreateFleetLocationsRequest.Builder,CreateFleetLocationsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CreateFleetLocationsRequest.BuilderfleetId(String fleetId)A unique identifier for the fleet to add locations to.CreateFleetLocationsRequest.Builderlocations(Collection<LocationConfiguration> locations)A list of locations to deploy additional instances to and manage as part of the fleet.CreateFleetLocationsRequest.Builderlocations(Consumer<LocationConfiguration.Builder>... locations)A list of locations to deploy additional instances to and manage as part of the fleet.CreateFleetLocationsRequest.Builderlocations(LocationConfiguration... locations)A list of locations to deploy additional instances to and manage as part of the fleet.CreateFleetLocationsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)CreateFleetLocationsRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
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
CreateFleetLocationsRequest.Builder fleetId(String fleetId)
A unique identifier for the fleet to add locations to. You can use either the fleet ID or ARN value.
- Parameters:
fleetId- A unique identifier for the fleet to add locations to. 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.
-
locations
CreateFleetLocationsRequest.Builder locations(Collection<LocationConfiguration> locations)
A list of locations to deploy additional instances to and manage as part of the fleet. You can add any Amazon GameLift-supported Amazon Web Services Region as a remote location, in the form of an Amazon Web Services Region code such as
us-west-2.- Parameters:
locations- A list of locations to deploy additional instances to and manage as part of the fleet. You can add any Amazon GameLift-supported Amazon Web Services Region as a remote location, in the form of an Amazon Web Services Region code such asus-west-2.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
locations
CreateFleetLocationsRequest.Builder locations(LocationConfiguration... locations)
A list of locations to deploy additional instances to and manage as part of the fleet. You can add any Amazon GameLift-supported Amazon Web Services Region as a remote location, in the form of an Amazon Web Services Region code such as
us-west-2.- Parameters:
locations- A list of locations to deploy additional instances to and manage as part of the fleet. You can add any Amazon GameLift-supported Amazon Web Services Region as a remote location, in the form of an Amazon Web Services Region code such asus-west-2.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
locations
CreateFleetLocationsRequest.Builder locations(Consumer<LocationConfiguration.Builder>... locations)
A list of locations to deploy additional instances to and manage as part of the fleet. You can add any Amazon GameLift-supported Amazon Web Services Region as a remote location, in the form of an Amazon Web Services Region code such as
This is a convenience method that creates an instance of theus-west-2.LocationConfiguration.Builderavoiding the need to create one manually viaLocationConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#locations(List.) - Parameters:
locations- a consumer that will call methods onLocationConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#locations(java.util.Collection)
-
overrideConfiguration
CreateFleetLocationsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
CreateFleetLocationsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-