#[non_exhaustive]pub struct ApplicationVersionLifecycleConfig {
pub max_count_rule: Option<MaxCountRule>,
pub max_age_rule: Option<MaxAgeRule>,
}
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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.max_count_rule: Option<MaxCountRule>
Specify a max count rule to restrict the number of application versions that are retained for an application.
max_age_rule: Option<MaxAgeRule>
Specify a max age rule to restrict the length of time that application versions are retained for an application.
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() -> ApplicationVersionLifecycleConfigBuilder
pub fn builder() -> ApplicationVersionLifecycleConfigBuilder
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
self
and other
values to be equal, and is used
by ==
.