Struct aws_sdk_gamelift::client::fluent_builders::ClaimGameServer
source · [−]pub struct ClaimGameServer { /* private fields */ }
Expand description
Fluent builder constructing a request to ClaimGameServer
.
This operation is used with the GameLift FleetIQ solution and game server groups.
Locates an available game server and temporarily reserves it to host gameplay and players. This operation is called from a game client or client service (such as a matchmaker) to request hosting resources for a new game session. In response, GameLift FleetIQ locates an available game server, places it in CLAIMED
status for 60 seconds, and returns connection information that players can use to connect to the game server.
To claim a game server, identify a game server group. You can also specify a game server ID, although this approach bypasses GameLift FleetIQ placement optimization. Optionally, include game data to pass to the game server at the start of a game session, such as a game map or player information.
When a game server is successfully claimed, connection information is returned. A claimed game server's utilization status remains AVAILABLE
while the claim status is set to CLAIMED
for up to 60 seconds. This time period gives the game server time to update its status to UTILIZED
(using UpdateGameServer
) once players join. If the game server's status is not updated within 60 seconds, the game server reverts to unclaimed status and is available to be claimed by another request. The claim time period is a fixed value and is not configurable.
If you try to claim a specific game server, this request will fail in the following cases:
-
If the game server utilization status is
UTILIZED
. -
If the game server claim status is
CLAIMED
.
When claiming a specific game server, this request will succeed even if the game server is running on an instance in DRAINING
status. To avoid this, first check the instance status by calling DescribeGameServerInstances
.
Learn more
Related actions
RegisterGameServer
| ListGameServers
| ClaimGameServer
| DescribeGameServer
| UpdateGameServer
| DeregisterGameServer
| All APIs by task
Implementations
sourceimpl ClaimGameServer
impl ClaimGameServer
sourcepub async fn send(
self
) -> Result<ClaimGameServerOutput, SdkError<ClaimGameServerError>>
pub async fn send(
self
) -> Result<ClaimGameServerOutput, SdkError<ClaimGameServerError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn game_server_group_name(self, input: impl Into<String>) -> Self
pub fn game_server_group_name(self, input: impl Into<String>) -> Self
A unique identifier for the game server group where the game server is running. Use either the GameServerGroup
name or ARN value. If you are not specifying a game server to claim, this value identifies where you want GameLift FleetIQ to look for an available game server to claim.
sourcepub fn set_game_server_group_name(self, input: Option<String>) -> Self
pub fn set_game_server_group_name(self, input: Option<String>) -> Self
A unique identifier for the game server group where the game server is running. Use either the GameServerGroup
name or ARN value. If you are not specifying a game server to claim, this value identifies where you want GameLift FleetIQ to look for an available game server to claim.
sourcepub fn game_server_id(self, input: impl Into<String>) -> Self
pub fn game_server_id(self, input: impl Into<String>) -> Self
A custom string that uniquely identifies the game server to claim. If this parameter is left empty, GameLift FleetIQ searches for an available game server in the specified game server group.
sourcepub fn set_game_server_id(self, input: Option<String>) -> Self
pub fn set_game_server_id(self, input: Option<String>) -> Self
A custom string that uniquely identifies the game server to claim. If this parameter is left empty, GameLift FleetIQ searches for an available game server in the specified game server group.
sourcepub fn game_server_data(self, input: impl Into<String>) -> Self
pub fn game_server_data(self, input: impl Into<String>) -> Self
A set of custom game server properties, formatted as a single string value. This data is passed to a game client or service when it requests information on game servers using ListGameServers
or ClaimGameServer
.
sourcepub fn set_game_server_data(self, input: Option<String>) -> Self
pub fn set_game_server_data(self, input: Option<String>) -> Self
A set of custom game server properties, formatted as a single string value. This data is passed to a game client or service when it requests information on game servers using ListGameServers
or ClaimGameServer
.
Trait Implementations
sourceimpl Clone for ClaimGameServer
impl Clone for ClaimGameServer
sourcefn clone(&self) -> ClaimGameServer
fn clone(&self) -> ClaimGameServer
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl !RefUnwindSafe for ClaimGameServer
impl Send for ClaimGameServer
impl Sync for ClaimGameServer
impl Unpin for ClaimGameServer
impl !UnwindSafe for ClaimGameServer
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more