#[non_exhaustive]pub struct ApplicationVersionLifecycleConfig { /* private fields */ }
Expand description
The application version lifecycle settings for an application. Defines the rules that Elastic Beanstalk applies to an application's versions in order to avoid hitting the per-region limit for application versions.
When Elastic Beanstalk deletes an application version from its database, you can no longer deploy that version to an environment. The source bundle remains in S3 unless you configure the rule to delete it.
Implementations§
source§impl ApplicationVersionLifecycleConfig
impl ApplicationVersionLifecycleConfig
sourcepub fn max_count_rule(&self) -> Option<&MaxCountRule>
pub fn max_count_rule(&self) -> Option<&MaxCountRule>
Specify a max count rule to restrict the number of application versions that are retained for an application.
sourcepub fn max_age_rule(&self) -> Option<&MaxAgeRule>
pub fn max_age_rule(&self) -> Option<&MaxAgeRule>
Specify a max age rule to restrict the length of time that application versions are retained for an application.
source§impl ApplicationVersionLifecycleConfig
impl ApplicationVersionLifecycleConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ApplicationVersionLifecycleConfig
.
Trait Implementations§
source§impl Clone for ApplicationVersionLifecycleConfig
impl Clone for ApplicationVersionLifecycleConfig
source§fn clone(&self) -> ApplicationVersionLifecycleConfig
fn clone(&self) -> ApplicationVersionLifecycleConfig
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<ApplicationVersionLifecycleConfig> for ApplicationVersionLifecycleConfig
impl PartialEq<ApplicationVersionLifecycleConfig> for ApplicationVersionLifecycleConfig
source§fn eq(&self, other: &ApplicationVersionLifecycleConfig) -> bool
fn eq(&self, other: &ApplicationVersionLifecycleConfig) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.