Interface CfnApplication.MaxAgeRuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplication.MaxAgeRuleProperty.Jsii$Proxy
Enclosing class:
CfnApplication

@Stability(Stable) public static interface CfnApplication.MaxAgeRuleProperty extends software.amazon.jsii.JsiiSerializable
Use the MaxAgeRule property type to specify a max age rule to restrict the length of time that application versions are retained for an AWS Elastic Beanstalk application when defining an AWS::ElasticBeanstalk::Application resource in an AWS CloudFormation template.

A lifecycle rule that deletes application versions after the specified number of days.

MaxAgeRule is a property of the ApplicationVersionLifecycleConfig 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.*;
 MaxAgeRuleProperty maxAgeRuleProperty = MaxAgeRuleProperty.builder()
         .deleteSourceFromS3(false)
         .enabled(false)
         .maxAgeInDays(123)
         .build();
 

See Also: