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

io.cloudshiftdev.awscdk.IStableStringProducer.kt Maven / Gradle / Ivy

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

package io.cloudshiftdev.awscdk

import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.String

/**
 * Interface for (stable) lazy string producers.
 */
public interface IStableStringProducer {
  /**
   * Produce the string value.
   */
  public fun produce(): String?

  private class Wrapper(
    cdkObject: software.amazon.awscdk.IStableStringProducer,
  ) : CdkObject(cdkObject),
      IStableStringProducer {
    /**
     * Produce the string value.
     */
    override fun produce(): String? = unwrap(this).produce()
  }

  public companion object {
    internal fun wrap(cdkObject: software.amazon.awscdk.IStableStringProducer):
        IStableStringProducer = CdkObjectWrappers.wrap(cdkObject) as? IStableStringProducer ?:
        Wrapper(cdkObject)

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy