Interface UpdateAliasRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateAliasRequest.Builder,UpdateAliasRequest>,GameLiftRequest.Builder,SdkBuilder<UpdateAliasRequest.Builder,UpdateAliasRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateAliasRequest
public static interface UpdateAliasRequest.Builder extends GameLiftRequest.Builder, SdkPojo, CopyableBuilder<UpdateAliasRequest.Builder,UpdateAliasRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateAliasRequest.BuilderaliasId(String aliasId)A unique identifier for the alias that you want to update.UpdateAliasRequest.Builderdescription(String description)A human-readable description of the alias.UpdateAliasRequest.Buildername(String name)A descriptive label that is associated with an alias.UpdateAliasRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateAliasRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default UpdateAliasRequest.BuilderroutingStrategy(Consumer<RoutingStrategy.Builder> routingStrategy)The routing configuration, including routing type and fleet target, for the alias.UpdateAliasRequest.BuilderroutingStrategy(RoutingStrategy routingStrategy)The routing configuration, including routing type and fleet target, for the alias.-
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
-
aliasId
UpdateAliasRequest.Builder aliasId(String aliasId)
A unique identifier for the alias that you want to update. You can use either the alias ID or ARN value.
- Parameters:
aliasId- A unique identifier for the alias that you want to update. You can use either the alias ID or ARN value.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UpdateAliasRequest.Builder name(String name)
A descriptive label that is associated with an alias. Alias names do not need to be unique.
- Parameters:
name- A descriptive label that is associated with an alias. Alias names do not need to be unique.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
UpdateAliasRequest.Builder description(String description)
A human-readable description of the alias.
- Parameters:
description- A human-readable description of the alias.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
routingStrategy
UpdateAliasRequest.Builder routingStrategy(RoutingStrategy routingStrategy)
The routing configuration, including routing type and fleet target, for the alias.
- Parameters:
routingStrategy- The routing configuration, including routing type and fleet target, for the alias.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
routingStrategy
default UpdateAliasRequest.Builder routingStrategy(Consumer<RoutingStrategy.Builder> routingStrategy)
The routing configuration, including routing type and fleet target, for the alias.
This is a convenience method that creates an instance of theRoutingStrategy.Builderavoiding the need to create one manually viaRoutingStrategy.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toroutingStrategy(RoutingStrategy).- Parameters:
routingStrategy- a consumer that will call methods onRoutingStrategy.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
routingStrategy(RoutingStrategy)
-
overrideConfiguration
UpdateAliasRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateAliasRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-