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
Modifier and TypeMethodDescriptionA unique identifier for the alias that you want to update.description
(String description) A human-readable description of the alias.A descriptive label that is associated with an alias.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.default UpdateAliasRequest.Builder
routingStrategy
(Consumer<RoutingStrategy.Builder> routingStrategy) The routing configuration, including routing type and fleet target, for the alias.routingStrategy
(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 Details
-
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
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
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
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.Builder
avoiding the need to create one manually viaRoutingStrategy.builder()
.When the
Consumer
completes,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:
-
overrideConfiguration
UpdateAliasRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
UpdateAliasRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-