[][src]Struct rusoto_ec2::FleetLaunchTemplateOverrides

pub struct FleetLaunchTemplateOverrides {
    pub availability_zone: Option<String>,
    pub instance_type: Option<String>,
    pub max_price: Option<String>,
    pub placement: Option<PlacementResponse>,
    pub priority: Option<f64>,
    pub subnet_id: Option<String>,
    pub weighted_capacity: Option<f64>,
}

Describes overrides for a launch template.

Fields

availability_zone: Option<String>

The Availability Zone in which to launch the instances.

instance_type: Option<String>

The instance type.

max_price: Option<String>

The maximum price per unit hour that you are willing to pay for a Spot Instance.

placement: Option<PlacementResponse>

The location where the instance launched, if applicable.

priority: Option<f64>

The priority for the launch template override. If AllocationStrategy is set to prioritized, EC2 Fleet uses priority to determine which launch template override to use first in fulfilling On-Demand capacity. The highest priority is launched first. Valid values are whole numbers starting at 0. The lower the number, the higher the priority. If no number is set, the override has the lowest priority.

subnet_id: Option<String>

The ID of the subnet in which to launch the instances.

weighted_capacity: Option<f64>

The number of units provided by the specified instance type.

Trait Implementations

impl Clone for FleetLaunchTemplateOverrides[src]

impl Debug for FleetLaunchTemplateOverrides[src]

impl Default for FleetLaunchTemplateOverrides[src]

impl PartialEq<FleetLaunchTemplateOverrides> for FleetLaunchTemplateOverrides[src]

impl StructuralPartialEq for FleetLaunchTemplateOverrides[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.