io.cloudshiftdev.awscdk.services.appconfig.RolloutStrategy.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.appconfig
import io.cloudshiftdev.awscdk.Duration
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.Number
import kotlin.Unit
import kotlin.jvm.JvmName
/**
* Defines the rollout strategy for a deployment strategy and includes the growth factor, deployment
* duration, growth type, and optionally final bake time.
*
* Example:
*
* ```
* DeploymentStrategy.Builder.create(this, "MyDeploymentStrategy")
* .rolloutStrategy(RolloutStrategy.linear(RolloutStrategyProps.builder()
* .growthFactor(20)
* .deploymentDuration(Duration.minutes(30))
* .finalBakeTime(Duration.minutes(30))
* .build()))
* .build();
* ```
*
* [Documentation](https://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-deployment-strategy.html)
*/
public abstract class RolloutStrategy(
cdkObject: software.amazon.awscdk.services.appconfig.RolloutStrategy,
) : CdkObject(cdkObject) {
/**
* The deployment duration of the rollout strategy.
*/
public open fun deploymentDuration(): Duration =
unwrap(this).getDeploymentDuration().let(Duration::wrap)
/**
* The final bake time of the deployment strategy.
*/
public open fun finalBakeTime(): Duration? = unwrap(this).getFinalBakeTime()?.let(Duration::wrap)
/**
* The growth factor of the rollout strategy.
*/
public open fun growthFactor(): Number = unwrap(this).getGrowthFactor()
/**
* The growth type of the rollout strategy.
*/
public open fun growthType(): GrowthType? = unwrap(this).getGrowthType()?.let(GrowthType::wrap)
private class Wrapper(
cdkObject: software.amazon.awscdk.services.appconfig.RolloutStrategy,
) : RolloutStrategy(cdkObject)
public companion object {
public val ALL_AT_ONCE: RolloutStrategy =
RolloutStrategy.wrap(software.amazon.awscdk.services.appconfig.RolloutStrategy.ALL_AT_ONCE)
public val CANARY_10_PERCENT_20_MINUTES: RolloutStrategy =
RolloutStrategy.wrap(software.amazon.awscdk.services.appconfig.RolloutStrategy.CANARY_10_PERCENT_20_MINUTES)
public val LINEAR_20_PERCENT_EVERY_6_MINUTES: RolloutStrategy =
RolloutStrategy.wrap(software.amazon.awscdk.services.appconfig.RolloutStrategy.LINEAR_20_PERCENT_EVERY_6_MINUTES)
public val LINEAR_50_PERCENT_EVERY_30_SECONDS: RolloutStrategy =
RolloutStrategy.wrap(software.amazon.awscdk.services.appconfig.RolloutStrategy.LINEAR_50_PERCENT_EVERY_30_SECONDS)
public fun exponential(props: RolloutStrategyProps): RolloutStrategy =
software.amazon.awscdk.services.appconfig.RolloutStrategy.exponential(props.let(RolloutStrategyProps.Companion::unwrap)).let(RolloutStrategy::wrap)
@kotlin.Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("b95391bc997c59259d7da13e9d4226af5c6449088a5cb7689696ccffa5d774c0")
public fun exponential(props: RolloutStrategyProps.Builder.() -> Unit): RolloutStrategy =
exponential(RolloutStrategyProps(props))
public fun linear(props: RolloutStrategyProps): RolloutStrategy =
software.amazon.awscdk.services.appconfig.RolloutStrategy.linear(props.let(RolloutStrategyProps.Companion::unwrap)).let(RolloutStrategy::wrap)
@kotlin.Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("4a62b86213b48bce9dc8ddb4d37952843154a77d272725fc4be380b5d2758ef6")
public fun linear(props: RolloutStrategyProps.Builder.() -> Unit): RolloutStrategy =
linear(RolloutStrategyProps(props))
internal fun wrap(cdkObject: software.amazon.awscdk.services.appconfig.RolloutStrategy):
RolloutStrategy = CdkObjectWrappers.wrap(cdkObject) as? RolloutStrategy ?:
Wrapper(cdkObject)
internal fun unwrap(wrapped: RolloutStrategy):
software.amazon.awscdk.services.appconfig.RolloutStrategy = (wrapped as CdkObject).cdkObject
as software.amazon.awscdk.services.appconfig.RolloutStrategy
}
}