class Aws::ElasticBeanstalk::Types::ApplicationVersionLifecycleConfig

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.

@note When making an API call, you may pass ApplicationVersionLifecycleConfig

data as a hash:

    {
      max_count_rule: {
        enabled: false, # required
        max_count: 1,
        delete_source_from_s3: false,
      },
      max_age_rule: {
        enabled: false, # required
        max_age_in_days: 1,
        delete_source_from_s3: false,
      },
    }

@!attribute [rw] max_count_rule

Specify a max count rule to restrict the number of application
versions that are retained for an application.
@return [Types::MaxCountRule]

@!attribute [rw] max_age_rule

Specify a max age rule to restrict the length of time that
application versions are retained for an application.
@return [Types::MaxAgeRule]

@see docs.aws.amazon.com/goto/WebAPI/elasticbeanstalk-2010-12-01/ApplicationVersionLifecycleConfig AWS API Documentation

Constants

SENSITIVE