[][src]Struct rusoto_ec2::FleetLaunchTemplateOverridesRequest

pub struct FleetLaunchTemplateOverridesRequest {
    pub availability_zone: Option<String>,
    pub instance_type: Option<String>,
    pub max_price: Option<String>,
    pub placement: Option<Placement>,
    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<Placement>

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 launch template override has the lowest priority.

subnet_id: Option<String>

The IDs of the subnets in which to launch the instances. Separate multiple subnet IDs using commas (for example, subnet-1234abcdeexample1, subnet-0987cdef6example2). A request of type instant can have only one subnet ID.

weighted_capacity: Option<f64>

The number of units provided by the specified instance type.

Trait Implementations

impl Clone for FleetLaunchTemplateOverridesRequest[src]

impl Debug for FleetLaunchTemplateOverridesRequest[src]

impl Default for FleetLaunchTemplateOverridesRequest[src]

impl PartialEq<FleetLaunchTemplateOverridesRequest> for FleetLaunchTemplateOverridesRequest[src]

impl StructuralPartialEq for FleetLaunchTemplateOverridesRequest[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.