[−][src]Struct rusoto_gamelift::UpdateFleetAttributesInput
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.
-
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.
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]
fn eq(&self, other: &UpdateFleetAttributesInput) -> bool
[src]
fn ne(&self, other: &UpdateFleetAttributesInput) -> bool
[src]
impl Default for UpdateFleetAttributesInput
[src]
impl Clone for UpdateFleetAttributesInput
[src]
fn clone(&self) -> 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]
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