Interface StartFleetActionsRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<StartFleetActionsRequest.Builder,StartFleetActionsRequest>,GameLiftRequest.Builder,SdkBuilder<StartFleetActionsRequest.Builder,StartFleetActionsRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- StartFleetActionsRequest
public static interface StartFleetActionsRequest.Builder extends GameLiftRequest.Builder, SdkPojo, CopyableBuilder<StartFleetActionsRequest.Builder,StartFleetActionsRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StartFleetActionsRequest.Builderactions(Collection<FleetAction> actions)List of actions to restart on the fleet.StartFleetActionsRequest.Builderactions(FleetAction... actions)List of actions to restart on the fleet.StartFleetActionsRequest.BuilderactionsWithStrings(String... actions)List of actions to restart on the fleet.StartFleetActionsRequest.BuilderactionsWithStrings(Collection<String> actions)List of actions to restart on the fleet.StartFleetActionsRequest.BuilderfleetId(String fleetId)A unique identifier for the fleet to restart actions on.StartFleetActionsRequest.Builderlocation(String location)The fleet location to restart fleet actions for.StartFleetActionsRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)StartFleetActionsRequest.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
StartFleetActionsRequest.Builder fleetId(String fleetId)
A unique identifier for the fleet to restart actions on. You can use either the fleet ID or ARN value.
- Parameters:
fleetId- A unique identifier for the fleet to restart actions on. 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.
-
actionsWithStrings
StartFleetActionsRequest.Builder actionsWithStrings(Collection<String> actions)
List of actions to restart on the fleet.
- Parameters:
actions- List of actions to restart on the fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actionsWithStrings
StartFleetActionsRequest.Builder actionsWithStrings(String... actions)
List of actions to restart on the fleet.
- Parameters:
actions- List of actions to restart on the fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
StartFleetActionsRequest.Builder actions(Collection<FleetAction> actions)
List of actions to restart on the fleet.
- Parameters:
actions- List of actions to restart on the fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
actions
StartFleetActionsRequest.Builder actions(FleetAction... actions)
List of actions to restart on the fleet.
- Parameters:
actions- List of actions to restart on the fleet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
location
StartFleetActionsRequest.Builder location(String location)
The fleet location to restart fleet actions for. Specify a location in the form of an Amazon Web Services Region code, such as
us-west-2.- Parameters:
location- The fleet location to restart fleet actions for. Specify a 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.
-
overrideConfiguration
StartFleetActionsRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
StartFleetActionsRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-