/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace GameLift { namespace Model { /** *

This data type is part of Amazon GameLift FleetIQ with game server * groups, which is in preview release and is subject to change.

*

Properties describing a game server resource.

A game server resource * is created by a successful call to RegisterGameServer and deleted by * calling DeregisterGameServer.

See Also:

AWS * API Reference

*/ class AWS_GAMELIFT_API GameServer { public: GameServer(); GameServer(Aws::Utils::Json::JsonView jsonValue); GameServer& operator=(Aws::Utils::Json::JsonView jsonValue); Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name identifier for the game server group where the game server is * located.

*/ inline const Aws::String& GetGameServerGroupName() const{ return m_gameServerGroupName; } /** *

The name identifier for the game server group where the game server is * located.

*/ inline bool GameServerGroupNameHasBeenSet() const { return m_gameServerGroupNameHasBeenSet; } /** *

The name identifier for the game server group where the game server is * located.

*/ inline void SetGameServerGroupName(const Aws::String& value) { m_gameServerGroupNameHasBeenSet = true; m_gameServerGroupName = value; } /** *

The name identifier for the game server group where the game server is * located.

*/ inline void SetGameServerGroupName(Aws::String&& value) { m_gameServerGroupNameHasBeenSet = true; m_gameServerGroupName = std::move(value); } /** *

The name identifier for the game server group where the game server is * located.

*/ inline void SetGameServerGroupName(const char* value) { m_gameServerGroupNameHasBeenSet = true; m_gameServerGroupName.assign(value); } /** *

The name identifier for the game server group where the game server is * located.

*/ inline GameServer& WithGameServerGroupName(const Aws::String& value) { SetGameServerGroupName(value); return *this;} /** *

The name identifier for the game server group where the game server is * located.

*/ inline GameServer& WithGameServerGroupName(Aws::String&& value) { SetGameServerGroupName(std::move(value)); return *this;} /** *

The name identifier for the game server group where the game server is * located.

*/ inline GameServer& WithGameServerGroupName(const char* value) { SetGameServerGroupName(value); return *this;} /** *

The ARN identifier for the game server group where the game server is * located.

*/ inline const Aws::String& GetGameServerGroupArn() const{ return m_gameServerGroupArn; } /** *

The ARN identifier for the game server group where the game server is * located.

*/ inline bool GameServerGroupArnHasBeenSet() const { return m_gameServerGroupArnHasBeenSet; } /** *

The ARN identifier for the game server group where the game server is * located.

*/ inline void SetGameServerGroupArn(const Aws::String& value) { m_gameServerGroupArnHasBeenSet = true; m_gameServerGroupArn = value; } /** *

The ARN identifier for the game server group where the game server is * located.

*/ inline void SetGameServerGroupArn(Aws::String&& value) { m_gameServerGroupArnHasBeenSet = true; m_gameServerGroupArn = std::move(value); } /** *

The ARN identifier for the game server group where the game server is * located.

*/ inline void SetGameServerGroupArn(const char* value) { m_gameServerGroupArnHasBeenSet = true; m_gameServerGroupArn.assign(value); } /** *

The ARN identifier for the game server group where the game server is * located.

*/ inline GameServer& WithGameServerGroupArn(const Aws::String& value) { SetGameServerGroupArn(value); return *this;} /** *

The ARN identifier for the game server group where the game server is * located.

*/ inline GameServer& WithGameServerGroupArn(Aws::String&& value) { SetGameServerGroupArn(std::move(value)); return *this;} /** *

The ARN identifier for the game server group where the game server is * located.

*/ inline GameServer& WithGameServerGroupArn(const char* value) { SetGameServerGroupArn(value); return *this;} /** *

A custom string that uniquely identifies the game server. Game server IDs are * developer-defined and are unique across all game server groups in an AWS * account.

*/ inline const Aws::String& GetGameServerId() const{ return m_gameServerId; } /** *

A custom string that uniquely identifies the game server. Game server IDs are * developer-defined and are unique across all game server groups in an AWS * account.

*/ inline bool GameServerIdHasBeenSet() const { return m_gameServerIdHasBeenSet; } /** *

A custom string that uniquely identifies the game server. Game server IDs are * developer-defined and are unique across all game server groups in an AWS * account.

*/ inline void SetGameServerId(const Aws::String& value) { m_gameServerIdHasBeenSet = true; m_gameServerId = value; } /** *

A custom string that uniquely identifies the game server. Game server IDs are * developer-defined and are unique across all game server groups in an AWS * account.

*/ inline void SetGameServerId(Aws::String&& value) { m_gameServerIdHasBeenSet = true; m_gameServerId = std::move(value); } /** *

A custom string that uniquely identifies the game server. Game server IDs are * developer-defined and are unique across all game server groups in an AWS * account.

*/ inline void SetGameServerId(const char* value) { m_gameServerIdHasBeenSet = true; m_gameServerId.assign(value); } /** *

A custom string that uniquely identifies the game server. Game server IDs are * developer-defined and are unique across all game server groups in an AWS * account.

*/ inline GameServer& WithGameServerId(const Aws::String& value) { SetGameServerId(value); return *this;} /** *

A custom string that uniquely identifies the game server. Game server IDs are * developer-defined and are unique across all game server groups in an AWS * account.

*/ inline GameServer& WithGameServerId(Aws::String&& value) { SetGameServerId(std::move(value)); return *this;} /** *

A custom string that uniquely identifies the game server. Game server IDs are * developer-defined and are unique across all game server groups in an AWS * account.

*/ inline GameServer& WithGameServerId(const char* value) { SetGameServerId(value); return *this;} /** *

The unique identifier for the instance where the game server is located.

*/ inline const Aws::String& GetInstanceId() const{ return m_instanceId; } /** *

The unique identifier for the instance where the game server is located.

*/ inline bool InstanceIdHasBeenSet() const { return m_instanceIdHasBeenSet; } /** *

The unique identifier for the instance where the game server is located.

*/ inline void SetInstanceId(const Aws::String& value) { m_instanceIdHasBeenSet = true; m_instanceId = value; } /** *

The unique identifier for the instance where the game server is located.

*/ inline void SetInstanceId(Aws::String&& value) { m_instanceIdHasBeenSet = true; m_instanceId = std::move(value); } /** *

The unique identifier for the instance where the game server is located.

*/ inline void SetInstanceId(const char* value) { m_instanceIdHasBeenSet = true; m_instanceId.assign(value); } /** *

The unique identifier for the instance where the game server is located.

*/ inline GameServer& WithInstanceId(const Aws::String& value) { SetInstanceId(value); return *this;} /** *

The unique identifier for the instance where the game server is located.

*/ inline GameServer& WithInstanceId(Aws::String&& value) { SetInstanceId(std::move(value)); return *this;} /** *

The unique identifier for the instance where the game server is located.

*/ inline GameServer& WithInstanceId(const char* value) { SetInstanceId(value); return *this;} /** *

The port and IP address that must be used to establish a client connection to * the game server.

*/ inline const Aws::String& GetConnectionInfo() const{ return m_connectionInfo; } /** *

The port and IP address that must be used to establish a client connection to * the game server.

*/ inline bool ConnectionInfoHasBeenSet() const { return m_connectionInfoHasBeenSet; } /** *

The port and IP address that must be used to establish a client connection to * the game server.

*/ inline void SetConnectionInfo(const Aws::String& value) { m_connectionInfoHasBeenSet = true; m_connectionInfo = value; } /** *

The port and IP address that must be used to establish a client connection to * the game server.

*/ inline void SetConnectionInfo(Aws::String&& value) { m_connectionInfoHasBeenSet = true; m_connectionInfo = std::move(value); } /** *

The port and IP address that must be used to establish a client connection to * the game server.

*/ inline void SetConnectionInfo(const char* value) { m_connectionInfoHasBeenSet = true; m_connectionInfo.assign(value); } /** *

The port and IP address that must be used to establish a client connection to * the game server.

*/ inline GameServer& WithConnectionInfo(const Aws::String& value) { SetConnectionInfo(value); return *this;} /** *

The port and IP address that must be used to establish a client connection to * the game server.

*/ inline GameServer& WithConnectionInfo(Aws::String&& value) { SetConnectionInfo(std::move(value)); return *this;} /** *

The port and IP address that must be used to establish a client connection to * the game server.

*/ inline GameServer& WithConnectionInfo(const char* value) { SetConnectionInfo(value); return *this;} /** *

A set of custom game server properties, formatted as a single string value. * This data is passed to a game client or service in response to requests * ListGameServers or ClaimGameServer. This property can be updated * using UpdateGameServer.

*/ inline const Aws::String& GetGameServerData() const{ return m_gameServerData; } /** *

A set of custom game server properties, formatted as a single string value. * This data is passed to a game client or service in response to requests * ListGameServers or ClaimGameServer. This property can be updated * using UpdateGameServer.

*/ inline bool GameServerDataHasBeenSet() const { return m_gameServerDataHasBeenSet; } /** *

A set of custom game server properties, formatted as a single string value. * This data is passed to a game client or service in response to requests * ListGameServers or ClaimGameServer. This property can be updated * using UpdateGameServer.

*/ inline void SetGameServerData(const Aws::String& value) { m_gameServerDataHasBeenSet = true; m_gameServerData = value; } /** *

A set of custom game server properties, formatted as a single string value. * This data is passed to a game client or service in response to requests * ListGameServers or ClaimGameServer. This property can be updated * using UpdateGameServer.

*/ inline void SetGameServerData(Aws::String&& value) { m_gameServerDataHasBeenSet = true; m_gameServerData = std::move(value); } /** *

A set of custom game server properties, formatted as a single string value. * This data is passed to a game client or service in response to requests * ListGameServers or ClaimGameServer. This property can be updated * using UpdateGameServer.

*/ inline void SetGameServerData(const char* value) { m_gameServerDataHasBeenSet = true; m_gameServerData.assign(value); } /** *

A set of custom game server properties, formatted as a single string value. * This data is passed to a game client or service in response to requests * ListGameServers or ClaimGameServer. This property can be updated * using UpdateGameServer.

*/ inline GameServer& WithGameServerData(const Aws::String& value) { SetGameServerData(value); return *this;} /** *

A set of custom game server properties, formatted as a single string value. * This data is passed to a game client or service in response to requests * ListGameServers or ClaimGameServer. This property can be updated * using UpdateGameServer.

*/ inline GameServer& WithGameServerData(Aws::String&& value) { SetGameServerData(std::move(value)); return *this;} /** *

A set of custom game server properties, formatted as a single string value. * This data is passed to a game client or service in response to requests * ListGameServers or ClaimGameServer. This property can be updated * using UpdateGameServer.

*/ inline GameServer& WithGameServerData(const char* value) { SetGameServerData(value); return *this;} /** *

A game server tag that can be used to request sorted lists of game servers * when calling ListGameServers. Custom sort keys are developer-defined. * This property can be updated using UpdateGameServer.

*/ inline const Aws::String& GetCustomSortKey() const{ return m_customSortKey; } /** *

A game server tag that can be used to request sorted lists of game servers * when calling ListGameServers. Custom sort keys are developer-defined. * This property can be updated using UpdateGameServer.

*/ inline bool CustomSortKeyHasBeenSet() const { return m_customSortKeyHasBeenSet; } /** *

A game server tag that can be used to request sorted lists of game servers * when calling ListGameServers. Custom sort keys are developer-defined. * This property can be updated using UpdateGameServer.

*/ inline void SetCustomSortKey(const Aws::String& value) { m_customSortKeyHasBeenSet = true; m_customSortKey = value; } /** *

A game server tag that can be used to request sorted lists of game servers * when calling ListGameServers. Custom sort keys are developer-defined. * This property can be updated using UpdateGameServer.

*/ inline void SetCustomSortKey(Aws::String&& value) { m_customSortKeyHasBeenSet = true; m_customSortKey = std::move(value); } /** *

A game server tag that can be used to request sorted lists of game servers * when calling ListGameServers. Custom sort keys are developer-defined. * This property can be updated using UpdateGameServer.

*/ inline void SetCustomSortKey(const char* value) { m_customSortKeyHasBeenSet = true; m_customSortKey.assign(value); } /** *

A game server tag that can be used to request sorted lists of game servers * when calling ListGameServers. Custom sort keys are developer-defined. * This property can be updated using UpdateGameServer.

*/ inline GameServer& WithCustomSortKey(const Aws::String& value) { SetCustomSortKey(value); return *this;} /** *

A game server tag that can be used to request sorted lists of game servers * when calling ListGameServers. Custom sort keys are developer-defined. * This property can be updated using UpdateGameServer.

*/ inline GameServer& WithCustomSortKey(Aws::String&& value) { SetCustomSortKey(std::move(value)); return *this;} /** *

A game server tag that can be used to request sorted lists of game servers * when calling ListGameServers. Custom sort keys are developer-defined. * This property can be updated using UpdateGameServer.

*/ inline GameServer& WithCustomSortKey(const char* value) { SetCustomSortKey(value); return *this;} /** *

Indicates when an available game server has been reserved but has not yet * started hosting a game. Once it is claimed, game server remains in CLAIMED * status for a maximum of one minute. During this time, game clients must connect * to the game server and start the game, which triggers the game server to update * its utilization status. After one minute, the game server claim status reverts * to null.

*/ inline const GameServerClaimStatus& GetClaimStatus() const{ return m_claimStatus; } /** *

Indicates when an available game server has been reserved but has not yet * started hosting a game. Once it is claimed, game server remains in CLAIMED * status for a maximum of one minute. During this time, game clients must connect * to the game server and start the game, which triggers the game server to update * its utilization status. After one minute, the game server claim status reverts * to null.

*/ inline bool ClaimStatusHasBeenSet() const { return m_claimStatusHasBeenSet; } /** *

Indicates when an available game server has been reserved but has not yet * started hosting a game. Once it is claimed, game server remains in CLAIMED * status for a maximum of one minute. During this time, game clients must connect * to the game server and start the game, which triggers the game server to update * its utilization status. After one minute, the game server claim status reverts * to null.

*/ inline void SetClaimStatus(const GameServerClaimStatus& value) { m_claimStatusHasBeenSet = true; m_claimStatus = value; } /** *

Indicates when an available game server has been reserved but has not yet * started hosting a game. Once it is claimed, game server remains in CLAIMED * status for a maximum of one minute. During this time, game clients must connect * to the game server and start the game, which triggers the game server to update * its utilization status. After one minute, the game server claim status reverts * to null.

*/ inline void SetClaimStatus(GameServerClaimStatus&& value) { m_claimStatusHasBeenSet = true; m_claimStatus = std::move(value); } /** *

Indicates when an available game server has been reserved but has not yet * started hosting a game. Once it is claimed, game server remains in CLAIMED * status for a maximum of one minute. During this time, game clients must connect * to the game server and start the game, which triggers the game server to update * its utilization status. After one minute, the game server claim status reverts * to null.

*/ inline GameServer& WithClaimStatus(const GameServerClaimStatus& value) { SetClaimStatus(value); return *this;} /** *

Indicates when an available game server has been reserved but has not yet * started hosting a game. Once it is claimed, game server remains in CLAIMED * status for a maximum of one minute. During this time, game clients must connect * to the game server and start the game, which triggers the game server to update * its utilization status. After one minute, the game server claim status reverts * to null.

*/ inline GameServer& WithClaimStatus(GameServerClaimStatus&& value) { SetClaimStatus(std::move(value)); return *this;} /** *

Indicates whether the game server is currently available for new games or is * busy. Possible statuses include:

  • AVAILABLE - The game server is * available to be claimed. A game server that has been claimed remains in this * status until it reports game hosting activity.

  • IN_USE - The * game server is currently hosting a game session with players.

*/ inline const GameServerUtilizationStatus& GetUtilizationStatus() const{ return m_utilizationStatus; } /** *

Indicates whether the game server is currently available for new games or is * busy. Possible statuses include:

  • AVAILABLE - The game server is * available to be claimed. A game server that has been claimed remains in this * status until it reports game hosting activity.

  • IN_USE - The * game server is currently hosting a game session with players.

*/ inline bool UtilizationStatusHasBeenSet() const { return m_utilizationStatusHasBeenSet; } /** *

Indicates whether the game server is currently available for new games or is * busy. Possible statuses include:

  • AVAILABLE - The game server is * available to be claimed. A game server that has been claimed remains in this * status until it reports game hosting activity.

  • IN_USE - The * game server is currently hosting a game session with players.

*/ inline void SetUtilizationStatus(const GameServerUtilizationStatus& value) { m_utilizationStatusHasBeenSet = true; m_utilizationStatus = value; } /** *

Indicates whether the game server is currently available for new games or is * busy. Possible statuses include:

  • AVAILABLE - The game server is * available to be claimed. A game server that has been claimed remains in this * status until it reports game hosting activity.

  • IN_USE - The * game server is currently hosting a game session with players.

*/ inline void SetUtilizationStatus(GameServerUtilizationStatus&& value) { m_utilizationStatusHasBeenSet = true; m_utilizationStatus = std::move(value); } /** *

Indicates whether the game server is currently available for new games or is * busy. Possible statuses include:

  • AVAILABLE - The game server is * available to be claimed. A game server that has been claimed remains in this * status until it reports game hosting activity.

  • IN_USE - The * game server is currently hosting a game session with players.

*/ inline GameServer& WithUtilizationStatus(const GameServerUtilizationStatus& value) { SetUtilizationStatus(value); return *this;} /** *

Indicates whether the game server is currently available for new games or is * busy. Possible statuses include:

  • AVAILABLE - The game server is * available to be claimed. A game server that has been claimed remains in this * status until it reports game hosting activity.

  • IN_USE - The * game server is currently hosting a game session with players.

*/ inline GameServer& WithUtilizationStatus(GameServerUtilizationStatus&& value) { SetUtilizationStatus(std::move(value)); return *this;} /** *

Time stamp indicating when the game server resource was created with a * RegisterGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057").

*/ inline const Aws::Utils::DateTime& GetRegistrationTime() const{ return m_registrationTime; } /** *

Time stamp indicating when the game server resource was created with a * RegisterGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057").

*/ inline bool RegistrationTimeHasBeenSet() const { return m_registrationTimeHasBeenSet; } /** *

Time stamp indicating when the game server resource was created with a * RegisterGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057").

*/ inline void SetRegistrationTime(const Aws::Utils::DateTime& value) { m_registrationTimeHasBeenSet = true; m_registrationTime = value; } /** *

Time stamp indicating when the game server resource was created with a * RegisterGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057").

*/ inline void SetRegistrationTime(Aws::Utils::DateTime&& value) { m_registrationTimeHasBeenSet = true; m_registrationTime = std::move(value); } /** *

Time stamp indicating when the game server resource was created with a * RegisterGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057").

*/ inline GameServer& WithRegistrationTime(const Aws::Utils::DateTime& value) { SetRegistrationTime(value); return *this;} /** *

Time stamp indicating when the game server resource was created with a * RegisterGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057").

*/ inline GameServer& WithRegistrationTime(Aws::Utils::DateTime&& value) { SetRegistrationTime(std::move(value)); return *this;} /** *

Time stamp indicating the last time the game server was claimed with a * ClaimGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057"). This value is used to calculate * when the game server's claim status.

*/ inline const Aws::Utils::DateTime& GetLastClaimTime() const{ return m_lastClaimTime; } /** *

Time stamp indicating the last time the game server was claimed with a * ClaimGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057"). This value is used to calculate * when the game server's claim status.

*/ inline bool LastClaimTimeHasBeenSet() const { return m_lastClaimTimeHasBeenSet; } /** *

Time stamp indicating the last time the game server was claimed with a * ClaimGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057"). This value is used to calculate * when the game server's claim status.

*/ inline void SetLastClaimTime(const Aws::Utils::DateTime& value) { m_lastClaimTimeHasBeenSet = true; m_lastClaimTime = value; } /** *

Time stamp indicating the last time the game server was claimed with a * ClaimGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057"). This value is used to calculate * when the game server's claim status.

*/ inline void SetLastClaimTime(Aws::Utils::DateTime&& value) { m_lastClaimTimeHasBeenSet = true; m_lastClaimTime = std::move(value); } /** *

Time stamp indicating the last time the game server was claimed with a * ClaimGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057"). This value is used to calculate * when the game server's claim status.

*/ inline GameServer& WithLastClaimTime(const Aws::Utils::DateTime& value) { SetLastClaimTime(value); return *this;} /** *

Time stamp indicating the last time the game server was claimed with a * ClaimGameServer request. Format is a number expressed in Unix time as * milliseconds (for example "1469498468.057"). This value is used to calculate * when the game server's claim status.

*/ inline GameServer& WithLastClaimTime(Aws::Utils::DateTime&& value) { SetLastClaimTime(std::move(value)); return *this;} /** *

Time stamp indicating the last time the game server was updated with health * status using an UpdateGameServer request. Format is a number expressed in * Unix time as milliseconds (for example "1469498468.057"). After game server * registration, this property is only changed when a game server update specifies * a health check value.

*/ inline const Aws::Utils::DateTime& GetLastHealthCheckTime() const{ return m_lastHealthCheckTime; } /** *

Time stamp indicating the last time the game server was updated with health * status using an UpdateGameServer request. Format is a number expressed in * Unix time as milliseconds (for example "1469498468.057"). After game server * registration, this property is only changed when a game server update specifies * a health check value.

*/ inline bool LastHealthCheckTimeHasBeenSet() const { return m_lastHealthCheckTimeHasBeenSet; } /** *

Time stamp indicating the last time the game server was updated with health * status using an UpdateGameServer request. Format is a number expressed in * Unix time as milliseconds (for example "1469498468.057"). After game server * registration, this property is only changed when a game server update specifies * a health check value.

*/ inline void SetLastHealthCheckTime(const Aws::Utils::DateTime& value) { m_lastHealthCheckTimeHasBeenSet = true; m_lastHealthCheckTime = value; } /** *

Time stamp indicating the last time the game server was updated with health * status using an UpdateGameServer request. Format is a number expressed in * Unix time as milliseconds (for example "1469498468.057"). After game server * registration, this property is only changed when a game server update specifies * a health check value.

*/ inline void SetLastHealthCheckTime(Aws::Utils::DateTime&& value) { m_lastHealthCheckTimeHasBeenSet = true; m_lastHealthCheckTime = std::move(value); } /** *

Time stamp indicating the last time the game server was updated with health * status using an UpdateGameServer request. Format is a number expressed in * Unix time as milliseconds (for example "1469498468.057"). After game server * registration, this property is only changed when a game server update specifies * a health check value.

*/ inline GameServer& WithLastHealthCheckTime(const Aws::Utils::DateTime& value) { SetLastHealthCheckTime(value); return *this;} /** *

Time stamp indicating the last time the game server was updated with health * status using an UpdateGameServer request. Format is a number expressed in * Unix time as milliseconds (for example "1469498468.057"). After game server * registration, this property is only changed when a game server update specifies * a health check value.

*/ inline GameServer& WithLastHealthCheckTime(Aws::Utils::DateTime&& value) { SetLastHealthCheckTime(std::move(value)); return *this;} private: Aws::String m_gameServerGroupName; bool m_gameServerGroupNameHasBeenSet; Aws::String m_gameServerGroupArn; bool m_gameServerGroupArnHasBeenSet; Aws::String m_gameServerId; bool m_gameServerIdHasBeenSet; Aws::String m_instanceId; bool m_instanceIdHasBeenSet; Aws::String m_connectionInfo; bool m_connectionInfoHasBeenSet; Aws::String m_gameServerData; bool m_gameServerDataHasBeenSet; Aws::String m_customSortKey; bool m_customSortKeyHasBeenSet; GameServerClaimStatus m_claimStatus; bool m_claimStatusHasBeenSet; GameServerUtilizationStatus m_utilizationStatus; bool m_utilizationStatusHasBeenSet; Aws::Utils::DateTime m_registrationTime; bool m_registrationTimeHasBeenSet; Aws::Utils::DateTime m_lastClaimTime; bool m_lastClaimTimeHasBeenSet; Aws::Utils::DateTime m_lastHealthCheckTime; bool m_lastHealthCheckTimeHasBeenSet; }; } // namespace Model } // namespace GameLift } // namespace Aws