[−][src]Struct rusoto_gamelift::StartGameSessionPlacementInput
Represents the input for a request action.
Fields
desired_player_sessions: Option<Vec<DesiredPlayerSession>>
Set of information on each player to create a player session for.
game_properties: Option<Vec<GameProperty>>
Set of custom properties for a game session, formatted as key:value pairs. These properties are passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session).
game_session_data: Option<String>
Set of custom game session properties, formatted as a single string value. This data is passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session).
game_session_name: Option<String>
Descriptive label that is associated with a game session. Session names do not need to be unique.
game_session_queue_name: String
Name of the queue to use to place the new game session.
maximum_player_session_count: i64
Maximum number of players that can be connected simultaneously to the game session.
placement_id: String
Unique identifier to assign to the new game session placement. This value is developer-defined. The value must be unique across all regions and cannot be reused unless you are resubmitting a canceled or timed-out placement request.
player_latencies: Option<Vec<PlayerLatency>>
Set of values, expressed in milliseconds, indicating the amount of latency that a player experiences when connected to AWS regions. This information is used to try to place the new game session where it can offer the best possible gameplay experience for the players.
Trait Implementations
impl PartialEq<StartGameSessionPlacementInput> for StartGameSessionPlacementInput
[src]
fn eq(&self, other: &StartGameSessionPlacementInput) -> bool
[src]
fn ne(&self, other: &StartGameSessionPlacementInput) -> bool
[src]
impl Default for StartGameSessionPlacementInput
[src]
impl Clone for StartGameSessionPlacementInput
[src]
fn clone(&self) -> StartGameSessionPlacementInput
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for StartGameSessionPlacementInput
[src]
impl Serialize for StartGameSessionPlacementInput
[src]
Auto Trait Implementations
impl Send for StartGameSessionPlacementInput
impl Sync for StartGameSessionPlacementInput
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self