All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cdk8s.plus23.ConcurrencyPolicy Maven / Gradle / Ivy

package org.cdk8s.plus23;

/**
 * Concurrency policy for CronJobs.
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.75.0 (build 63bb957)", date = "2023-02-21T09:46:03.540Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Jsii(module = org.cdk8s.plus23.$Module.class, fqn = "cdk8s-plus-23.ConcurrencyPolicy")
public enum ConcurrencyPolicy {
    /**
     * This policy allows to run job concurrently.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    ALLOW,
    /**
     * This policy does not allow to run job concurrently.
     * 

* It does not let a new job to be scheduled if the previous one is not finished yet. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) FORBID, /** * This policy replaces the currently running job if a new job is being scheduled. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) REPLACE, }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy