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

io.cloudshiftdev.awscdk.services.cloudwatch.Dimension.kt Maven / Gradle / Ivy

The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")

package io.cloudshiftdev.awscdk.services.cloudwatch

import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.Any
import kotlin.String
import kotlin.Unit

/**
 * Metric dimension.
 *
 * Example:
 *
 * ```
 * // The code below shows an example of how to instantiate this type.
 * // The values are placeholders you should change.
 * import io.cloudshiftdev.awscdk.services.cloudwatch.*;
 * Object value;
 * Dimension dimension = Dimension.builder()
 * .name("name")
 * .value(value)
 * .build();
 * ```
 *
 * [Documentation](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cw-dimension.html)
 */
public interface Dimension {
  /**
   * Name of the dimension.
   */
  public fun name(): String

  /**
   * Value of the dimension.
   */
  public fun `value`(): Any

  /**
   * A builder for [Dimension]
   */
  @CdkDslMarker
  public interface Builder {
    /**
     * @param name Name of the dimension. 
     */
    public fun name(name: String)

    /**
     * @param value Value of the dimension. 
     */
    public fun `value`(`value`: Any)
  }

  private class BuilderImpl : Builder {
    private val cdkBuilder: software.amazon.awscdk.services.cloudwatch.Dimension.Builder =
        software.amazon.awscdk.services.cloudwatch.Dimension.builder()

    /**
     * @param name Name of the dimension. 
     */
    override fun name(name: String) {
      cdkBuilder.name(name)
    }

    /**
     * @param value Value of the dimension. 
     */
    override fun `value`(`value`: Any) {
      cdkBuilder.`value`(`value`)
    }

    public fun build(): software.amazon.awscdk.services.cloudwatch.Dimension = cdkBuilder.build()
  }

  private class Wrapper(
    cdkObject: software.amazon.awscdk.services.cloudwatch.Dimension,
  ) : CdkObject(cdkObject),
      Dimension {
    /**
     * Name of the dimension.
     */
    override fun name(): String = unwrap(this).getName()

    /**
     * Value of the dimension.
     */
    override fun `value`(): Any = unwrap(this).getValue()
  }

  public companion object {
    public operator fun invoke(block: Builder.() -> Unit = {}): Dimension {
      val builderImpl = BuilderImpl()
      return Wrapper(builderImpl.apply(block).build())
    }

    internal fun wrap(cdkObject: software.amazon.awscdk.services.cloudwatch.Dimension): Dimension =
        CdkObjectWrappers.wrap(cdkObject) as? Dimension ?: Wrapper(cdkObject)

    internal fun unwrap(wrapped: Dimension): software.amazon.awscdk.services.cloudwatch.Dimension =
        (wrapped as CdkObject).cdkObject as software.amazon.awscdk.services.cloudwatch.Dimension
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy