#[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
sourceimpl 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.
sourceimpl ApplicationVersionLifecycleConfig
impl ApplicationVersionLifecycleConfig
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ApplicationVersionLifecycleConfig
Trait Implementations
sourceimpl Clone for ApplicationVersionLifecycleConfig
impl Clone for ApplicationVersionLifecycleConfig
sourcefn clone(&self) -> ApplicationVersionLifecycleConfig
fn clone(&self) -> ApplicationVersionLifecycleConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<ApplicationVersionLifecycleConfig> for ApplicationVersionLifecycleConfig
impl PartialEq<ApplicationVersionLifecycleConfig> for ApplicationVersionLifecycleConfig
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &ApplicationVersionLifecycleConfig) -> bool
fn ne(&self, other: &ApplicationVersionLifecycleConfig) -> bool
This method tests for !=
.
impl StructuralPartialEq for ApplicationVersionLifecycleConfig
Auto Trait Implementations
impl RefUnwindSafe for ApplicationVersionLifecycleConfig
impl Send for ApplicationVersionLifecycleConfig
impl Sync for ApplicationVersionLifecycleConfig
impl Unpin for ApplicationVersionLifecycleConfig
impl UnwindSafe for ApplicationVersionLifecycleConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more