[][src]Struct rusoto_ec2::FleetLaunchTemplateOverrides

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

Describes overrides for a launch template.

Fields

The Availability Zone in which to launch the instances.

The instance type.

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

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.

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

The number of units provided by the specified instance type.

Trait Implementations

impl Clone for FleetLaunchTemplateOverrides
[src]

Performs copy-assignment from source. Read more

impl Default for FleetLaunchTemplateOverrides
[src]

impl PartialEq<FleetLaunchTemplateOverrides> for FleetLaunchTemplateOverrides
[src]

impl Debug for FleetLaunchTemplateOverrides
[src]

Auto Trait Implementations

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]

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

🔬 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, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T