Struct rusoto_elasticbeanstalk::MaxCountRule[][src]

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

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

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

Specify the maximum number of application versions to retain.

Trait Implementations

impl Default for MaxCountRule
[src]

Returns the "default value" for a type. Read more

impl Debug for MaxCountRule
[src]

Formats the value using the given formatter. Read more

impl Clone for MaxCountRule
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MaxCountRule
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations