#[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
Specify a max count rule to restrict the number of application versions that are retained for an application.
Specify a max age rule to restrict the length of time that application versions are retained for an application.
Creates a new builder-style object to manufacture ApplicationVersionLifecycleConfig
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ApplicationVersionLifecycleConfig
impl Sync for ApplicationVersionLifecycleConfig
impl Unpin for ApplicationVersionLifecycleConfig
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more