[][src]Struct rusoto_eks::NodegroupScalingConfig

pub struct NodegroupScalingConfig {
    pub desired_size: Option<i64>,
    pub max_size: Option<i64>,
    pub min_size: Option<i64>,
}

An object representing the scaling configuration details for the Auto Scaling group that is associated with your node group. If you specify a value for any property, then you must specify values for all of the properties.

Fields

desired_size: Option<i64>

The current number of worker nodes that the managed node group should maintain.

max_size: Option<i64>

The maximum number of worker nodes that the managed node group can scale out to. Managed node groups can support up to 100 nodes by default.

min_size: Option<i64>

The minimum number of worker nodes that the managed node group can scale in to. This number must be greater than zero.

Trait Implementations

impl Clone for NodegroupScalingConfig[src]

impl Debug for NodegroupScalingConfig[src]

impl Default for NodegroupScalingConfig[src]

impl<'de> Deserialize<'de> for NodegroupScalingConfig[src]

impl PartialEq<NodegroupScalingConfig> for NodegroupScalingConfig[src]

impl Serialize for NodegroupScalingConfig[src]

impl StructuralPartialEq for NodegroupScalingConfig[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.