#[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 for ApplicationVersionLifecycleConfig
impl PartialEq 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 ==
.impl StructuralPartialEq for ApplicationVersionLifecycleConfig
Auto Trait Implementations§
impl Freeze for ApplicationVersionLifecycleConfig
impl RefUnwindSafe for ApplicationVersionLifecycleConfig
impl Send for ApplicationVersionLifecycleConfig
impl Sync for ApplicationVersionLifecycleConfig
impl Unpin for ApplicationVersionLifecycleConfig
impl UnwindSafe for ApplicationVersionLifecycleConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more