interface ApplicationVersionLifecycleConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ElasticBeanstalk.CfnApplication.ApplicationVersionLifecycleConfigProperty |
Java | software.amazon.awscdk.services.elasticbeanstalk.CfnApplication.ApplicationVersionLifecycleConfigProperty |
Python | aws_cdk.aws_elasticbeanstalk.CfnApplication.ApplicationVersionLifecycleConfigProperty |
TypeScript | @aws-cdk/aws-elasticbeanstalk » CfnApplication » ApplicationVersionLifecycleConfigProperty |
Use the ApplicationVersionLifecycleConfig
property type to specify application version lifecycle settings for an AWS Elastic Beanstalk application when defining an AWS::ElasticBeanstalk::Application resource in an AWS CloudFormation template.
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 * as elasticbeanstalk from '@aws-cdk/aws-elasticbeanstalk';
const applicationVersionLifecycleConfigProperty: elasticbeanstalk.CfnApplication.ApplicationVersionLifecycleConfigProperty = {
maxAgeRule: {
deleteSourceFromS3: false,
enabled: false,
maxAgeInDays: 123,
},
maxCountRule: {
deleteSourceFromS3: false,
enabled: false,
maxCount: 123,
},
};
Properties
Name | Type | Description |
---|---|---|
max | IResolvable | Max | Specify a max age rule to restrict the length of time that application versions are retained for an application. |
max | IResolvable | Max | Specify a max count rule to restrict the number of application versions that are retained for an application. |
maxAgeRule?
Type:
IResolvable
|
Max
(optional)
Specify a max age rule to restrict the length of time that application versions are retained for an application.
maxCountRule?
Type:
IResolvable
|
Max
(optional)
Specify a max count rule to restrict the number of application versions that are retained for an application.