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

cloudshift.awscdk.dsl.services.autoscaling.common.CompleteScalingIntervalDsl.kt Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")

package cloudshift.awscdk.dsl.services.autoscaling.common

import cloudshift.awscdk.common.CdkDslMarker
import kotlin.Number
import software.amazon.awscdk.services.autoscaling.common.CompleteScalingInterval

/**
 * Example:
 *
 * ```
 * // The code below shows an example of how to instantiate this type.
 * // The values are placeholders you should change.
 * import software.amazon.awscdk.services.autoscaling.common.*;
 * CompleteScalingInterval completeScalingInterval = CompleteScalingInterval.builder()
 * .lower(123)
 * .upper(123)
 * // the properties below are optional
 * .change(123)
 * .build();
 * ```
 */
@CdkDslMarker
public class CompleteScalingIntervalDsl {
  private val cdkBuilder: CompleteScalingInterval.Builder = CompleteScalingInterval.builder()

  /**
   * @param change the value to be set.
   */
  public fun change(change: Number) {
    cdkBuilder.change(change)
  }

  /**
   * @param lower the value to be set. 
   */
  public fun lower(lower: Number) {
    cdkBuilder.lower(lower)
  }

  /**
   * @param upper the value to be set. 
   */
  public fun upper(upper: Number) {
    cdkBuilder.upper(upper)
  }

  public fun build(): CompleteScalingInterval = cdkBuilder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy