Module Values.MaxCountRuleSource

A lifecycle rule that deletes the oldest application version when the maximum count is exceeded.

Sourcetype nonrec t = {
  1. enabled : BoxedBoolean.t;
    (*

    Specify true to apply the rule, or false to disable it.

    *)
  2. maxCount : BoxedInt.t option;
    (*

    Specify the maximum number of application versions to retain.

    *)
  3. deleteSourceFromS3 : BoxedBoolean.t option;
    (*

    Set to true to delete a version's source bundle from Amazon S3 when Elastic Beanstalk deletes the application version.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxCount:??? -> ?deleteSourceFromS3:??? -> enabled:BoxedBoolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `Integer of BoxedInt.t ]) 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