Package version:

Interface LifecycleConfiguration

The lifecycle configuration properties of a session in the dynamic session pool

interface LifecycleConfiguration {
    cooldownPeriodInSeconds?: number;
    lifecycleType?: string;
    maxAlivePeriodInSeconds?: number;
}

Properties

cooldownPeriodInSeconds?: number

The cooldown period of a session in seconds when the lifecycle type is 'Timed'.

lifecycleType?: string

The lifecycle type of the session pool.

maxAlivePeriodInSeconds?: number

The maximum alive period of a session in seconds when the lifecycle type is 'OnContainerExit'.