pub struct ApplicationVersionLifecycleConfig {
pub max_age_rule: Option<MaxAgeRule>,
pub max_count_rule: Option<MaxCountRule>,
}
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§
§max_age_rule: Option<MaxAgeRule>
Specify a max age rule to restrict the length of time that application versions are retained for an application.
max_count_rule: Option<MaxCountRule>
Specify a max count rule to restrict the number of application versions that are retained for an application.
Trait Implementations§
Source§impl Clone for ApplicationVersionLifecycleConfig
impl Clone for ApplicationVersionLifecycleConfig
Source§fn clone(&self) -> ApplicationVersionLifecycleConfig
fn clone(&self) -> ApplicationVersionLifecycleConfig
Returns a duplicate 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 Default for ApplicationVersionLifecycleConfig
impl Default for ApplicationVersionLifecycleConfig
Source§fn default() -> ApplicationVersionLifecycleConfig
fn default() -> ApplicationVersionLifecycleConfig
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApplicationVersionLifecycleConfig
impl PartialEq for ApplicationVersionLifecycleConfig
Source§fn eq(&self, other: &ApplicationVersionLifecycleConfig) -> bool
fn eq(&self, other: &ApplicationVersionLifecycleConfig) -> bool
Tests for
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
Mutably borrows from an owned value. Read more