Struct rusoto_gamelift::GameSessionDetail[][src]

pub struct GameSessionDetail {
    pub game_session: Option<GameSession>,
    pub protection_policy: Option<String>,
}

A game session's properties plus the protection policy currently in force.

Fields

Object that describes a game session.

Current status of protection for the game session.

  • NoProtection -- The game session can be terminated during a scale-down event.

  • FullProtection -- If the game session is in an ACTIVE status, it cannot be terminated during a scale-down event.

Trait Implementations

impl Default for GameSessionDetail
[src]

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

impl Debug for GameSessionDetail
[src]

Formats the value using the given formatter. Read more

impl Clone for GameSessionDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GameSessionDetail
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations