Struct rusoto_gamelift::GameSessionPlacement [] [src]

pub struct GameSessionPlacement {
    pub end_time: Option<Timestamp>,
    pub game_properties: Option<GamePropertyList>,
    pub game_session_arn: Option<NonZeroAndMaxString>,
    pub game_session_id: Option<NonZeroAndMaxString>,
    pub game_session_name: Option<NonZeroAndMaxString>,
    pub game_session_queue_name: Option<GameSessionQueueName>,
    pub game_session_region: Option<NonZeroAndMaxString>,
    pub ip_address: Option<IpAddress>,
    pub maximum_player_session_count: Option<WholeNumber>,
    pub placed_player_sessions: Option<PlacedPlayerSessionList>,
    pub placement_id: Option<IdStringModel>,
    pub player_latencies: Option<PlayerLatencyList>,
    pub port: Option<PortNumber>,
    pub start_time: Option<Timestamp>,
    pub status: Option<GameSessionPlacementState>,
}

Object that describes a StartGameSessionPlacement request. This object includes the full details of the original request plus the current status and start/end time stamps.

Game session placement-related operations include:

Fields

Time stamp indicating when this request was completed, canceled, or timed out.

Set of developer-defined properties for a game session. These properties are passed to the server process hosting the game session.

Identifier for the game session created by this placement request. This value is set once the new game session is placed (placement status is Fulfilled). This identifier is unique across all regions. You can use this value as a GameSessionId value as needed.

Unique identifier for the game session. This value is set once the new game session is placed (placement status is Fulfilled).

Descriptive label that is associated with a game session. Session names do not need to be unique.

Descriptive label that is associated with queue. Queue names must be unique within each region.

Name of the region where the game session created by this placement request is running. This value is set once the new game session is placed (placement status is Fulfilled).

IP address of the game session. To connect to a Amazon GameLift game server, an app needs both the IP address and port number. This value is set once the new game session is placed (placement status is Fulfilled).

Maximum number of players that can be connected simultaneously to the game session.

Collection of information on player sessions created in response to the game session placement request. These player sessions are created only once a new game session is successfully placed (placement status is Fulfilled). This information includes the player ID (as provided in the placement request) and the corresponding player session ID. Retrieve full player sessions by calling DescribePlayerSessions with the player session ID.

Unique identifier for a game session placement.

Set of values, expressed in milliseconds, indicating the amount of latency that players are experiencing when connected to AWS regions.

Port number for the game session. To connect to a Amazon GameLift game server, an app needs both the IP address and port number. This value is set once the new game session is placed (placement status is Fulfilled).

Time stamp indicating when this request was placed in the queue. Format is a number expressed in Unix time as milliseconds (for example "1469498468.057").

Current status of the game session placement request.

  • PENDING – The placement request is currently in the queue waiting to be processed.

  • FULFILLED – A new game session and player sessions (if requested) have been successfully created. Values for GameSessionArn and GameSessionRegion are available.

  • CANCELLED – The placement request was canceled with a call to StopGameSessionPlacement.

  • TIMED_OUT – A new game session was not successfully created before the time limit expired. You can resubmit the placement request as needed.

Trait Implementations

impl Default for GameSessionPlacement
[src]

Returns the "default value" for a type. Read more

impl Debug for GameSessionPlacement
[src]

Formats the value using the given formatter.

impl Clone for GameSessionPlacement
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more