@Stability(value=Stable)
public static interface CfnApplication.ApplicationVersionLifecycleConfigProperty
extends software.amazon.jsii.JsiiSerializable
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.
ApplicationVersionLifecycleConfig is a property of the ApplicationResourceLifecycleConfig property type.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.elasticbeanstalk.*;
ApplicationVersionLifecycleConfigProperty applicationVersionLifecycleConfigProperty = ApplicationVersionLifecycleConfigProperty.builder()
.maxAgeRule(MaxAgeRuleProperty.builder()
.deleteSourceFromS3(false)
.enabled(false)
.maxAgeInDays(123)
.build())
.maxCountRule(MaxCountRuleProperty.builder()
.deleteSourceFromS3(false)
.enabled(false)
.maxCount(123)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplication.ApplicationVersionLifecycleConfigProperty.Builder
A builder for
CfnApplication.ApplicationVersionLifecycleConfigProperty |
static class |
CfnApplication.ApplicationVersionLifecycleConfigProperty.Jsii$Proxy
An implementation for
CfnApplication.ApplicationVersionLifecycleConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplication.ApplicationVersionLifecycleConfigProperty.Builder |
builder() |
default Object |
getMaxAgeRule()
Specify a max age rule to restrict the length of time that application versions are retained for an application.
|
default Object |
getMaxCountRule()
Specify a max count rule to restrict the number of application versions that are retained for an application.
|
@Stability(value=Stable) @Nullable default Object getMaxAgeRule()
@Stability(value=Stable) @Nullable default Object getMaxCountRule()
@Stability(value=Stable) static CfnApplication.ApplicationVersionLifecycleConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.