Module Values.ApplicationVersionLifecycleConfigSource

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.

Sourcetype nonrec t = {
  1. maxCountRule : MaxCountRule.t option;
    (*

    Specify a max count rule to restrict the number of application versions that are retained for an application.

    *)
  2. maxAgeRule : MaxAgeRule.t option;
    (*

    Specify a max age rule to restrict the length of time that application versions are retained for an application.

    *)
}
Sourceval make : ?maxCountRule:??? -> ?maxAgeRule:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `Integer of BoxedInt.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t