[][src]Struct rusoto_elasticbeanstalk::MaxCountRule

pub struct MaxCountRule {
    pub delete_source_from_s3: Option<bool>,
    pub enabled: bool,
    pub max_count: Option<i64>,
}

A lifecycle rule that deletes the oldest application version when the maximum count is exceeded.

Fields

delete_source_from_s3: Option<bool>

Set to true to delete a version's source bundle from Amazon S3 when Elastic Beanstalk deletes the application version.

enabled: bool

Specify true to apply the rule, or false to disable it.

max_count: Option<i64>

Specify the maximum number of application versions to retain.

Trait Implementations

impl Clone for MaxCountRule[src]

impl Debug for MaxCountRule[src]

impl Default for MaxCountRule[src]

impl PartialEq<MaxCountRule> for MaxCountRule[src]

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