[][src]Struct rusoto_autoscaling::MixedInstancesPolicy

pub struct MixedInstancesPolicy {
    pub instances_distribution: Option<InstancesDistribution>,
    pub launch_template: Option<LaunchTemplate>,
}

Describes a mixed instances policy for an Auto Scaling group. With mixed instances, your Auto Scaling group can provision a combination of On-Demand Instances and Spot Instances across multiple instance types. For more information, see Auto Scaling Groups with Multiple Instance Types and Purchase Options in the Amazon EC2 Auto Scaling User Guide.

You can create a mixed instances policy for a new Auto Scaling group, or you can create it for an existing group by updating the group to specify MixedInstancesPolicy as the top-level parameter instead of a launch configuration or launch template. For more information, see CreateAutoScalingGroup and UpdateAutoScalingGroup.

Fields

instances_distribution: Option<InstancesDistribution>

The instances distribution to use.

If you leave this parameter unspecified, the value for each parameter in InstancesDistribution uses a default value.

launch_template: Option<LaunchTemplate>

The launch template and instance types (overrides).

Required when creating a mixed instances policy.

Trait Implementations

impl Clone for MixedInstancesPolicy[src]

impl Debug for MixedInstancesPolicy[src]

impl Default for MixedInstancesPolicy[src]

impl PartialEq<MixedInstancesPolicy> for MixedInstancesPolicy[src]

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