[][src]Struct rusoto_gamelift::UpdateFleetAttributesInput

pub struct UpdateFleetAttributesInput {
    pub description: Option<String>,
    pub fleet_id: String,
    pub metric_groups: Option<Vec<String>>,
    pub name: Option<String>,
    pub new_game_session_protection_policy: Option<String>,
    pub resource_creation_limit_policy: Option<ResourceCreationLimitPolicy>,
}

Represents the input for a request action.

Fields

description: Option<String>

Human-readable description of a fleet.

fleet_id: String

Unique identifier for a fleet to update attribute metadata for.

metric_groups: Option<Vec<String>>

Names of metric groups to include this fleet in. Amazon CloudWatch uses a fleet metric group is to aggregate metrics from multiple fleets. Use an existing metric group name to add this fleet to the group. Or use a new name to create a new metric group. A fleet can only be included in one metric group at a time.

name: Option<String>

Descriptive label that is associated with a fleet. Fleet names do not need to be unique.

new_game_session_protection_policy: Option<String>

Game session protection policy to apply to all new instances created in this fleet. Instances that already exist are not affected. You can set protection for individual instances using UpdateGameSession.

resource_creation_limit_policy: Option<ResourceCreationLimitPolicy>

Policy that limits the number of game sessions an individual player can create over a span of time.

Trait Implementations

impl PartialEq<UpdateFleetAttributesInput> for UpdateFleetAttributesInput[src]

impl Default for UpdateFleetAttributesInput[src]

impl Clone for UpdateFleetAttributesInput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for UpdateFleetAttributesInput[src]

impl Serialize for UpdateFleetAttributesInput[src]

Auto Trait Implementations

impl Send for UpdateFleetAttributesInput

impl Sync for UpdateFleetAttributesInput

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self